diff --git a/apps/astro/.gitignore b/apps/astro/.gitignore
new file mode 100644
index 0000000..16d54bb
--- /dev/null
+++ b/apps/astro/.gitignore
@@ -0,0 +1,24 @@
+# build output
+dist/
+# generated types
+.astro/
+
+# dependencies
+node_modules/
+
+# logs
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+
+
+# environment variables
+.env
+.env.production
+
+# macOS-specific files
+.DS_Store
+
+# jetbrains setting folder
+.idea/
diff --git a/apps/astro/README.md b/apps/astro/README.md
new file mode 100644
index 0000000..2350e47
--- /dev/null
+++ b/apps/astro/README.md
@@ -0,0 +1,37 @@
+# Astro Demo application for Vercel Speed-insights
+
+## Setup
+
+This application was created with the following commands:
+
+- `cd apps`
+- `pnpm create astro@latest astro` (answers: empty, no to all)
+- `cd astro`
+- manually edit package.json to add `"@vercel/analytics": "workspace:*"` dependency
+- `pnpm i`
+
+Then we've added:
+
+1. a simple collection of Markdown blog posts in `src/contents/blog` folder
+2. a blog post page in `src/pages/blog/[...slug].astro`
+3. an index page in `src/pages/index.astro` which list all available blog posts
+4. a layout in `src/components/Base.astro`, used in both page, which includes our Analytics.astro component:
+
+```astro
+---
+import Analytics from '@vercel/analytics/astro';
+---
+
+
+
+
+
+
+
+
+
+```
+
+## Usage
+
+Start it with `pnpm -F nuxt dev` and browse to [http://localhost:4321](http://localhost:4321)
diff --git a/apps/astro/astro.config.mjs b/apps/astro/astro.config.mjs
new file mode 100644
index 0000000..882e651
--- /dev/null
+++ b/apps/astro/astro.config.mjs
@@ -0,0 +1,4 @@
+import { defineConfig } from 'astro/config';
+
+// https://astro.build/config
+export default defineConfig({});
diff --git a/apps/astro/package.json b/apps/astro/package.json
new file mode 100644
index 0000000..90e0b83
--- /dev/null
+++ b/apps/astro/package.json
@@ -0,0 +1,22 @@
+{
+ "name": "astro",
+ "version": "0.0.1",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "astro": "astro",
+ "build": "astro build",
+ "dev": "astro dev",
+ "preview": "astro preview",
+ "start": "astro dev"
+ },
+ "dependencies": {
+ "@vercel/analytics": "workspace:*",
+ "astro": "latest"
+ },
+ "devDependencies": {
+ "@astrojs/check": "^0.5.4",
+ "@vercel/analytics": "workspace:*",
+ "typescript": "^5.3.3"
+ }
+}
diff --git a/apps/astro/public/favicon.svg b/apps/astro/public/favicon.svg
new file mode 100644
index 0000000..f157bd1
--- /dev/null
+++ b/apps/astro/public/favicon.svg
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/apps/astro/src/components/BaseHead.astro b/apps/astro/src/components/BaseHead.astro
new file mode 100644
index 0000000..7bfda32
--- /dev/null
+++ b/apps/astro/src/components/BaseHead.astro
@@ -0,0 +1,4 @@
+---
+import Analytics from '@vercel/analytics/astro';
+---
+
diff --git a/apps/astro/src/content/blog/bruno.md b/apps/astro/src/content/blog/bruno.md
new file mode 100644
index 0000000..ca4b673
--- /dev/null
+++ b/apps/astro/src/content/blog/bruno.md
@@ -0,0 +1,6 @@
+---
+title: About Bruno
+slug: bruno
+---
+
+We don't talk about Bruno
diff --git a/apps/astro/src/content/blog/henry.md b/apps/astro/src/content/blog/henry.md
new file mode 100644
index 0000000..d763c6c
--- /dev/null
+++ b/apps/astro/src/content/blog/henry.md
@@ -0,0 +1,6 @@
+---
+title: About Henry
+slug: henry
+---
+
+Henry is a gentleman
diff --git a/apps/astro/src/env.d.ts b/apps/astro/src/env.d.ts
new file mode 100644
index 0000000..e16c13c
--- /dev/null
+++ b/apps/astro/src/env.d.ts
@@ -0,0 +1 @@
+///
diff --git a/apps/astro/src/layouts/Base.astro b/apps/astro/src/layouts/Base.astro
new file mode 100644
index 0000000..c506df1
--- /dev/null
+++ b/apps/astro/src/layouts/Base.astro
@@ -0,0 +1,18 @@
+---
+import Analytics from '@vercel/analytics/astro';
+
+const { title } = Astro.props;
+---
+
+
+
+
+
+
+ {title}
+
+
+
+
+
+
diff --git a/apps/astro/src/pages/blog/[...slug].astro b/apps/astro/src/pages/blog/[...slug].astro
new file mode 100644
index 0000000..0945e4e
--- /dev/null
+++ b/apps/astro/src/pages/blog/[...slug].astro
@@ -0,0 +1,18 @@
+---
+import { getCollection } from 'astro:content';
+import Layout from '../../layouts/Base.astro';
+
+export async function getStaticPaths() {
+ const blogEntries = await getCollection('blog');
+ return blogEntries.map(entry => ({
+ params: { slug: entry.slug }, props: { entry },
+ }));
+}
+
+const { entry } = Astro.props;
+const { Content } = await entry.render();
+---
+
+
+ back
+
\ No newline at end of file
diff --git a/apps/astro/src/pages/index.astro b/apps/astro/src/pages/index.astro
new file mode 100644
index 0000000..ad3f2a9
--- /dev/null
+++ b/apps/astro/src/pages/index.astro
@@ -0,0 +1,16 @@
+---
+import { getCollection } from 'astro:content';
+import Layout from '../layouts/Base.astro';
+
+const blogEntries = await getCollection('blog');
+---
+
+ Welcome to Astro
+
+
diff --git a/apps/astro/tsconfig.json b/apps/astro/tsconfig.json
new file mode 100644
index 0000000..e51e062
--- /dev/null
+++ b/apps/astro/tsconfig.json
@@ -0,0 +1,6 @@
+{
+ "extends": "astro/tsconfigs/base",
+ "compilerOptions": {
+ "strictNullChecks": true
+ }
+}
diff --git a/apps/nextjs-15/src/app/blog/[slug]/page.tsx b/apps/nextjs-15/src/app/blog/[slug]/page.tsx
new file mode 100644
index 0000000..4cd80c9
--- /dev/null
+++ b/apps/nextjs-15/src/app/blog/[slug]/page.tsx
@@ -0,0 +1,16 @@
+import Link from 'next/link';
+
+export default async function BlogPage({
+ params,
+}: {
+ params: Promise<{ slug: string }>;
+}) {
+ const { slug } = await params;
+ return (
+
+
{slug}
+
+ Back to blog
+
+ );
+}
diff --git a/apps/nextjs-15/src/app/blog/layout.tsx b/apps/nextjs-15/src/app/blog/layout.tsx
new file mode 100644
index 0000000..cb532b0
--- /dev/null
+++ b/apps/nextjs-15/src/app/blog/layout.tsx
@@ -0,0 +1,12 @@
+import Link from 'next/link';
+
+export default function Layout({ children }: { children: React.ReactNode }) {
+ return (
+
+
My first blog post
+
Feature just got released
+
+
{children}
+
+ );
+}
diff --git a/apps/nextjs-15/src/app/blog/page.tsx b/apps/nextjs-15/src/app/blog/page.tsx
new file mode 100644
index 0000000..1278d9f
--- /dev/null
+++ b/apps/nextjs-15/src/app/blog/page.tsx
@@ -0,0 +1,3 @@
+export default function Blog() {
+ return Welcome to the blog
;
+}
diff --git a/apps/nextjs/app/blog/layout.tsx b/apps/nextjs/app/blog/layout.tsx
index 3c9c95f..d123119 100644
--- a/apps/nextjs/app/blog/layout.tsx
+++ b/apps/nextjs/app/blog/layout.tsx
@@ -3,8 +3,9 @@ import Link from 'next/link';
export default function Layout({ children }: { children: React.ReactNode }) {
return (
-
My first blog post
+
My first blog post {' '}
Feature just got released
+
{children}
);
diff --git a/apps/nextjs/app/blog/page.tsx b/apps/nextjs/app/blog/page.tsx
index d0888e0..904127d 100644
--- a/apps/nextjs/app/blog/page.tsx
+++ b/apps/nextjs/app/blog/page.tsx
@@ -1,3 +1,3 @@
export default function Blog() {
- return Welcome on the blog
;
+ return Welcome to the app-router blog
;
}
diff --git a/apps/nextjs/pages/blog-pages/[slug].tsx b/apps/nextjs/pages/blog-pages/[slug].tsx
new file mode 100644
index 0000000..6fe3cd3
--- /dev/null
+++ b/apps/nextjs/pages/blog-pages/[slug].tsx
@@ -0,0 +1,7 @@
+export default function BlogPage() {
+ return (
+
+
Blog Page
+
+ );
+}
diff --git a/apps/nextjs/pages/index.tsx b/apps/nextjs/pages/index.tsx
index 67e0859..1d4526d 100644
--- a/apps/nextjs/pages/index.tsx
+++ b/apps/nextjs/pages/index.tsx
@@ -1,3 +1,20 @@
+import Link from 'next/link';
+
export default function Page() {
- return null;
+ return (
+ <>
+ Testing web analytics
+
+
+ Pages directory A
+
+
+ Pages directory B
+
+
+ App directory
+
+
+ >
+ );
}
diff --git a/apps/nuxt/README.md b/apps/nuxt/README.md
index 3c5cc99..8201ba3 100644
--- a/apps/nuxt/README.md
+++ b/apps/nuxt/README.md
@@ -8,7 +8,7 @@ This application was created with the following commands:
- `pnpx nuxi@latest init nuxt` (answers: npm, no git)
- `cd nuxt`
- `rm -rf node_modules .nuxt`
-- manually edit package.json to add `"@vercel/speed-insights": "workspace:*"` dependency
+- manually edit package.json to add `"@vercel/analytics": "workspace:*"` dependency
- `pnpm i`
Then we moved some code from vue's official template (styles, HelloWorld SFC) and added a few dynamic route to illustrate the use.
diff --git a/apps/nuxt/layouts/default.vue b/apps/nuxt/layouts/default.vue
index d18ab4d..af7337b 100644
--- a/apps/nuxt/layouts/default.vue
+++ b/apps/nuxt/layouts/default.vue
@@ -1,5 +1,5 @@
-
+
[
+ ...(cssBundleHref ? [{ rel: 'stylesheet', href: cssBundleHref }] : []),
+];
export default function App() {
return (
+
+
diff --git a/apps/remix/app/routes/_index.tsx b/apps/remix/app/routes/_index.tsx
index c74fdbb..2f61f47 100644
--- a/apps/remix/app/routes/_index.tsx
+++ b/apps/remix/app/routes/_index.tsx
@@ -1,9 +1,9 @@
-import { json } from "@vercel/remix";
-import { Form, useActionData } from "@remix-run/react";
-import { track } from "@vercel/analytics/server";
+import { json } from '@vercel/remix';
+import { Form, Link, useActionData } from '@remix-run/react';
+import { track } from '@vercel/analytics/server';
export const action = async () => {
- await track("Server Action", { some: "data" });
+ await track('Server Action', { some: 'data' });
return json({ success: true });
};
@@ -19,6 +19,9 @@ export default function Home() {
Submit action
)}
+ About Henri
+
+ About Bruno
);
}
diff --git a/apps/remix/app/routes/blog.$slug.tsx b/apps/remix/app/routes/blog.$slug.tsx
new file mode 100644
index 0000000..bb2b27d
--- /dev/null
+++ b/apps/remix/app/routes/blog.$slug.tsx
@@ -0,0 +1,19 @@
+import { json, type LoaderFunctionArgs } from '@remix-run/node';
+import { Link, useLoaderData } from '@remix-run/react';
+import { track } from '@vercel/analytics';
+
+export const loader = async ({ params }: LoaderFunctionArgs) => {
+ return json({ slug: params.slug });
+};
+
+export default function BlogPage() {
+ const { slug } = useLoaderData();
+ return (
+
+
Blog
+
We don't talk about {slug}
+
+
Back
+
+ );
+}
diff --git a/apps/remix/package.json b/apps/remix/package.json
index 92cbfc1..99d4163 100644
--- a/apps/remix/package.json
+++ b/apps/remix/package.json
@@ -1,14 +1,15 @@
{
- "name": "remix-vercel-analytics",
+ "name": "remix",
"private": true,
+ "type": "module",
"scripts": {
"build": "remix build",
- "dev": "remix dev",
- "format": "prettier -w .",
- "start": "remix-serve build"
+ "dev": "remix dev --manual",
+ "start": "remix-serve ./build/index.js",
+ "typecheck": "tsc"
},
- "prettier": {},
"dependencies": {
+ "@remix-run/css-bundle": "^2.5.0",
"@remix-run/node": "^2.5.0",
"@remix-run/react": "^2.5.0",
"@remix-run/serve": "^2.5.0",
@@ -20,19 +21,12 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@remix-run/dev": "^2.0.1",
- "@remix-run/eslint-config": "^2.0.1",
- "@types/eslint": "^8.4.10",
- "@types/node": "^18.11.9",
+ "@remix-run/dev": "^2.5.0",
+ "@remix-run/eslint-config": "^2.5.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
- "autoprefixer": "^10.4.13",
- "cross-env": "^7.0.3",
- "postcss": "^8.4.18",
- "prettier": "2.7.1",
- "ts-node": "^10.9.1",
- "tsconfig-paths": "^4.1.0",
- "typescript": "^5.2.2"
+ "eslint": "^8.56.0",
+ "typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
diff --git a/apps/remix/remix.config.js b/apps/remix/remix.config.js
index 5a17eba..3c22935 100644
--- a/apps/remix/remix.config.js
+++ b/apps/remix/remix.config.js
@@ -1,12 +1,5 @@
-/**
- * @type {import('@remix-run/dev').AppConfig}
- */
-module.exports = {
- cacheDirectory: "./node_modules/.cache/remix",
- ignoredRouteFiles: ["**/.*", "**/*.css", "**/*.test.{js,jsx,ts,tsx}"],
- serverModuleFormat: "cjs",
+/** @type {import('@remix-run/dev').AppConfig} */
+export default {
+ ignoredRouteFiles: ['**/.*'],
serverDependenciesToBundle: [/@vercel\/analytics/],
- future: {
- cssSideEffectImports: true,
- },
};
diff --git a/apps/remix/tsconfig.json b/apps/remix/tsconfig.json
index fe470e5..04bf84f 100644
--- a/apps/remix/tsconfig.json
+++ b/apps/remix/tsconfig.json
@@ -5,10 +5,9 @@
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
- "module": "CommonJS",
- "moduleResolution": "node",
+ "moduleResolution": "Bundler",
"resolveJsonModule": true,
- "target": "ES2019",
+ "target": "ES2022",
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
@@ -16,7 +15,6 @@
"paths": {
"~/*": ["./app/*"]
},
- "skipLibCheck": true,
// Remix takes care of building everything in `remix build`.
"noEmit": true
diff --git a/apps/sveltekit/README.md b/apps/sveltekit/README.md
index 642949e..2fc0b88 100644
--- a/apps/sveltekit/README.md
+++ b/apps/sveltekit/README.md
@@ -7,7 +7,7 @@ This application was created with the following commands:
- `cd apps`
- `pnpx sv create sveltekit` (answers: SvelteKit minimal, no Typescript, no additional install, pnpm)
- `cd sveltekit`
-- add `src/+layout.js` to include `import { injectWebAnalytics } from '@vercel/analytics/sveltekit'; injectWebAnalytics();`
+- add `src/+layout.js` to include `import { injectAnalytics } from '@vercel/analytics/sveltekit'; injectAnalytics();`
- edit package.json to add `"@vercel/analytics": "workspace:*"` dependency and change `@sveltejs/adapter-auto` into `@sveltejs/adapter-vercel`
- eddi `svelte.config.js` to change `@sveltejs/adapter-auto` into `@sveltejs/adapter-vercel`
- `pnpm i`
diff --git a/apps/sveltekit/src/routes/+layout.js b/apps/sveltekit/src/routes/+layout.js
index 97b672f..f15d10a 100644
--- a/apps/sveltekit/src/routes/+layout.js
+++ b/apps/sveltekit/src/routes/+layout.js
@@ -1,3 +1,3 @@
-import { injectWebAnalytics } from '@vercel/analytics/sveltekit';
+import { injectAnalytics } from '@vercel/analytics/sveltekit';
-injectWebAnalytics();
+injectAnalytics();
diff --git a/apps/vue/README.md b/apps/vue/README.md
index 2099ac1..20412e6 100644
--- a/apps/vue/README.md
+++ b/apps/vue/README.md
@@ -7,18 +7,18 @@ This application was created with the following commands:
- `cd apps`
- `pnpm create vue@latest vue` (answer no to all questions)
- `cd vue`
-- manually edit package.json to add `"@vercel/speed-insights": "workspace:*"` dependency
+- manually edit package.json to add `"@vercel/analytics": "workspace:*"` dependency
- `pnpm i`
-Then we imported and used ` ` component in `src/App.vue` file:
+Then we imported and used ` ` component in `src/App.vue` file:
```vue
-
+
```
diff --git a/apps/vue/src/App.vue b/apps/vue/src/App.vue
index abc319b..331d480 100644
--- a/apps/vue/src/App.vue
+++ b/apps/vue/src/App.vue
@@ -1,10 +1,10 @@
-
+
{
// reset dom before each test
- document.getElementsByTagName('html')[0].innerHTML = '';
+ const html = document.getElementsByTagName('html')[0];
+ if (html) {
+ html.innerHTML = '';
+ }
});
diff --git a/packages/web/package.json b/packages/web/package.json
index 26ef886..ef95d31 100644
--- a/packages/web/package.json
+++ b/packages/web/package.json
@@ -18,10 +18,8 @@
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
- "./react": {
- "browser": "./dist/react/index.mjs",
- "import": "./dist/react/index.mjs",
- "require": "./dist/react/index.js"
+ "./astro": {
+ "import": "./dist/astro/component.ts"
},
"./next": {
"browser": "./dist/next/index.mjs",
@@ -33,6 +31,16 @@
"import": "./dist/nuxt/index.mjs",
"require": "./dist/nuxt/index.js"
},
+ "./react": {
+ "browser": "./dist/react/index.mjs",
+ "import": "./dist/react/index.mjs",
+ "require": "./dist/react/index.js"
+ },
+ "./remix": {
+ "browser": "./dist/remix/index.mjs",
+ "import": "./dist/remix/index.mjs",
+ "require": "./dist/remix/index.js"
+ },
"./server": {
"node": "./dist/server/index.js",
"edge-light": "./dist/server/index.mjs",
@@ -57,18 +65,21 @@
"*": [
"dist/index.d.ts"
],
- "react": [
- "dist/react/index.d.ts"
+ "next": [
+ "dist/next/index.d.ts"
],
"nuxt": [
"dist/nuxt/index.d.ts"
],
+ "react": [
+ "dist/react/index.d.ts"
+ ],
+ "remix": [
+ "dist/remix/index.d.ts"
+ ],
"server": [
"dist/server/index.d.ts"
],
- "next": [
- "dist/next/index.d.ts"
- ],
"sveltekit": [
"dist/sveltekit/index.d.ts"
],
@@ -78,8 +89,9 @@
}
},
"scripts": {
- "build": "tsup",
- "dev": "tsup --watch",
+ "build": "tsup && pnpm copy-astro",
+ "copy-astro": "cp -R src/astro dist/",
+ "dev": "pnpm copy-astro && tsup --watch",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "jest",
@@ -96,35 +108,36 @@
"jest.setup.ts"
]
},
- "dependencies": {
- "server-only": "^0.0.1"
- },
"devDependencies": {
"@jest/globals": "^29.7.0",
- "@swc/core": "^1.3.66",
- "@swc/jest": "^0.2.26",
- "@testing-library/jest-dom": "^6.2.0",
- "@testing-library/react": "^14.1.2",
- "@types/node": "^20.3.1",
- "@types/react": "^18.2.14",
+ "@swc/core": "^1.8.0",
+ "@swc/jest": "^0.2.37",
+ "@testing-library/jest-dom": "^6.6.3",
+ "@testing-library/react": "^16.0.1",
+ "@types/node": "^20.17.6",
+ "@types/react": "^18.3.12",
"@vercel/eslint-config": "workspace:0.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "svelte": "^5",
+ "server-only": "^0.0.1",
+ "svelte": "^5.1.10",
"tsup": "7.1.0",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"peerDependencies": {
+ "@remix-run/react": "^2",
"@sveltejs/kit": "^1 || ^2",
"next": ">= 13",
- "react": "^18.0 || ^19.0 || ^19.0.0-rc",
+ "react": "^18 || ^19 || ^19.0.0-rc",
+ "svelte": ">= 4",
"vue": "^3",
"vue-router": "^4"
},
"peerDependenciesMeta": {
+ "@remix-run/react": {
+ "optional": true
+ },
"@sveltejs/kit": {
"optional": true
},
@@ -134,6 +147,9 @@
"react": {
"optional": true
},
+ "svelte": {
+ "optional": true
+ },
"vue": {
"optional": true
},
diff --git a/packages/web/src/astro/component.ts b/packages/web/src/astro/component.ts
new file mode 100644
index 0000000..e673447
--- /dev/null
+++ b/packages/web/src/astro/component.ts
@@ -0,0 +1,3 @@
+// @ts-expect-error typescript doesn't handle ./index.astro properly, but it's needed to generate types
+// eslint-disable-next-line import/no-default-export, no-useless-rename -- Exporting everything doesn't yield the desired outcome
+export { default as default } from './index.astro';
diff --git a/packages/web/src/astro/index.astro b/packages/web/src/astro/index.astro
new file mode 100644
index 0000000..4d7e16a
--- /dev/null
+++ b/packages/web/src/astro/index.astro
@@ -0,0 +1,39 @@
+---
+// Since this file will not be bundled by Tsup, it is referencing bundled files relative to dist/astro/
+import type { AnalyticsProps } from '../index.d.ts';
+type Props = Omit;
+
+const propsStr = JSON.stringify(Astro.props);
+const paramsStr = JSON.stringify(Astro.params);
+---
+
+
+
+
diff --git a/packages/web/src/generic.test.ts b/packages/web/src/generic.test.ts
index f814ab7..910b22e 100644
--- a/packages/web/src/generic.test.ts
+++ b/packages/web/src/generic.test.ts
@@ -1,3 +1,4 @@
+import { beforeEach, describe, it, expect, jest } from '@jest/globals';
import { inject, track } from './generic';
describe('inject', () => {
diff --git a/packages/web/src/generic.ts b/packages/web/src/generic.ts
index d15a46f..0e19896 100644
--- a/packages/web/src/generic.ts
+++ b/packages/web/src/generic.ts
@@ -11,6 +11,7 @@ import {
setMode,
isDevelopment,
isProduction,
+ computeRoute,
} from './utils';
export const DEV_SCRIPT_URL =
@@ -27,15 +28,17 @@ export const PROD_SCRIPT_URL = '/_vercel/insights/script.js';
* @param [props.debug] - Whether to enable debug logging in development. Defaults to `true`.
* @param [props.beforeSend] - A middleware function to modify events before they are sent. Should return the event object or `null` to cancel the event.
* @param [props.dsn] - The DSN of the project to send events to. Only required when self-hosting.
+ * @param [props.disableAutoTrack] - Whether the injected script should track page views from pushState events. Disable if route is updated after pushState, a manually call page pageview().
*/
function inject(
props: AnalyticsProps & {
framework?: string;
+ disableAutoTrack?: boolean;
} = {
debug: true,
}
-): { setRoute: (route?: string | null) => void } | null {
- if (!isBrowser()) return null;
+): void {
+ if (!isBrowser()) return;
setMode(props.mode);
@@ -48,12 +51,7 @@ function inject(
const src =
props.scriptSrc || (isDevelopment() ? DEV_SCRIPT_URL : PROD_SCRIPT_URL);
- if (document.head.querySelector(`script[src*="${src}"]`)) return null;
-
- function setRoute(route?: string | null): void {
- console.log('>>setRoute', route);
- script.dataset.route = route ?? undefined;
- }
+ if (document.head.querySelector(`script[src*="${src}"]`)) return;
const script = document.createElement('script');
script.src = src;
@@ -71,7 +69,6 @@ function inject(
if (props.dsn) {
script.dataset.dsn = props.dsn;
}
- setRoute(props.route);
script.onerror = (): void => {
const errorMessage = isDevelopment()
@@ -89,8 +86,6 @@ function inject(
}
document.head.appendChild(script);
-
- return { setRoute };
}
/**
@@ -143,18 +138,22 @@ function track(
}
}
-function pageview({ route, path }: { route?: string; path?: string }): void {
- window.va?.('pageview', {
- route,
- path,
- });
+function pageview({
+ route,
+ path,
+}: {
+ route?: string | null;
+ path?: string;
+}): void {
+ window.va?.('pageview', { route, path });
}
-export { inject, track, pageview };
+export { inject, track, pageview, computeRoute };
export type { AnalyticsProps };
// eslint-disable-next-line import/no-default-export -- Default export is intentional
export default {
inject,
track,
+ computeRoute,
};
diff --git a/packages/web/src/nextjs/index.tsx b/packages/web/src/nextjs/index.tsx
index e257f73..215551e 100644
--- a/packages/web/src/nextjs/index.tsx
+++ b/packages/web/src/nextjs/index.tsx
@@ -1,13 +1,12 @@
-import React, { Suspense } from 'react';
+import React, { Suspense, type ReactNode } from 'react';
import { Analytics as AnalyticsScript } from '../react';
import type { AnalyticsProps } from '../types';
import { useRoute } from './utils';
-type Props = Omit;
+type Props = Omit;
-function AnalyticsComponent(props: Props): React.ReactNode {
+function AnalyticsComponent(props: Props): ReactNode {
const { route, path } = useRoute();
-
return (
);
diff --git a/packages/web/src/nextjs/utils.ts b/packages/web/src/nextjs/utils.ts
index 071e421..0a75225 100644
--- a/packages/web/src/nextjs/utils.ts
+++ b/packages/web/src/nextjs/utils.ts
@@ -1,4 +1,5 @@
'use client';
+/* eslint-disable @typescript-eslint/no-unnecessary-condition -- can be empty in pages router */
import { useParams, usePathname, useSearchParams } from 'next/navigation.js';
import { computeRoute } from '../utils';
@@ -10,15 +11,13 @@ export const useRoute = (): {
const searchParams = useSearchParams();
const path = usePathname();
- const finalParams = {
- ...Object.fromEntries(searchParams.entries()),
- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- can be empty in pages router
- ...(params || {}),
- };
-
- return {
- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- can be empty in pages router
- route: params ? computeRoute(path, finalParams) : null,
- path,
- };
+ // Until we have route parameters, we don't compute the route
+ if (!params) {
+ return { route: null, path };
+ }
+ // in Next.js@13, useParams() could return an empty object for pages router, and we default to searchParams.
+ const finalParams = Object.keys(params).length
+ ? params
+ : Object.fromEntries(searchParams.entries());
+ return { route: computeRoute(path, finalParams), path };
};
diff --git a/packages/web/src/nuxt/index.ts b/packages/web/src/nuxt/index.ts
index 169f59e..2cebc7c 100644
--- a/packages/web/src/nuxt/index.ts
+++ b/packages/web/src/nuxt/index.ts
@@ -1,4 +1,4 @@
import { createComponent } from '../vue/create-component';
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment -- vue's defineComponent return type is any
-export const WebAnalytics = createComponent('nuxt');
+export const Analytics = createComponent('nuxt');
diff --git a/packages/web/src/react.test.tsx b/packages/web/src/react.test.tsx
index 2ad8403..a75b0b3 100644
--- a/packages/web/src/react.test.tsx
+++ b/packages/web/src/react.test.tsx
@@ -1,4 +1,5 @@
import * as React from 'react';
+import { afterEach, beforeEach, describe, it, expect } from '@jest/globals';
import { cleanup, render } from '@testing-library/react';
import { Analytics, track } from './react';
diff --git a/packages/web/src/react.tsx b/packages/web/src/react.tsx
index c0d32e0..d86b9e2 100644
--- a/packages/web/src/react.tsx
+++ b/packages/web/src/react.tsx
@@ -1,3 +1,4 @@
+'use client';
import { useEffect } from 'react';
import { inject, track, pageview } from './generic';
import type { AnalyticsProps } from './types';
@@ -28,9 +29,11 @@ import type { AnalyticsProps } from './types';
function Analytics(
props: AnalyticsProps & {
framework?: string;
+ route?: string | null;
path?: string | null;
}
): null {
+ // biome-ignore lint/correctness/useExhaustiveDependencies: only run once
useEffect(() => {
inject({
framework: props.framework || 'react',
@@ -41,11 +44,9 @@ function Analytics(
}, []);
useEffect(() => {
+ // explicitely track page view, since we disabled auto tracking
if (props.route && props.path) {
- pageview({
- route: props.route,
- path: props.path,
- });
+ pageview({ route: props.route, path: props.path });
}
}, [props.route, props.path]);
diff --git a/packages/web/src/remix/index.tsx b/packages/web/src/remix/index.tsx
new file mode 100644
index 0000000..2793f04
--- /dev/null
+++ b/packages/web/src/remix/index.tsx
@@ -0,0 +1,8 @@
+import React from 'react';
+import { Analytics as AnalyticsScript } from '../react';
+import type { AnalyticsProps } from '../types';
+import { useRoute } from './utils';
+
+export function Analytics(props: Omit): JSX.Element {
+ return ;
+}
diff --git a/packages/web/src/remix/utils.ts b/packages/web/src/remix/utils.ts
new file mode 100644
index 0000000..1b6b33c
--- /dev/null
+++ b/packages/web/src/remix/utils.ts
@@ -0,0 +1,8 @@
+import { useLocation, useParams } from '@remix-run/react';
+import { computeRoute } from '../utils';
+
+export const useRoute = (): { route: string | null; path: string } => {
+ const params = useParams();
+ const { pathname: path } = useLocation();
+ return { route: computeRoute(path, params as never), path };
+};
diff --git a/packages/web/src/sveltekit/index.ts b/packages/web/src/sveltekit/index.ts
index 2c2c135..026c066 100644
--- a/packages/web/src/sveltekit/index.ts
+++ b/packages/web/src/sveltekit/index.ts
@@ -1,30 +1,24 @@
-import { get } from 'svelte/store';
-import { inject, track, type AnalyticsProps } from '../generic';
+import { inject, pageview, track, type AnalyticsProps } from '../generic';
import { page } from '$app/stores';
import { browser } from '$app/environment';
-import type {} from '@sveltejs/kit'; // don't remove, ensures ambient types for $app/* are loaded
+import type {} from '@sveltejs/kit';
-function injectWebAnalytics(
- props: Omit = {}
-): void {
+function injectAnalytics(props: Omit = {}): void {
if (browser) {
- const webAnalytics = inject({
- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- route could be undefined in layout.js file
- route: get(page).route?.id,
+ inject({
...props,
+ disableAutoTrack: true,
framework: 'sveltekit',
});
- if (webAnalytics) {
- page.subscribe((value) => {
- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- route could be undefined in layout.js file
- if (value.route?.id) {
- webAnalytics.setRoute(value.route.id);
- }
- });
- }
+ page.subscribe(({ route, url }) => {
+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- route could be undefined in layout.js file
+ if (route?.id) {
+ pageview({ route: route.id, path: url.pathname });
+ }
+ });
}
}
-export { injectWebAnalytics, track };
+export { injectAnalytics, track };
export type { AnalyticsProps };
diff --git a/packages/web/src/types.ts b/packages/web/src/types.ts
index 6301022..cc561f9 100644
--- a/packages/web/src/types.ts
+++ b/packages/web/src/types.ts
@@ -13,19 +13,18 @@ export type Mode = 'auto' | 'development' | 'production';
export type AllowedPropertyValues = string | number | boolean | null;
export type BeforeSend = (event: BeforeSendEvent) => BeforeSendEvent | null;
+
export interface AnalyticsProps {
beforeSend?: BeforeSend;
debug?: boolean;
mode?: Mode;
- route?: string | null;
-
- disableAutoTrack?: boolean;
scriptSrc?: string;
endpoint?: string;
dsn?: string;
}
+
declare global {
interface Window {
// Base interface
diff --git a/packages/web/src/utils.test.ts b/packages/web/src/utils.test.ts
index c864c65..6380f68 100644
--- a/packages/web/src/utils.test.ts
+++ b/packages/web/src/utils.test.ts
@@ -1,3 +1,4 @@
+import { beforeAll, describe, it, expect } from '@jest/globals';
import { computeRoute, getMode, parseProperties, setMode } from './utils';
describe('utils', () => {
diff --git a/packages/web/src/vue/create-component.ts b/packages/web/src/vue/create-component.ts
index 3b5857c..1d699bd 100644
--- a/packages/web/src/vue/create-component.ts
+++ b/packages/web/src/vue/create-component.ts
@@ -1,31 +1,31 @@
import { defineComponent, watch } from 'vue';
// for barebone vue project, vite will issue a warning since 'vue-router' import can't be resolved,
import { useRoute } from 'vue-router';
-import { inject, track, type AnalyticsProps } from '../generic';
+import { inject, pageview, type AnalyticsProps } from '../generic';
import { computeRoute } from '../utils';
export function createComponent(
framework = 'vue'
): ReturnType {
return defineComponent({
- props: [
- 'dsn',
- 'beforeSend',
- 'debug',
- 'scriptSrc',
- 'endpoint',
- 'disableAutoTrack',
- 'mode',
- ],
+ props: ['dsn', 'beforeSend', 'debug', 'scriptSrc', 'endpoint', 'mode'],
setup(props: Omit) {
+ // eslint-disable-next-line react-hooks/rules-of-hooks -- this is not a React component.
const route = useRoute();
- const configure = inject({ ...props, framework });
- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- route is undefined for barebone vue project
- if (route && configure) {
+ inject({
+ ...props,
+ // keep auto-tracking unless we have route support (Nuxt or vue-router).
+ disableAutoTrack: Boolean(route),
+ framework,
+ });
+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- route is undefined for barebone vue project.
+ if (route && window) {
const changeRoute = (): void => {
- configure.setRoute(computeRoute(route.path, route.params));
+ pageview({
+ route: computeRoute(route.path, route.params),
+ path: route.path,
+ });
};
-
changeRoute();
watch(route, changeRoute);
}
diff --git a/packages/web/src/vue/index.ts b/packages/web/src/vue/index.ts
index f20cfc7..aad51b9 100644
--- a/packages/web/src/vue/index.ts
+++ b/packages/web/src/vue/index.ts
@@ -1,4 +1,4 @@
import { createComponent } from './create-component';
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment -- vue's defineComponent return type is any
-export const WebAnalytics = createComponent();
+export const Analytics = createComponent();
diff --git a/packages/web/tsconfig.json b/packages/web/tsconfig.json
index 9936b82..6a4fe18 100644
--- a/packages/web/tsconfig.json
+++ b/packages/web/tsconfig.json
@@ -3,5 +3,5 @@
"compilerOptions": {
"module": "esnext"
},
- "include": ["src"]
+ "include": ["src", "./jest.setup.ts"]
}
diff --git a/packages/web/tsup.config.js b/packages/web/tsup.config.js
index 2ab677c..e117ab4 100644
--- a/packages/web/tsup.config.js
+++ b/packages/web/tsup.config.js
@@ -46,12 +46,14 @@ export default defineConfig([
},
external: ['react'],
outDir: 'dist/react',
- esbuildOptions: (options) => {
- // Append "use client" to the top of the react entry point
- options.banner = {
- js: '"use client";',
- };
+ },
+ {
+ ...cfg,
+ entry: {
+ index: 'src/remix/index.tsx',
},
+ external: ['react', '@remix-run/react', 'react-router'],
+ outDir: 'dist/remix',
},
{
...cfg,
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b019477..82dc515 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -13,7 +13,7 @@ importers:
devDependencies:
'@vercel/style-guide':
specifier: ^5.0.1
- version: 5.0.1(eslint@8.57.1)(prettier@2.8.8)(typescript@5.1.6)
+ version: 5.0.1(eslint@8.57.1)(prettier@2.8.8)(typescript@5.6.3)
husky:
specifier: ^8.0.3
version: 8.0.3
@@ -22,7 +22,23 @@ importers:
version: 2.8.8
typescript:
specifier: ^5.1.6
- version: 5.1.6
+ version: 5.6.3
+
+ apps/astro:
+ dependencies:
+ '@vercel/analytics':
+ specifier: workspace:*
+ version: link:../../packages/web
+ astro:
+ specifier: latest
+ version: 4.10.0(typescript@5.6.3)
+ devDependencies:
+ '@astrojs/check':
+ specifier: ^0.5.4
+ version: 0.5.4(prettier@2.8.8)(typescript@5.6.3)
+ typescript:
+ specifier: ^5.3.3
+ version: 5.6.3
apps/nextjs:
dependencies:
@@ -44,7 +60,7 @@ importers:
version: 1.35.1
'@swc/jest':
specifier: ^0.2.26
- version: 0.2.26(@swc/core@1.8.0)
+ version: 0.2.37(@swc/core@1.8.0)
'@testing-library/jest-dom':
specifier: ^5.16.5
version: 5.16.5
@@ -56,13 +72,13 @@ importers:
version: 29.5.2
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@20.3.1)(ts-node@10.9.2)
+ version: 29.7.0(@types/node@20.17.6)(ts-node@10.9.2)
jest-environment-jsdom:
specifier: ^29.7.0
version: 29.7.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@swc/core@1.8.0)(@types/node@20.3.1)(typescript@5.6.3)
+ version: 10.9.2(@swc/core@1.8.0)(@types/node@20.17.6)(typescript@5.6.3)
apps/nextjs-15:
dependencies:
@@ -71,7 +87,7 @@ importers:
version: link:../../packages/web
next:
specifier: 15.0.1
- version: 15.0.1(@babel/core@7.23.0)(react-dom@19.0.0-rc-69d4b800-20241021)(react@19.0.0-rc-69d4b800-20241021)
+ version: 15.0.1(@babel/core@7.26.0)(react-dom@19.0.0-rc-69d4b800-20241021)(react@19.0.0-rc-69d4b800-20241021)
react:
specifier: 19.0.0-rc-69d4b800-20241021
version: 19.0.0-rc-69d4b800-20241021
@@ -81,7 +97,7 @@ importers:
devDependencies:
'@types/node':
specifier: ^20
- version: 20.3.1
+ version: 20.17.6
'@types/react':
specifier: npm:types-react@19.0.0-rc.1
version: /types-react@19.0.0-rc.1
@@ -90,10 +106,10 @@ importers:
version: /types-react-dom@19.0.0-rc.1
eslint-config-next:
specifier: 15.0.1
- version: 15.0.1(eslint@8.43.0)(typescript@5.2.2)
+ version: 15.0.1(eslint@8.57.1)(typescript@5.6.3)
typescript:
specifier: ^5
- version: 5.2.2
+ version: 5.6.3
apps/nuxt:
dependencies:
@@ -112,24 +128,27 @@ importers:
apps/remix:
dependencies:
+ '@remix-run/css-bundle':
+ specifier: ^2.5.0
+ version: 2.5.0
'@remix-run/node':
specifier: ^2.5.0
- version: 2.5.0(typescript@5.2.2)
+ version: 2.5.0(typescript@5.6.3)
'@remix-run/react':
specifier: ^2.5.0
- version: 2.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ version: 2.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.6.3)
'@remix-run/serve':
specifier: ^2.5.0
- version: 2.5.0(typescript@5.2.2)
+ version: 2.5.0(typescript@5.6.3)
'@remix-run/server-runtime':
specifier: ^2.5.0
- version: 2.5.0(typescript@5.2.2)
+ version: 2.5.0(typescript@5.6.3)
'@vercel/analytics':
specifier: workspace:*
version: link:../../packages/web
'@vercel/remix':
specifier: 2.5.0
- version: 2.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ version: 2.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.6.3)
isbot:
specifier: ^3.6.3
version: 3.6.3
@@ -141,44 +160,23 @@ importers:
version: 18.2.0(react@18.2.0)
devDependencies:
'@remix-run/dev':
- specifier: ^2.0.1
- version: 2.0.1(@remix-run/serve@2.5.0)(@types/node@18.11.9)(ts-node@10.9.1)(typescript@5.2.2)
+ specifier: ^2.5.0
+ version: 2.5.0(@remix-run/serve@2.5.0)(typescript@5.6.3)
'@remix-run/eslint-config':
- specifier: ^2.0.1
- version: 2.0.1(eslint@8.43.0)(react@18.2.0)(typescript@5.2.2)
- '@types/eslint':
- specifier: ^8.4.10
- version: 8.4.10
- '@types/node':
- specifier: ^18.11.9
- version: 18.11.9
+ specifier: ^2.5.0
+ version: 2.5.0(eslint@8.56.0)(react@18.2.0)(typescript@5.6.3)
'@types/react':
specifier: ^18.0.25
- version: 18.2.14
+ version: 18.3.12
'@types/react-dom':
specifier: ^18.0.8
- version: 18.0.9
- autoprefixer:
- specifier: ^10.4.13
- version: 10.4.13(postcss@8.4.31)
- cross-env:
- specifier: ^7.0.3
- version: 7.0.3
- postcss:
- specifier: ^8.4.18
- version: 8.4.31
- prettier:
- specifier: 2.7.1
- version: 2.7.1
- ts-node:
- specifier: ^10.9.1
- version: 10.9.1(@types/node@18.11.9)(typescript@5.2.2)
- tsconfig-paths:
- specifier: ^4.1.0
- version: 4.1.0
+ version: 18.0.8
+ eslint:
+ specifier: ^8.56.0
+ version: 8.56.0
typescript:
- specifier: ^5.2.2
- version: 5.2.2
+ specifier: ^5.3.3
+ version: 5.6.3
apps/sveltekit:
devDependencies:
@@ -187,25 +185,25 @@ importers:
version: 5.4.6(@sveltejs/kit@2.7.5)
'@sveltejs/kit':
specifier: latest
- version: 2.7.5(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.9)(vite@5.4.10)
+ version: 2.7.5(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.10)(vite@5.4.10)
'@sveltejs/vite-plugin-svelte':
specifier: latest
- version: 4.0.0(svelte@5.1.9)(vite@5.4.10)
+ version: 4.0.0(svelte@5.1.10)(vite@5.4.10)
'@vercel/analytics':
specifier: workspace:*
version: link:../../packages/web
svelte:
specifier: latest
- version: 5.1.9
+ version: 5.1.10
svelte-check:
specifier: latest
- version: 4.0.5(svelte@5.1.9)(typescript@5.6.3)
+ version: 4.0.5(svelte@5.1.10)(typescript@5.6.3)
typescript:
specifier: latest
version: 5.6.3
vite:
specifier: latest
- version: 5.4.10
+ version: 5.4.10(@types/node@20.17.6)
apps/vue:
dependencies:
@@ -214,14 +212,14 @@ importers:
version: link:../../packages/web
vue:
specifier: latest
- version: 3.5.12(typescript@5.1.6)
+ version: 3.5.12(typescript@5.6.3)
devDependencies:
'@vitejs/plugin-vue':
specifier: latest
version: 5.1.4(vite@5.4.10)(vue@3.5.12)
vite:
specifier: latest
- version: 5.4.10
+ version: 5.4.10(@types/node@20.17.6)
packages/eslint-config:
dependencies:
@@ -244,81 +242,66 @@ importers:
packages/web:
dependencies:
+ '@remix-run/react':
+ specifier: ^2
+ version: 2.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.6.3)
'@sveltejs/kit':
specifier: ^1 || ^2
- version: 1.0.0(svelte@5.0.0)(vite@4.5.5)
+ version: 2.7.5(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.10)(vite@5.4.10)
next:
specifier: '>= 13'
- version: 13.5.4(@babel/core@7.26.0)(react-dom@18.2.0)(react@18.2.0)
- server-only:
- specifier: ^0.0.1
- version: 0.0.1
+ version: 14.1.0(@babel/core@7.26.0)(react-dom@18.2.0)(react@18.2.0)
+ react:
+ specifier: ^18 || ^19 || ^19.0.0-rc
+ version: 18.2.0
devDependencies:
'@jest/globals':
specifier: ^29.7.0
version: 29.7.0
'@swc/core':
- specifier: ^1.3.66
- version: 1.3.66
+ specifier: ^1.8.0
+ version: 1.8.0
'@swc/jest':
- specifier: ^0.2.26
- version: 0.2.26(@swc/core@1.3.66)
+ specifier: ^0.2.37
+ version: 0.2.37(@swc/core@1.8.0)
'@testing-library/jest-dom':
- specifier: ^6.2.0
- version: 6.2.0(@jest/globals@29.7.0)(jest@29.7.0)
+ specifier: ^6.6.3
+ version: 6.6.3
'@testing-library/react':
- specifier: ^14.1.2
- version: 14.1.2(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^16.0.1
+ version: 16.0.1(@testing-library/dom@10.4.0)(@types/react@18.3.12)(react-dom@18.2.0)(react@18.2.0)
'@types/node':
- specifier: ^20.3.1
- version: 20.3.1
+ specifier: ^20.17.6
+ version: 20.17.6
'@types/react':
- specifier: ^18.2.14
- version: 18.2.14
+ specifier: ^18.3.12
+ version: 18.3.12
'@vercel/eslint-config':
specifier: workspace:0.0.0
version: link:../eslint-config
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@20.3.1)(ts-node@10.9.2)
+ version: 29.7.0(@types/node@20.17.6)(ts-node@10.9.2)
jest-environment-jsdom:
specifier: ^29.7.0
version: 29.7.0
- react:
- specifier: ^18.2.0
- version: 18.2.0
- react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ server-only:
+ specifier: ^0.0.1
+ version: 0.0.1
svelte:
- specifier: ^5
- version: 5.0.0
+ specifier: ^5.1.10
+ version: 5.1.10
tsup:
specifier: 7.1.0
- version: 7.1.0(@swc/core@1.3.66)(typescript@5.1.6)
+ version: 7.1.0(@swc/core@1.8.0)(typescript@5.6.3)
vue:
specifier: ^3.5.12
- version: 3.5.12(typescript@5.1.6)
+ version: 3.5.12(typescript@5.6.3)
vue-router:
specifier: ^4.4.5
version: 4.4.5(vue@3.5.12)
packages:
- /@aashutoshrathi/word-wrap@1.2.6:
- resolution:
- {
- integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==,
- }
- engines: { node: '>=0.10.0' }
- dev: true
-
- /@adobe/css-tools@4.0.1:
- resolution:
- {
- integrity: sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g==,
- }
- dev: true
-
/@adobe/css-tools@4.4.0:
resolution:
{
@@ -343,65 +326,159 @@ packages:
}
dev: false
- /@babel/code-frame@7.22.13:
+ /@astrojs/check@0.5.4(prettier@2.8.8)(typescript@5.6.3):
resolution:
{
- integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==,
+ integrity: sha512-BFClaLEuRzpfF9wrmh9KDS5gmRHGhkVN7qvm6tWPBvUxOADXiNz+hzrYFvZVqXTXhHjS0Ern1g3yHifgu0zsmw==,
}
- engines: { node: '>=6.9.0' }
+ hasBin: true
+ peerDependencies:
+ typescript: ^5.0.0
dependencies:
- '@babel/highlight': 7.22.20
- chalk: 2.4.2
+ '@astrojs/language-server': 2.15.4(prettier@2.8.8)(typescript@5.6.3)
+ chokidar: 3.6.0
+ fast-glob: 3.3.2
+ kleur: 4.1.5
+ typescript: 5.6.3
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - prettier
+ - prettier-plugin-astro
+ dev: true
- /@babel/code-frame@7.26.2:
+ /@astrojs/compiler@2.10.3:
resolution:
{
- integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==,
+ integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==,
}
- engines: { node: '>=6.9.0' }
+
+ /@astrojs/internal-helpers@0.4.0:
+ resolution:
+ {
+ integrity: sha512-6B13lz5n6BrbTqCTwhXjJXuR1sqiX/H6rTxzlXx+lN1NnV4jgnq/KJldCQaUWJzPL5SiWahQyinxAbxQtwgPHA==,
+ }
+ dev: false
+
+ /@astrojs/language-server@2.15.4(prettier@2.8.8)(typescript@5.6.3):
+ resolution:
+ {
+ integrity: sha512-JivzASqTPR2bao9BWsSc/woPHH7OGSGc9aMxXL4U6egVTqBycB3ZHdBJPuOCVtcGLrzdWTosAqVPz1BVoxE0+A==,
+ }
+ hasBin: true
+ peerDependencies:
+ prettier: ^3.0.0
+ prettier-plugin-astro: '>=0.11.0'
+ peerDependenciesMeta:
+ prettier:
+ optional: true
+ prettier-plugin-astro:
+ optional: true
dependencies:
- '@babel/helper-validator-identifier': 7.25.9
- js-tokens: 4.0.0
- picocolors: 1.1.1
+ '@astrojs/compiler': 2.10.3
+ '@astrojs/yaml2ts': 0.2.2
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@volar/kit': 2.4.8(typescript@5.6.3)
+ '@volar/language-core': 2.4.8
+ '@volar/language-server': 2.4.8
+ '@volar/language-service': 2.4.8
+ fast-glob: 3.3.2
+ muggle-string: 0.4.1
+ prettier: 2.8.8
+ volar-service-css: 0.0.62(@volar/language-service@2.4.8)
+ volar-service-emmet: 0.0.62(@volar/language-service@2.4.8)
+ volar-service-html: 0.0.62(@volar/language-service@2.4.8)
+ volar-service-prettier: 0.0.62(@volar/language-service@2.4.8)(prettier@2.8.8)
+ volar-service-typescript: 0.0.62(@volar/language-service@2.4.8)
+ volar-service-typescript-twoslash-queries: 0.0.62(@volar/language-service@2.4.8)
+ volar-service-yaml: 0.0.62(@volar/language-service@2.4.8)
+ vscode-html-languageservice: 5.3.1
+ vscode-uri: 3.0.8
+ transitivePeerDependencies:
+ - typescript
+ dev: true
- /@babel/compat-data@7.22.20:
+ /@astrojs/markdown-remark@5.1.0:
resolution:
{
- integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==,
+ integrity: sha512-S6Z3K2hOB7MfjeDoHsotnP/q2UsnEDB8NlNAaCjMDsGBZfTUbWxyLW3CaphEWw08f6KLZi2ibK9yC3BaMhh2NQ==,
}
- engines: { node: '>=6.9.0' }
+ dependencies:
+ '@astrojs/prism': 3.1.0
+ github-slugger: 2.0.0
+ hast-util-from-html: 2.0.3
+ hast-util-to-text: 4.0.2
+ import-meta-resolve: 4.1.0
+ mdast-util-definitions: 6.0.0
+ rehype-raw: 7.0.0
+ rehype-stringify: 10.0.1
+ remark-gfm: 4.0.0
+ remark-parse: 11.0.0
+ remark-rehype: 11.1.1
+ remark-smartypants: 2.1.0
+ shiki: 1.22.2
+ unified: 11.0.5
+ unist-util-remove-position: 5.0.0
+ unist-util-visit: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
- /@babel/compat-data@7.26.2:
+ /@astrojs/prism@3.1.0:
resolution:
{
- integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==,
+ integrity: sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==,
}
- engines: { node: '>=6.9.0' }
+ engines: { node: ^18.17.1 || ^20.3.0 || >=21.0.0 }
+ dependencies:
+ prismjs: 1.29.0
+ dev: false
- /@babel/core@7.23.0:
+ /@astrojs/telemetry@3.1.0:
resolution:
{
- integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==,
+ integrity: sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==,
}
- engines: { node: '>=6.9.0' }
+ engines: { node: ^18.17.1 || ^20.3.0 || >=21.0.0 }
dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.0
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
- '@babel/helpers': 7.23.1
- '@babel/parser': 7.23.0
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.0
- '@babel/types': 7.23.0
- convert-source-map: 2.0.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
+ ci-info: 4.0.0
+ debug: 4.3.7(supports-color@9.4.0)
+ dlv: 1.1.3
+ dset: 3.1.4
+ is-docker: 3.0.0
+ is-wsl: 3.1.0
+ which-pm-runs: 1.1.0
transitivePeerDependencies:
- supports-color
+ dev: false
+
+ /@astrojs/yaml2ts@0.2.2:
+ resolution:
+ {
+ integrity: sha512-GOfvSr5Nqy2z5XiwqTouBBpy5FyI6DEe+/g/Mk5am9SjILN1S5fOEvYK0GuWHg98yS/dobP4m8qyqw/URW35fQ==,
+ }
+ dependencies:
+ yaml: 2.6.0
+ dev: true
+
+ /@babel/code-frame@7.26.2:
+ resolution:
+ {
+ integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==,
+ }
+ engines: { node: '>=6.9.0' }
+ dependencies:
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
+ /@babel/compat-data@7.26.2:
+ resolution:
+ {
+ integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==,
+ }
+ engines: { node: '>=6.9.0' }
/@babel/core@7.26.0:
resolution:
@@ -428,51 +505,56 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/eslint-parser@7.22.15(@babel/core@7.23.0)(eslint@8.43.0):
+ /@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.43.0):
resolution:
{
- integrity: sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==,
+ integrity: sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==,
}
engines: { node: ^10.13.0 || ^12.13.0 || >=14.0.0 }
peerDependencies:
'@babel/core': ^7.11.0
- eslint: ^7.5.0 || ^8.0.0
+ eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 8.43.0
eslint-visitor-keys: 2.1.0
semver: 6.3.1
dev: true
- /@babel/eslint-parser@7.22.15(@babel/core@7.23.0)(eslint@8.57.1):
+ /@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.56.0):
resolution:
{
- integrity: sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==,
+ integrity: sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==,
}
engines: { node: ^10.13.0 || ^12.13.0 || >=14.0.0 }
peerDependencies:
'@babel/core': ^7.11.0
- eslint: ^7.5.0 || ^8.0.0
+ eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 8.57.1
+ eslint: 8.56.0
eslint-visitor-keys: 2.1.0
semver: 6.3.1
dev: true
- /@babel/generator@7.23.0:
+ /@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.57.1):
resolution:
{
- integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==,
+ integrity: sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==,
}
- engines: { node: '>=6.9.0' }
+ engines: { node: ^10.13.0 || ^12.13.0 || >=14.0.0 }
+ peerDependencies:
+ '@babel/core': ^7.11.0
+ eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
dependencies:
- '@babel/types': 7.26.0
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
+ '@babel/core': 7.26.0
+ '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
+ eslint: 8.57.1
+ eslint-visitor-keys: 2.1.0
+ semver: 6.3.1
+ dev: true
/@babel/generator@7.26.2:
resolution:
@@ -487,15 +569,6 @@ packages:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
- /@babel/helper-annotate-as-pure@7.22.5:
- resolution:
- {
- integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/types': 7.26.0
-
/@babel/helper-annotate-as-pure@7.25.9:
resolution:
{
@@ -505,19 +578,6 @@ packages:
dependencies:
'@babel/types': 7.26.0
- /@babel/helper-compilation-targets@7.22.15:
- resolution:
- {
- integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/compat-data': 7.22.20
- '@babel/helper-validator-option': 7.22.15
- browserslist: 4.22.1
- lru-cache: 5.1.1
- semver: 6.3.1
-
/@babel/helper-compilation-targets@7.25.9:
resolution:
{
@@ -531,52 +591,6 @@ packages:
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.0):
- resolution:
- {
- integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.25.9
- '@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.22.20(@babel/core@7.23.0)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.26.0):
- resolution:
- {
- integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.25.9
- '@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.22.20(@babel/core@7.26.0)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0):
resolution:
{
@@ -596,42 +610,6 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: false
-
- /@babel/helper-environment-visitor@7.22.20:
- resolution:
- {
- integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==,
- }
- engines: { node: '>=6.9.0' }
-
- /@babel/helper-function-name@7.23.0:
- resolution:
- {
- integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.26.0
-
- /@babel/helper-hoist-variables@7.22.5:
- resolution:
- {
- integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/types': 7.26.0
-
- /@babel/helper-member-expression-to-functions@7.23.0:
- resolution:
- {
- integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/types': 7.26.0
/@babel/helper-member-expression-to-functions@7.25.9:
resolution:
@@ -645,15 +623,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@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.26.0
-
/@babel/helper-module-imports@7.25.9:
resolution:
{
@@ -666,22 +635,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0):
- resolution:
- {
- integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.25.9
-
/@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0):
resolution:
{
@@ -698,15 +651,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-optimise-call-expression@7.22.5:
- resolution:
- {
- integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/types': 7.26.0
-
/@babel/helper-optimise-call-expression@7.25.9:
resolution:
{
@@ -716,13 +660,6 @@ packages:
dependencies:
'@babel/types': 7.26.0
- /@babel/helper-plugin-utils@7.22.5:
- resolution:
- {
- integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==,
- }
- engines: { node: '>=6.9.0' }
-
/@babel/helper-plugin-utils@7.25.9:
resolution:
{
@@ -730,40 +667,6 @@ packages:
}
engines: { node: '>=6.9.0' }
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.0):
- resolution:
- {
- integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.26.0):
- resolution:
- {
- integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0):
resolution:
{
@@ -779,16 +682,19 @@ packages:
'@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/helper-simple-access@7.22.5:
+ /@babel/helper-simple-access@7.25.9:
resolution:
{
- integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==,
+ integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==,
}
engines: { node: '>=6.9.0' }
dependencies:
+ '@babel/traverse': 7.25.9
'@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
/@babel/helper-skip-transparent-expression-wrappers@7.25.9:
resolution:
@@ -802,15 +708,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-split-export-declaration@7.22.6:
- resolution:
- {
- integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/types': 7.26.0
-
/@babel/helper-string-parser@7.25.9:
resolution:
{
@@ -818,14 +715,6 @@ packages:
}
engines: { node: '>=6.9.0' }
- /@babel/helper-validator-identifier@7.22.20:
- resolution:
- {
- integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==,
- }
- engines: { node: '>=6.9.0' }
- dev: true
-
/@babel/helper-validator-identifier@7.25.9:
resolution:
{
@@ -833,13 +722,6 @@ packages:
}
engines: { node: '>=6.9.0' }
- /@babel/helper-validator-option@7.22.15:
- resolution:
- {
- integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==,
- }
- engines: { node: '>=6.9.0' }
-
/@babel/helper-validator-option@7.25.9:
resolution:
{
@@ -847,19 +729,6 @@ packages:
}
engines: { node: '>=6.9.0' }
- /@babel/helpers@7.23.1:
- resolution:
- {
- integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.0
- '@babel/types': 7.26.0
- transitivePeerDependencies:
- - supports-color
-
/@babel/helpers@7.26.0:
resolution:
{
@@ -870,27 +739,6 @@ packages:
'@babel/template': 7.25.9
'@babel/types': 7.26.0
- /@babel/highlight@7.22.20:
- resolution:
- {
- integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/helper-validator-identifier': 7.25.9
- chalk: 2.4.2
- js-tokens: 4.0.0
-
- /@babel/parser@7.23.0:
- resolution:
- {
- integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==,
- }
- engines: { node: '>=6.0.0' }
- hasBin: true
- dependencies:
- '@babel/types': 7.26.0
-
/@babel/parser@7.26.2:
resolution:
{
@@ -918,7 +766,7 @@ packages:
- supports-color
dev: false
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.0):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0):
resolution:
{
integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==,
@@ -926,11 +774,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0):
resolution:
{
integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==,
@@ -938,11 +786,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.0):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0):
resolution:
{
integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==,
@@ -950,21 +798,21 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.0):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==,
+ integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
dev: true
/@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0):
@@ -978,7 +826,6 @@ packages:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- dev: false
/@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0):
resolution:
@@ -991,19 +838,6 @@ packages:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- dev: false
-
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.0):
- resolution:
- {
- integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==,
- }
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0):
resolution:
@@ -1014,10 +848,9 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: false
+ '@babel/helper-plugin-utils': 7.25.9
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0):
resolution:
{
integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==,
@@ -1025,23 +858,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.0):
- resolution:
- {
- integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0):
resolution:
{
@@ -1053,9 +873,8 @@ packages:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- dev: false
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.0):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0):
resolution:
{
integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==,
@@ -1063,11 +882,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0):
resolution:
{
integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==,
@@ -1075,11 +894,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.0):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0):
resolution:
{
integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==,
@@ -1087,11 +906,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0):
resolution:
{
integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==,
@@ -1099,11 +918,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0):
resolution:
{
integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==,
@@ -1111,11 +930,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.0):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0):
resolution:
{
integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==,
@@ -1123,53 +942,27 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.25.9
- dev: true
-
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.0):
- resolution:
- {
- integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.23.0):
- resolution:
- {
- integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.0):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==,
+ integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.26.0):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==,
+ integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1177,7 +970,7 @@ packages:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- dev: false
+ dev: true
/@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0):
resolution:
@@ -1190,115 +983,83 @@ packages:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- dev: false
- /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.0):
+ /@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==,
+ integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.0):
+ /@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==,
+ integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
dev: true
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.0):
+ /@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==,
+ integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.0):
+ /@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==,
+ integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
'@babel/types': 7.26.0
- dev: true
-
- /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.23.0):
- resolution:
- {
- integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.0):
- resolution:
- {
- integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.26.0):
+ /@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==,
+ integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.26.0)
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ dev: true
/@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0):
resolution:
@@ -1317,63 +1078,54 @@ packages:
'@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/preset-react@7.22.15(@babel/core@7.23.0):
+ /@babel/preset-react@7.25.9(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==,
+ integrity: sha512-D3to0uSPiWE7rBrdIICCd0tJSIGpLaaGptna2+w7Pft5xMqLpA1sz99DK5TZ1TjGbdQ/VI1eCSZ06dv3lT4JOw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.0)
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.0)
- '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.0)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/preset-typescript@7.23.0(@babel/core@7.23.0):
+ /@babel/preset-typescript@7.26.0(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-6P6VVa/NM/VlAYj5s2Aq/gdVg8FSENCg3wlZ6Qau9AcPaoF5LbN1nyGlR9DTRIw9PpxI94e+ReydsJHcjwAweg==,
+ integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
- '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0)
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.0)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/runtime@7.19.4:
- resolution:
- {
- integrity: sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- regenerator-runtime: 0.13.10
- dev: true
-
- /@babel/runtime@7.23.1:
+ /@babel/runtime@7.26.0:
resolution:
{
- integrity: sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==,
+ integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==,
}
engines: { node: '>=6.9.0' }
dependencies:
- regenerator-runtime: 0.14.0
+ regenerator-runtime: 0.14.1
dev: true
/@babel/standalone@7.26.2:
@@ -1384,17 +1136,6 @@ packages:
engines: { node: '>=6.9.0' }
dev: false
- /@babel/template@7.22.15:
- resolution:
- {
- integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/parser': 7.26.2
- '@babel/types': 7.26.0
-
/@babel/template@7.25.9:
resolution:
{
@@ -1406,26 +1147,6 @@ packages:
'@babel/parser': 7.26.2
'@babel/types': 7.26.0
- /@babel/traverse@7.23.0:
- resolution:
- {
- integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.0
- '@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.26.2
- '@babel/types': 7.26.0
- debug: 4.3.7(supports-color@9.4.0)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
/@babel/traverse@7.25.9:
resolution:
{
@@ -1443,17 +1164,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/types@7.23.0:
- resolution:
- {
- integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==,
- }
- engines: { node: '>=6.9.0' }
- dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- to-fast-properties: 2.0.0
-
/@babel/types@7.26.0:
resolution:
{
@@ -1491,6 +1201,64 @@ packages:
'@jridgewell/trace-mapping': 0.3.9
dev: true
+ /@emmetio/abbreviation@2.3.3:
+ resolution:
+ {
+ integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==,
+ }
+ dependencies:
+ '@emmetio/scanner': 1.0.4
+ dev: true
+
+ /@emmetio/css-abbreviation@2.1.8:
+ resolution:
+ {
+ integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==,
+ }
+ dependencies:
+ '@emmetio/scanner': 1.0.4
+ dev: true
+
+ /@emmetio/css-parser@0.4.0:
+ resolution:
+ {
+ integrity: sha512-z7wkxRSZgrQHXVzObGkXG+Vmj3uRlpM11oCZ9pbaz0nFejvCDmAiNDpY75+wgXOcffKpj4rzGtwGaZxfJKsJxw==,
+ }
+ dependencies:
+ '@emmetio/stream-reader': 2.2.0
+ '@emmetio/stream-reader-utils': 0.1.0
+ dev: true
+
+ /@emmetio/html-matcher@1.3.0:
+ resolution:
+ {
+ integrity: sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==,
+ }
+ dependencies:
+ '@emmetio/scanner': 1.0.4
+ dev: true
+
+ /@emmetio/scanner@1.0.4:
+ resolution:
+ {
+ integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==,
+ }
+ dev: true
+
+ /@emmetio/stream-reader-utils@0.1.0:
+ resolution:
+ {
+ integrity: sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==,
+ }
+ dev: true
+
+ /@emmetio/stream-reader@2.2.0:
+ resolution:
+ {
+ integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==,
+ }
+ dev: true
+
/@emnapi/runtime@1.3.1:
resolution:
{
@@ -1502,10 +1270,10 @@ packages:
dev: false
optional: true
- /@emotion/hash@0.9.1:
+ /@emotion/hash@0.9.2:
resolution:
{
- integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==,
+ integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==,
}
dev: true
@@ -1544,18 +1312,6 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm64@0.18.10:
- resolution:
- {
- integrity: sha512-ynm4naLbNbK0ajf9LUWtQB+6Vfg1Z/AplArqr4tGebC00Z6m9Y91OVIcjDa461wGcZwcaHYaZAab4yJxfhisTQ==,
- }
- engines: { node: '>=12' }
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm64@0.18.20:
resolution:
{
@@ -1565,6 +1321,7 @@ packages:
cpu: [arm64]
os: [android]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/android-arm64@0.21.5:
@@ -1602,18 +1359,6 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm@0.18.10:
- resolution:
- {
- integrity: sha512-3KClmVNd+Fku82uZJz5C4Rx8m1PPmWUFz5Zkw8jkpZPOmsq+EG1TTOtw1OXkHuX3WczOFQigrtf60B1ijKwNsg==,
- }
- engines: { node: '>=12' }
- cpu: [arm]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm@0.18.20:
resolution:
{
@@ -1623,6 +1368,7 @@ packages:
cpu: [arm]
os: [android]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/android-arm@0.21.5:
@@ -1660,18 +1406,6 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.18.10:
- resolution:
- {
- integrity: sha512-vFfXj8P9Yfjh54yqUDEHKzqzYuEfPyAOl3z7R9hjkwt+NCvbn9VMxX+IILnAfdImRBfYVItgSUsqGKhJFnBwZw==,
- }
- engines: { node: '>=12' }
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-x64@0.18.20:
resolution:
{
@@ -1681,6 +1415,7 @@ packages:
cpu: [x64]
os: [android]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/android-x64@0.21.5:
@@ -1718,18 +1453,6 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64@0.18.10:
- resolution:
- {
- integrity: sha512-k2OJQ7ZxE6sVc91+MQeZH9gFeDAH2uIYALPAwTjTCvcPy9Dzrf7V7gFUQPYkn09zloWhQ+nvxWHia2x2ZLR0sQ==,
- }
- engines: { node: '>=12' }
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-arm64@0.18.20:
resolution:
{
@@ -1739,6 +1462,7 @@ packages:
cpu: [arm64]
os: [darwin]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/darwin-arm64@0.21.5:
@@ -1776,18 +1500,6 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-x64@0.18.10:
- resolution:
- {
- integrity: sha512-tnz/mdZk1L1Z3WpGjin/L2bKTe8/AKZpI8fcCLtH+gq8WXWsCNJSxlesAObV4qbtTl6pG5vmqFXfWUQ5hV8PAQ==,
- }
- engines: { node: '>=12' }
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-x64@0.18.20:
resolution:
{
@@ -1797,6 +1509,7 @@ packages:
cpu: [x64]
os: [darwin]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/darwin-x64@0.21.5:
@@ -1834,18 +1547,6 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.18.10:
- resolution:
- {
- integrity: sha512-QJluV0LwBrbHnYYwSKC+K8RGz0g/EyhpQH1IxdoFT0nM7PfgjE+aS8wxq/KFEsU0JkL7U/EEKd3O8xVBxXb2aA==,
- }
- engines: { node: '>=12' }
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-arm64@0.18.20:
resolution:
{
@@ -1855,6 +1556,7 @@ packages:
cpu: [arm64]
os: [freebsd]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/freebsd-arm64@0.21.5:
@@ -1892,18 +1594,6 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-x64@0.18.10:
- resolution:
- {
- integrity: sha512-Hi/ycUkS6KTw+U9G5PK5NoK7CZboicaKUSVs0FSiPNtuCTzK6HNM4DIgniH7hFaeuszDS9T4dhAHWiLSt/Y5Ng==,
- }
- engines: { node: '>=12' }
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-x64@0.18.20:
resolution:
{
@@ -1913,6 +1603,7 @@ packages:
cpu: [x64]
os: [freebsd]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/freebsd-x64@0.21.5:
@@ -1950,18 +1641,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm64@0.18.10:
- resolution:
- {
- integrity: sha512-Nz6XcfRBOO7jSrVpKAyEyFOPGhySPNlgumSDhWAspdQQ11ub/7/NZDMhWDFReE9QH/SsCOCLQbdj0atAk/HMOQ==,
- }
- engines: { node: '>=12' }
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm64@0.18.20:
resolution:
{
@@ -1971,6 +1650,7 @@ packages:
cpu: [arm64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/linux-arm64@0.21.5:
@@ -2008,18 +1688,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm@0.18.10:
- resolution:
- {
- integrity: sha512-HfFoxY172tVHPIvJy+FHxzB4l8xU7e5cxmNS11cQ2jt4JWAukn/7LXaPdZid41UyTweqa4P/1zs201gRGCTwHw==,
- }
- engines: { node: '>=12' }
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm@0.18.20:
resolution:
{
@@ -2029,6 +1697,7 @@ packages:
cpu: [arm]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/linux-arm@0.21.5:
@@ -2066,18 +1735,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.18.10:
- resolution:
- {
- integrity: sha512-otMdmSmkMe+pmiP/bZBjfphyAsTsngyT9RCYwoFzqrveAbux9nYitDTpdgToG0Z0U55+PnH654gCH2GQ1aB6Yw==,
- }
- engines: { node: '>=12' }
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ia32@0.18.20:
resolution:
{
@@ -2087,6 +1744,7 @@ packages:
cpu: [ia32]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/linux-ia32@0.21.5:
@@ -2124,18 +1782,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64@0.18.10:
- resolution:
- {
- integrity: sha512-t8tjFuON1koxskzQ4VFoh0T5UDUMiLYjwf9Wktd0tx8AoK6xgU+5ubKOpWpcnhEQ2tESS5u0v6QuN8PX/ftwcQ==,
- }
- engines: { node: '>=12' }
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-loong64@0.18.20:
resolution:
{
@@ -2145,6 +1791,7 @@ packages:
cpu: [loong64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/linux-loong64@0.21.5:
@@ -2182,18 +1829,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-mips64el@0.18.10:
- resolution:
- {
- integrity: sha512-+dUkcVzcfEJHz3HEnVpIJu8z8Wdn2n/nWMWdl6FVPFGJAVySO4g3+XPzNKFytVFwf8hPVDwYXzVcu8GMFqsqZw==,
- }
- engines: { node: '>=12' }
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-mips64el@0.18.20:
resolution:
{
@@ -2203,6 +1838,7 @@ packages:
cpu: [mips64el]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/linux-mips64el@0.21.5:
@@ -2240,18 +1876,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.18.10:
- resolution:
- {
- integrity: sha512-sO3PjjxEGy+PY2qkGe2gwJbXdZN9wAYpVBZWFD0AwAoKuXRkWK0/zaMQ5ekUFJDRDCRm8x5U0Axaub7ynH/wVg==,
- }
- engines: { node: '>=12' }
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ppc64@0.18.20:
resolution:
{
@@ -2261,6 +1885,7 @@ packages:
cpu: [ppc64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/linux-ppc64@0.21.5:
@@ -2298,18 +1923,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-riscv64@0.18.10:
- resolution:
- {
- integrity: sha512-JDtdbJg3yjDeXLv4lZYE1kiTnxv73/8cbPHY9T/dUKi8rYOM/k5b3W4UJLMUksuQ6nTm5c89W1nADsql6FW75A==,
- }
- engines: { node: '>=12' }
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-riscv64@0.18.20:
resolution:
{
@@ -2319,6 +1932,7 @@ packages:
cpu: [riscv64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/linux-riscv64@0.21.5:
@@ -2336,30 +1950,18 @@ packages:
resolution:
{
integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==,
- }
- engines: { node: '>=18' }
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@esbuild/linux-s390x@0.17.6:
- resolution:
- {
- integrity: sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q==,
- }
- engines: { node: '>=12' }
- cpu: [s390x]
+ }
+ engines: { node: '>=18' }
+ cpu: [riscv64]
os: [linux]
requiresBuild: true
- dev: true
+ dev: false
optional: true
- /@esbuild/linux-s390x@0.18.10:
+ /@esbuild/linux-s390x@0.17.6:
resolution:
{
- integrity: sha512-NLuSKcp8WckjD2a7z5kzLiCywFwBTMlIxDNuud1AUGVuwBBJSkuubp6cNjJ0p5c6CZaA3QqUGwjHJBiG1SoOFw==,
+ integrity: sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q==,
}
engines: { node: '>=12' }
cpu: [s390x]
@@ -2377,6 +1979,7 @@ packages:
cpu: [s390x]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/linux-s390x@0.21.5:
@@ -2414,18 +2017,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64@0.18.10:
- resolution:
- {
- integrity: sha512-wj2KRsCsFusli+6yFgNO/zmmLslislAWryJnodteRmGej7ZzinIbMdsyp13rVGde88zxJd5vercNYK9kuvlZaQ==,
- }
- engines: { node: '>=12' }
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-x64@0.18.20:
resolution:
{
@@ -2435,6 +2026,7 @@ packages:
cpu: [x64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/linux-x64@0.21.5:
@@ -2472,18 +2064,6 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.18.10:
- resolution:
- {
- integrity: sha512-pQ9QqxEPI3cVRZyUtCoZxhZK3If+7RzR8L2yz2+TDzdygofIPOJFaAPkEJ5rYIbUO101RaiYxfdOBahYexLk5A==,
- }
- engines: { node: '>=12' }
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/netbsd-x64@0.18.20:
resolution:
{
@@ -2493,6 +2073,7 @@ packages:
cpu: [x64]
os: [netbsd]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/netbsd-x64@0.21.5:
@@ -2542,18 +2123,6 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64@0.18.10:
- resolution:
- {
- integrity: sha512-k8GTIIW9I8pEEfoOUm32TpPMgSg06JhL5DO+ql66aLTkOQUs0TxCA67Wi7pv6z8iF8STCGcNbm3UWFHLuci+ag==,
- }
- engines: { node: '>=12' }
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/openbsd-x64@0.18.20:
resolution:
{
@@ -2563,6 +2132,7 @@ packages:
cpu: [x64]
os: [openbsd]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/openbsd-x64@0.21.5:
@@ -2600,18 +2170,6 @@ packages:
dev: true
optional: true
- /@esbuild/sunos-x64@0.18.10:
- resolution:
- {
- integrity: sha512-vIGYJIdEI6d4JBucAx8py792G8J0GP40qSH+EvSt80A4zvGd6jph+5t1g+eEXcS2aRpgZw6CrssNCFZxTdEsxw==,
- }
- engines: { node: '>=12' }
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/sunos-x64@0.18.20:
resolution:
{
@@ -2621,6 +2179,7 @@ packages:
cpu: [x64]
os: [sunos]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/sunos-x64@0.21.5:
@@ -2658,18 +2217,6 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.18.10:
- resolution:
- {
- integrity: sha512-kRhNcMZFGMW+ZHCarAM1ypr8OZs0k688ViUCetVCef9p3enFxzWeBg9h/575Y0nsFu0ZItluCVF5gMR2pwOEpA==,
- }
- engines: { node: '>=12' }
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-arm64@0.18.20:
resolution:
{
@@ -2679,6 +2226,7 @@ packages:
cpu: [arm64]
os: [win32]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/win32-arm64@0.21.5:
@@ -2716,18 +2264,6 @@ packages:
dev: true
optional: true
- /@esbuild/win32-ia32@0.18.10:
- resolution:
- {
- integrity: sha512-AR9PX1whYaYh9p0EOaKna0h48F/A101Mt/ag72+kMkkBZXPQ7cjbz2syXI/HI3OlBdUytSdHneljfjvUoqwqiQ==,
- }
- engines: { node: '>=12' }
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-ia32@0.18.20:
resolution:
{
@@ -2737,6 +2273,7 @@ packages:
cpu: [ia32]
os: [win32]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/win32-ia32@0.21.5:
@@ -2774,18 +2311,6 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64@0.18.10:
- resolution:
- {
- integrity: sha512-5sTkYhAGHNRr6bVf4RM0PsscqVr6/DBYdrlMh168oph3usid3lKHcHEEHmr34iZ9GHeeg2juFOxtpl6XyC3tpw==,
- }
- engines: { node: '>=12' }
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-x64@0.18.20:
resolution:
{
@@ -2795,6 +2320,7 @@ packages:
cpu: [x64]
os: [win32]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/win32-x64@0.21.5:
@@ -2820,30 +2346,30 @@ packages:
dev: false
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.43.0):
+ /@eslint-community/eslint-utils@4.4.1(eslint@8.43.0):
resolution:
{
- integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==,
+ integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: 8.43.0
- eslint-visitor-keys: 3.4.1
+ eslint-visitor-keys: 3.4.3
dev: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.57.1):
+ /@eslint-community/eslint-utils@4.4.1(eslint@8.56.0):
resolution:
{
- integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==,
+ integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
- eslint: 8.57.1
- eslint-visitor-keys: 3.4.1
+ eslint: 8.56.0
+ eslint-visitor-keys: 3.4.3
dev: true
/@eslint-community/eslint-utils@4.4.1(eslint@8.57.1):
@@ -2865,42 +2391,6 @@ packages:
}
engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
- /@eslint-community/regexpp@4.5.1:
- resolution:
- {
- integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==,
- }
- engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
- dev: true
-
- /@eslint-community/regexpp@4.9.1:
- resolution:
- {
- integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==,
- }
- engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
- dev: true
-
- /@eslint/eslintrc@2.1.2:
- resolution:
- {
- integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
- dependencies:
- ajv: 6.12.6
- debug: 4.3.7(supports-color@9.4.0)
- espree: 9.6.1
- globals: 13.20.0
- ignore: 5.3.2
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@eslint/eslintrc@2.1.4:
resolution:
{
@@ -2928,6 +2418,14 @@ packages:
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
dev: true
+ /@eslint/js@8.56.0:
+ resolution:
+ {
+ integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==,
+ }
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ dev: true
+
/@eslint/js@8.57.1:
resolution:
{
@@ -2935,14 +2433,15 @@ packages:
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
- /@humanwhocodes/config-array@0.11.11:
+ /@humanwhocodes/config-array@0.11.14:
resolution:
{
- integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==,
+ integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==,
}
engines: { node: '>=10.10.0' }
+ deprecated: Use @eslint/config-array instead
dependencies:
- '@humanwhocodes/object-schema': 1.2.1
+ '@humanwhocodes/object-schema': 2.0.3
debug: 4.3.7(supports-color@9.4.0)
minimatch: 3.1.2
transitivePeerDependencies:
@@ -2970,13 +2469,6 @@ packages:
}
engines: { node: '>=12.22' }
- /@humanwhocodes/object-schema@1.2.1:
- resolution:
- {
- integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==,
- }
- dev: true
-
/@humanwhocodes/object-schema@2.0.3:
resolution:
{
@@ -3237,7 +2729,7 @@ packages:
dependencies:
string-width: 5.1.2
string-width-cjs: /string-width@4.2.3
- strip-ansi: 7.0.1
+ strip-ansi: 7.1.0
strip-ansi-cjs: /strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: /wrap-ansi@7.0.0
@@ -3272,7 +2764,7 @@ packages:
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -3296,14 +2788,14 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@20.3.1)(ts-node@10.9.2)
+ jest-config: 29.7.0(@types/node@20.17.6)(ts-node@10.9.2)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -3325,14 +2817,14 @@ packages:
- ts-node
dev: true
- /@jest/create-cache-key-function@27.5.1:
+ /@jest/create-cache-key-function@29.7.0:
resolution:
{
- integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==,
+ integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==,
}
- engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 }
+ engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
- '@jest/types': 27.5.1
+ '@jest/types': 29.6.3
dev: true
/@jest/environment@29.7.0:
@@ -3344,20 +2836,10 @@ packages:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
jest-mock: 29.7.0
dev: true
- /@jest/expect-utils@29.5.0:
- resolution:
- {
- integrity: sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- dependencies:
- jest-get-type: 29.4.3
- dev: true
-
/@jest/expect-utils@29.7.0:
resolution:
{
@@ -3390,7 +2872,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -3429,38 +2911,28 @@ packages:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
chalk: 4.1.2
- collect-v8-coverage: 1.0.1
+ collect-v8-coverage: 1.0.2
exit: 0.1.2
- glob: 7.1.7
+ glob: 7.2.3
graceful-fs: 4.2.11
- istanbul-lib-coverage: 3.2.0
- istanbul-lib-instrument: 6.0.1
- istanbul-lib-report: 3.0.0
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-instrument: 6.0.3
+ istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.5
+ istanbul-reports: 3.1.7
jest-message-util: 29.7.0
jest-util: 29.7.0
jest-worker: 29.7.0
slash: 3.0.0
string-length: 4.0.2
strip-ansi: 6.0.1
- v8-to-istanbul: 9.0.1
+ v8-to-istanbul: 9.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@jest/schemas@29.4.3:
- resolution:
- {
- integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- dependencies:
- '@sinclair/typebox': 0.25.24
- dev: true
-
/@jest/schemas@29.6.3:
resolution:
{
@@ -3492,8 +2964,8 @@ packages:
dependencies:
'@jest/console': 29.7.0
'@jest/types': 29.6.3
- '@types/istanbul-lib-coverage': 2.0.4
- collect-v8-coverage: 1.0.1
+ '@types/istanbul-lib-coverage': 2.0.6
+ collect-v8-coverage: 1.0.2
dev: true
/@jest/test-sequencer@29.7.0:
@@ -3516,7 +2988,7 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -3528,27 +3000,13 @@ packages:
jest-regex-util: 29.6.3
jest-util: 29.7.0
micromatch: 4.0.8
- pirates: 4.0.5
+ pirates: 4.0.6
slash: 3.0.0
write-file-atomic: 4.0.2
transitivePeerDependencies:
- supports-color
dev: true
- /@jest/types@27.5.1:
- resolution:
- {
- integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==,
- }
- engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 }
- dependencies:
- '@types/istanbul-lib-coverage': 2.0.4
- '@types/istanbul-reports': 3.0.1
- '@types/node': 20.3.1
- '@types/yargs': 16.0.4
- chalk: 4.1.2
- dev: true
-
/@jest/types@29.6.3:
resolution:
{
@@ -3557,10 +3015,10 @@ packages:
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
'@jest/schemas': 29.6.3
- '@types/istanbul-lib-coverage': 2.0.4
- '@types/istanbul-reports': 3.0.1
- '@types/node': 20.3.1
- '@types/yargs': 17.0.14
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 20.17.6
+ '@types/yargs': 17.0.33
chalk: 4.1.2
dev: true
@@ -3624,10 +3082,10 @@ packages:
'@jridgewell/sourcemap-codec': 1.5.0
dev: true
- /@jspm/core@2.0.1:
+ /@jspm/core@2.1.0:
resolution:
{
- integrity: sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw==,
+ integrity: sha512-3sRl+pkyFY/kLmHl0cgHiFp2xEqErA8N3ECjMs7serSUBmoJ70lBa0PG5t0IM6WJgdZNyyI0R8YFfi5wM8+mzg==,
}
dev: true
@@ -3664,7 +3122,7 @@ packages:
npmlog: 5.0.1
rimraf: 3.0.2
semver: 7.6.3
- tar: 6.2.0
+ tar: 6.2.1
transitivePeerDependencies:
- encoding
- supports-color
@@ -3675,8 +3133,8 @@ packages:
integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==,
}
dependencies:
- '@types/estree-jsx': 1.0.1
- '@types/mdx': 2.0.8
+ '@types/estree-jsx': 1.0.5
+ '@types/mdx': 2.0.13
estree-util-build-jsx: 2.2.2
estree-util-is-identifier-name: 2.1.0
estree-util-to-js: 1.2.0
@@ -3744,13 +3202,6 @@ packages:
urlpattern-polyfill: 8.0.2
dev: false
- /@next/env@13.5.4:
- resolution:
- {
- integrity: sha512-LGegJkMvRNw90WWphGJ3RMHMVplYcOfRWf2Be3td3sUa+1AaxmsYyANsA+znrGCBjXJNi4XAQlSoEfUxs/4kIQ==,
- }
- dev: false
-
/@next/env@14.1.0:
resolution:
{
@@ -3782,18 +3233,6 @@ packages:
fast-glob: 3.3.1
dev: true
- /@next/swc-darwin-arm64@13.5.4:
- resolution:
- {
- integrity: sha512-Df8SHuXgF1p+aonBMcDPEsaahNo2TCwuie7VXED4FVyECvdXfRT9unapm54NssV9tF3OQFKBFOdlje4T43VO0w==,
- }
- engines: { node: '>= 10' }
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
-
/@next/swc-darwin-arm64@14.1.0:
resolution:
{
@@ -3818,18 +3257,6 @@ packages:
dev: false
optional: true
- /@next/swc-darwin-x64@13.5.4:
- resolution:
- {
- integrity: sha512-siPuUwO45PnNRMeZnSa8n/Lye5ZX93IJom9wQRB5DEOdFrw0JjOMu1GINB8jAEdwa7Vdyn1oJ2xGNaQpdQQ9Pw==,
- }
- engines: { node: '>= 10' }
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
-
/@next/swc-darwin-x64@14.1.0:
resolution:
{
@@ -3854,18 +3281,6 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-gnu@13.5.4:
- resolution:
- {
- integrity: sha512-l/k/fvRP/zmB2jkFMfefmFkyZbDkYW0mRM/LB+tH5u9pB98WsHXC0WvDHlGCYp3CH/jlkJPL7gN8nkTQVrQ/2w==,
- }
- engines: { node: '>= 10' }
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
/@next/swc-linux-arm64-gnu@14.1.0:
resolution:
{
@@ -3890,18 +3305,6 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-musl@13.5.4:
- resolution:
- {
- integrity: sha512-YYGb7SlLkI+XqfQa8VPErljb7k9nUnhhRrVaOdfJNCaQnHBcvbT7cx/UjDQLdleJcfyg1Hkn5YSSIeVfjgmkTg==,
- }
- engines: { node: '>= 10' }
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
/@next/swc-linux-arm64-musl@14.1.0:
resolution:
{
@@ -3926,18 +3329,6 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-gnu@13.5.4:
- resolution:
- {
- integrity: sha512-uE61vyUSClnCH18YHjA8tE1prr/PBFlBFhxBZis4XBRJoR+txAky5d7gGNUIbQ8sZZ7LVkSVgm/5Fc7mwXmRAg==,
- }
- engines: { node: '>= 10' }
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
/@next/swc-linux-x64-gnu@14.1.0:
resolution:
{
@@ -3962,18 +3353,6 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-musl@13.5.4:
- resolution:
- {
- integrity: sha512-qVEKFYML/GvJSy9CfYqAdUexA6M5AklYcQCW+8JECmkQHGoPxCf04iMh7CPR7wkHyWWK+XLt4Ja7hhsPJtSnhg==,
- }
- engines: { node: '>= 10' }
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
/@next/swc-linux-x64-musl@14.1.0:
resolution:
{
@@ -3998,73 +3377,37 @@ packages:
dev: false
optional: true
- /@next/swc-win32-arm64-msvc@13.5.4:
- resolution:
- {
- integrity: sha512-mDSQfqxAlfpeZOLPxLymZkX0hYF3juN57W6vFHTvwKlnHfmh12Pt7hPIRLYIShk8uYRsKPtMTth/EzpwRI+u8w==,
- }
- engines: { node: '>= 10' }
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: false
- optional: true
-
/@next/swc-win32-arm64-msvc@14.1.0:
resolution:
{
integrity: sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ==,
}
engines: { node: '>= 10' }
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-win32-arm64-msvc@15.0.1:
- resolution:
- {
- integrity: sha512-DS8wQtl6diAj0eZTdH0sefykm4iXMbHT4MOvLwqZiIkeezKpkgPFcEdFlz3vKvXa2R/2UEgMh48z1nEpNhjeOQ==,
- }
- engines: { node: '>= 10' }
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-win32-ia32-msvc@13.5.4:
- resolution:
- {
- integrity: sha512-aoqAT2XIekIWoriwzOmGFAvTtVY5O7JjV21giozBTP5c6uZhpvTWRbmHXbmsjZqY4HnEZQRXWkSAppsIBweKqw==,
- }
- engines: { node: '>= 10' }
- cpu: [ia32]
+ cpu: [arm64]
os: [win32]
requiresBuild: true
dev: false
optional: true
- /@next/swc-win32-ia32-msvc@14.1.0:
+ /@next/swc-win32-arm64-msvc@15.0.1:
resolution:
{
- integrity: sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw==,
+ integrity: sha512-DS8wQtl6diAj0eZTdH0sefykm4iXMbHT4MOvLwqZiIkeezKpkgPFcEdFlz3vKvXa2R/2UEgMh48z1nEpNhjeOQ==,
}
engines: { node: '>= 10' }
- cpu: [ia32]
+ cpu: [arm64]
os: [win32]
requiresBuild: true
dev: false
optional: true
- /@next/swc-win32-x64-msvc@13.5.4:
+ /@next/swc-win32-ia32-msvc@14.1.0:
resolution:
{
- integrity: sha512-cyRvlAxwlddlqeB9xtPSfNSCRy8BOa4wtMo0IuI9P7Y0XT2qpDrpFKRyZ7kUngZis59mPVla5k8X1oOJ8RxDYg==,
+ integrity: sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw==,
}
engines: { node: '>= 10' }
- cpu: [x64]
+ cpu: [ia32]
os: [win32]
requiresBuild: true
dev: false
@@ -4128,12 +3471,20 @@ packages:
engines: { node: '>= 8' }
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.13.0
+ fastq: 1.17.1
+
+ /@nolyfill/is-core-module@1.0.39:
+ resolution:
+ {
+ integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==,
+ }
+ engines: { node: '>=12.4.0' }
+ dev: true
- /@npmcli/fs@3.1.0:
+ /@npmcli/fs@3.1.1:
resolution:
{
- integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==,
+ integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==,
}
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
dependencies:
@@ -4167,9 +3518,9 @@ packages:
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
dependencies:
'@npmcli/git': 4.1.0
- glob: 10.3.10
+ glob: 10.4.5
hosted-git-info: 6.1.1
- json-parse-even-better-errors: 3.0.0
+ json-parse-even-better-errors: 3.0.2
normalize-package-data: 5.0.0
proc-log: 3.0.0
semver: 7.6.3
@@ -4205,7 +3556,7 @@ packages:
'@nuxt/kit': 3.14.0(magicast@0.3.5)
'@nuxt/schema': 3.14.0(magicast@0.3.5)
execa: 7.2.0
- vite: 5.4.10
+ vite: 5.4.10(@types/node@20.17.6)
transitivePeerDependencies:
- magicast
- rollup
@@ -4274,7 +3625,7 @@ packages:
sirv: 2.0.4
tinyglobby: 0.2.10
unimport: 3.13.1(rollup@4.24.4)
- vite: 5.4.10
+ vite: 5.4.10(@types/node@20.17.6)
vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.0)(vite@5.4.10)
vite-plugin-vue-inspector: 5.1.3(vite@5.4.10)
which: 3.0.1
@@ -4420,7 +3771,7 @@ packages:
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.15.0
- vite: 5.4.10
+ vite: 5.4.10(@types/node@20.17.6)
vite-node: 2.1.4
vite-plugin-checker: 0.8.0(eslint@8.57.1)(typescript@5.6.3)(vite@5.4.10)
vue: 3.5.12(typescript@5.6.3)
@@ -4656,19 +4007,12 @@ packages:
requiresBuild: true
optional: true
- /@pkgr/utils@2.3.1:
+ /@pkgr/core@0.1.1:
resolution:
{
- integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==,
+ integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==,
}
engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 }
- dependencies:
- cross-spawn: 7.0.3
- is-glob: 4.0.3
- open: 8.4.0
- picocolors: 1.1.1
- tiny-glob: 0.2.9
- tslib: 2.6.2
dev: true
/@playwright/test@1.35.1:
@@ -4677,9 +4021,10 @@ packages:
integrity: sha512-b5YoFe6J9exsMYg0pQAobNDR85T1nLumUYgUTtKm4d21iX2L7WqKq9dW8NGJ+2vX0etZd+Y7UeuqsxDXm9+5ZA==,
}
engines: { node: '>=16' }
+ deprecated: Please update to the latest version of Playwright to test up-to-date browsers.
hasBin: true
dependencies:
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
playwright-core: 1.35.1
optionalDependencies:
fsevents: 2.3.2
@@ -4733,45 +4078,61 @@ packages:
- supports-color
dev: false
- /@remix-run/dev@2.0.1(@remix-run/serve@2.5.0)(@types/node@18.11.9)(ts-node@10.9.1)(typescript@5.2.2):
+ /@remix-run/css-bundle@2.5.0:
+ resolution:
+ {
+ integrity: sha512-G57IFEFjte94YMBapbzzFrMnqIAAIf3qUNOsD7PC7VOiLW0AHd75yvq0cDc79zRaRthZhhYb3HkNkE8CsndfHA==,
+ }
+ engines: { node: '>=18.0.0' }
+ dev: false
+
+ /@remix-run/dev@2.5.0(@remix-run/serve@2.5.0)(typescript@5.6.3):
resolution:
{
- integrity: sha512-FxlbgCBXUzKxBSs2OfNoBUadcARr4S7S4JQ28t7MLcIsfJI/uHmGAMXClatsgeZuRvPK/Zx/W3B4uho1FTfQVA==,
+ integrity: sha512-Px+kyoP21b0/N//VPQ7VRaDZE+oVjTWp4QB1mBwdoCPl9gS7E6LA40YYfY51y/Lts+FSMQPJOLd3yVb9zjzL1w==,
}
engines: { node: '>=18.0.0' }
hasBin: true
peerDependencies:
- '@remix-run/serve': ^2.0.1
+ '@remix-run/serve': ^2.5.0
typescript: ^5.1.0
+ vite: ^5.0.0
peerDependenciesMeta:
'@remix-run/serve':
optional: true
typescript:
optional: true
+ vite:
+ optional: true
dependencies:
- '@babel/core': 7.23.0
- '@babel/generator': 7.23.0
- '@babel/parser': 7.23.0
- '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.0)
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
- '@babel/preset-typescript': 7.23.0(@babel/core@7.23.0)
- '@babel/traverse': 7.23.0
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
'@mdx-js/mdx': 2.3.0
'@npmcli/package-json': 4.0.1
- '@remix-run/serve': 2.5.0(typescript@5.2.2)
- '@remix-run/server-runtime': 2.0.1(typescript@5.2.2)
- '@types/mdx': 2.0.8
- '@vanilla-extract/integration': 6.2.2(@types/node@18.11.9)
+ '@remix-run/node': 2.5.0(typescript@5.6.3)
+ '@remix-run/router': 1.14.2
+ '@remix-run/serve': 2.5.0(typescript@5.6.3)
+ '@remix-run/server-runtime': 2.5.0(typescript@5.6.3)
+ '@types/mdx': 2.0.13
+ '@vanilla-extract/integration': 6.5.0
arg: 5.0.2
cacache: 17.1.4
chalk: 4.1.2
- chokidar: 3.5.3
- dotenv: 16.3.1
+ chokidar: 3.6.0
+ cross-spawn: 7.0.3
+ dotenv: 16.4.5
+ es-module-lexer: 1.5.4
esbuild: 0.17.6
- esbuild-plugins-node-modules-polyfill: 1.6.1(esbuild@0.17.6)
+ esbuild-plugins-node-modules-polyfill: 1.6.7(esbuild@0.17.6)
execa: 5.1.1
exit-hook: 2.2.1
- express: 4.18.2
+ express: 4.21.1
fs-extra: 10.1.0
get-port: 5.1.1
gunzip-maybe: 1.4.2
@@ -4779,34 +4140,35 @@ packages:
json5: 2.2.3
lodash: 4.17.21
lodash.debounce: 4.0.8
- minimatch: 9.0.3
- node-fetch: 2.7.0
+ minimatch: 9.0.5
ora: 5.4.1
- picocolors: 1.0.0
+ picocolors: 1.1.1
picomatch: 2.3.1
pidtree: 0.6.0
- postcss: 8.4.31
- postcss-discard-duplicates: 5.1.0(postcss@8.4.31)
- postcss-load-config: 4.0.1(postcss@8.4.31)(ts-node@10.9.1)
- postcss-modules: 6.0.0(postcss@8.4.31)
+ postcss: 8.4.47
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.47)
+ postcss-load-config: 4.0.2(postcss@8.4.47)
+ postcss-modules: 6.0.0(postcss@8.4.47)
prettier: 2.8.8
pretty-ms: 7.0.1
- react-refresh: 0.14.0
+ react-refresh: 0.14.2
remark-frontmatter: 4.0.1
remark-mdx-frontmatter: 1.1.1
- semver: 7.5.4
+ semver: 7.6.3
+ set-cookie-parser: 2.7.1
tar-fs: 2.1.1
- tsconfig-paths: 4.1.0
- typescript: 5.2.2
- ws: 7.5.9
+ tsconfig-paths: 4.2.0
+ typescript: 5.6.3
+ ws: 7.5.10
transitivePeerDependencies:
- '@types/node'
+ - babel-plugin-macros
- bluebird
- bufferutil
- - encoding
- less
- lightningcss
- sass
+ - sass-embedded
- stylus
- sugarss
- supports-color
@@ -4815,10 +4177,10 @@ packages:
- utf-8-validate
dev: true
- /@remix-run/eslint-config@2.0.1(eslint@8.43.0)(react@18.2.0)(typescript@5.2.2):
+ /@remix-run/eslint-config@2.5.0(eslint@8.56.0)(react@18.2.0)(typescript@5.6.3):
resolution:
{
- integrity: sha512-XIKnID45O60Vtegsib2qJOVYBCq2VRn+3qaEAX1NtgcQDI1xD7o3k1k3MCdQqaGD9/XmcbJumkmuAIX3Ti6/mA==,
+ integrity: sha512-vTWMWE/7zWLWiPQianWXKrhmyG1kTXfwx9dkBVlj9Xg4WIHe/IcuxrRMgNmjwRpTjNv/sVO9pu83oeYm3v9NRg==,
}
engines: { node: '>=18.0.0' }
peerDependencies:
@@ -4829,32 +4191,33 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.23.0
- '@babel/eslint-parser': 7.22.15(@babel/core@7.23.0)(eslint@8.43.0)
- '@babel/preset-react': 7.22.15(@babel/core@7.23.0)
- '@rushstack/eslint-patch': 1.5.1
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.43.0)(typescript@5.2.2)
- '@typescript-eslint/parser': 5.62.0(eslint@8.43.0)(typescript@5.2.2)
- eslint: 8.43.0
+ '@babel/core': 7.26.0
+ '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.56.0)
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
+ '@rushstack/eslint-patch': 1.10.4
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.6.3)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.6.3)
+ eslint: 8.56.0
eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.28.1)(eslint@8.43.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- eslint-plugin-jest: 26.9.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.43.0)(typescript@5.2.2)
- eslint-plugin-jest-dom: 4.0.3(eslint@8.43.0)
- eslint-plugin-jsx-a11y: 6.7.1(eslint@8.43.0)
- eslint-plugin-node: 11.1.0(eslint@8.43.0)
- eslint-plugin-react: 7.33.2(eslint@8.43.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.43.0)
- eslint-plugin-testing-library: 5.11.1(eslint@8.43.0)(typescript@5.2.2)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.31.0)(eslint@8.56.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0)
+ eslint-plugin-jest: 26.9.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.56.0)(typescript@5.6.3)
+ eslint-plugin-jest-dom: 4.0.3(eslint@8.56.0)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@8.56.0)
+ eslint-plugin-node: 11.1.0(eslint@8.56.0)
+ eslint-plugin-react: 7.37.2(eslint@8.56.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0)
+ eslint-plugin-testing-library: 5.11.1(eslint@8.56.0)(typescript@5.6.3)
react: 18.2.0
- typescript: 5.2.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
+ - eslint-plugin-import-x
- jest
- supports-color
dev: true
- /@remix-run/express@2.5.0(express@4.18.2)(typescript@5.2.2):
+ /@remix-run/express@2.5.0(express@4.21.1)(typescript@5.6.3):
resolution:
{
integrity: sha512-cIwy6Gi2T9nmsov8K/DL4bR9FkMVzxhxkwlcth6T9GfUn+VTQh7eux6w30/RwWXUcpb8YTWbfM0W+GKyOHQgvw==,
@@ -4867,11 +4230,11 @@ packages:
typescript:
optional: true
dependencies:
- '@remix-run/node': 2.5.0(typescript@5.2.2)
- express: 4.18.2
- typescript: 5.2.2
+ '@remix-run/node': 2.5.0(typescript@5.6.3)
+ express: 4.21.1
+ typescript: 5.6.3
- /@remix-run/node@2.5.0(typescript@5.2.2):
+ /@remix-run/node@2.5.0(typescript@5.6.3):
resolution:
{
integrity: sha512-TTW4U+GnreqSf08Muz9jOJ5h5jPAPZ+UnwjLrq2O22dNyXrEzz2zecOddQ0H9Uk4ALS0HIu5206nK0pGW0Vdsg==,
@@ -4883,17 +4246,17 @@ packages:
typescript:
optional: true
dependencies:
- '@remix-run/server-runtime': 2.5.0(typescript@5.2.2)
+ '@remix-run/server-runtime': 2.5.0(typescript@5.6.3)
'@remix-run/web-fetch': 4.4.2
'@remix-run/web-file': 3.1.0
'@remix-run/web-stream': 1.1.0
'@web3-storage/multipart-parser': 1.0.0
- cookie-signature: 1.2.1
+ cookie-signature: 1.2.2
source-map-support: 0.5.21
stream-slice: 0.1.2
- typescript: 5.2.2
+ typescript: 5.6.3
- /@remix-run/react@2.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
+ /@remix-run/react@2.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.6.3):
resolution:
{
integrity: sha512-CHClKLyUmTAUzDVIOFifRYJ4Lw/LMUQgtFq1grjRDyYRWXIAwxhoZx6BTzcseFUbOwbHGDZ37QCh2e7LFNtRHQ==,
@@ -4908,12 +4271,12 @@ packages:
optional: true
dependencies:
'@remix-run/router': 1.14.2
- '@remix-run/server-runtime': 2.5.0(typescript@5.2.2)
+ '@remix-run/server-runtime': 2.5.0(typescript@5.6.3)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-router: 6.21.2(react@18.2.0)
react-router-dom: 6.21.2(react-dom@18.2.0)(react@18.2.0)
- typescript: 5.2.2
+ typescript: 5.6.3
dev: false
/@remix-run/router@1.14.2:
@@ -4923,15 +4286,7 @@ packages:
}
engines: { node: '>=14.0.0' }
- /@remix-run/router@1.9.0:
- resolution:
- {
- integrity: sha512-bV63itrKBC0zdT27qYm6SDZHlkXwFL1xMBuhkn+X7l0+IIhNaH5wuuvZKp6eKhCD4KFhujhfhCT1YxXW6esUIA==,
- }
- engines: { node: '>=14.0.0' }
- dev: true
-
- /@remix-run/serve@2.5.0(typescript@5.2.2):
+ /@remix-run/serve@2.5.0(typescript@5.6.3):
resolution:
{
integrity: sha512-wrcYJQV8Jbx/8GM62GCLGWghuSZFQwL0RvkZOI2+zVV1lqGXYYJYWAR7JrjLF5GpMsYdfCFi3H9+Go9lpw3+cQ==,
@@ -4939,11 +4294,11 @@ packages:
engines: { node: '>=18.0.0' }
hasBin: true
dependencies:
- '@remix-run/express': 2.5.0(express@4.18.2)(typescript@5.2.2)
- '@remix-run/node': 2.5.0(typescript@5.2.2)
- chokidar: 3.5.3
- compression: 1.7.4
- express: 4.18.2
+ '@remix-run/express': 2.5.0(express@4.21.1)(typescript@5.6.3)
+ '@remix-run/node': 2.5.0(typescript@5.6.3)
+ chokidar: 3.6.0
+ compression: 1.7.5
+ express: 4.21.1
get-port: 5.1.1
morgan: 1.10.0
source-map-support: 0.5.21
@@ -4951,29 +4306,7 @@ packages:
- supports-color
- typescript
- /@remix-run/server-runtime@2.0.1(typescript@5.2.2):
- resolution:
- {
- integrity: sha512-xCW2aw9EILx7F3orEHN2fcpEkNzZTRU8VzP7gS9pmHP45qteFqsY5Qg2/dnF17royWmeeBNhnXaJOgb76W1KEA==,
- }
- engines: { node: '>=18.0.0' }
- peerDependencies:
- typescript: ^5.1.0
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@remix-run/router': 1.9.0
- '@types/cookie': 0.4.1
- '@web3-storage/multipart-parser': 1.0.0
- cookie: 0.4.2
- set-cookie-parser: 2.7.1
- source-map: 0.7.4
- type-fest: 4.4.0
- typescript: 5.2.2
- dev: true
-
- /@remix-run/server-runtime@2.5.0(typescript@5.2.2):
+ /@remix-run/server-runtime@2.5.0(typescript@5.6.3):
resolution:
{
integrity: sha512-Lf/cflOOmx+IAZ1Kd3vKTFhXOS5cUbc2E8pjBE+5xF/1aHI+3NhqqS/haimZ+LaPa4GP8D+0lE6t2Q+2bXJXmg==,
@@ -4989,9 +4322,9 @@ packages:
'@types/cookie': 0.6.0
'@web3-storage/multipart-parser': 1.0.0
cookie: 0.6.0
- set-cookie-parser: 2.6.0
+ set-cookie-parser: 2.7.1
source-map: 0.7.4
- typescript: 5.2.2
+ typescript: 5.6.3
/@remix-run/web-blob@3.1.0:
resolution:
@@ -5040,7 +4373,7 @@ packages:
integrity: sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==,
}
dependencies:
- web-streams-polyfill: 3.2.1
+ web-streams-polyfill: 3.3.3
/@rollup/plugin-alias@5.1.1(rollup@4.24.4):
resolution:
@@ -5129,7 +4462,7 @@ packages:
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
- resolve: 1.22.6
+ resolve: 1.22.8
rollup: 4.24.4
dev: false
@@ -5390,19 +4723,57 @@ packages:
}
dev: true
- /@rushstack/eslint-patch@1.5.1:
+ /@shikijs/core@1.22.2:
resolution:
{
- integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==,
+ integrity: sha512-bvIQcd8BEeR1yFvOYv6HDiyta2FFVePbzeowf5pPS1avczrPK+cjmaxxh0nx5QzbON7+Sv0sQfQVciO7bN72sg==,
}
- dev: true
+ dependencies:
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+ hast-util-to-html: 9.0.3
+ dev: false
- /@sinclair/typebox@0.25.24:
+ /@shikijs/engine-javascript@1.22.2:
resolution:
{
- integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==,
+ integrity: sha512-iOvql09ql6m+3d1vtvP8fLCVCK7BQD1pJFmHIECsujB0V32BJ0Ab6hxk1ewVSMFA58FI0pR2Had9BKZdyQrxTw==,
}
- dev: true
+ dependencies:
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+ oniguruma-to-js: 0.4.3
+ dev: false
+
+ /@shikijs/engine-oniguruma@1.22.2:
+ resolution:
+ {
+ integrity: sha512-GIZPAGzQOy56mGvWMoZRPggn0dTlBf1gutV5TdceLCZlFNqWmuc7u+CzD0Gd9vQUTgLbrt0KLzz6FNprqYAxlA==,
+ }
+ dependencies:
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+ dev: false
+
+ /@shikijs/types@1.22.2:
+ resolution:
+ {
+ integrity: sha512-NCWDa6LGZqTuzjsGfXOBWfjS/fDIbDdmVDug+7ykVe1IKT4c1gakrvlfFYp5NhAXH/lyqLM8wsAPo5wNy73Feg==,
+ }
+ dependencies:
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+ dev: false
+
+ /@shikijs/vscode-textmate@9.3.0:
+ resolution:
+ {
+ integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==,
+ }
+ dev: false
/@sinclair/typebox@0.27.8:
resolution:
@@ -5419,10 +4790,10 @@ packages:
engines: { node: '>=18' }
dev: false
- /@sinonjs/commons@3.0.0:
+ /@sinonjs/commons@3.0.1:
resolution:
{
- integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==,
+ integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==,
}
dependencies:
type-detect: 4.0.8
@@ -5434,7 +4805,7 @@ packages:
integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==,
}
dependencies:
- '@sinonjs/commons': 3.0.0
+ '@sinonjs/commons': 3.0.1
dev: true
/@sveltejs/adapter-vercel@5.4.6(@sveltejs/kit@2.7.5):
@@ -5445,46 +4816,15 @@ packages:
peerDependencies:
'@sveltejs/kit': ^2.4.0
dependencies:
- '@sveltejs/kit': 2.7.5(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.9)(vite@5.4.10)
- '@vercel/nft': 0.27.5
+ '@sveltejs/kit': 2.7.5(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.10)(vite@5.4.10)
+ '@vercel/nft': 0.27.6
esbuild: 0.21.5
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /@sveltejs/kit@1.0.0(svelte@5.0.0)(vite@4.5.5):
- resolution:
- {
- integrity: sha512-6VgD5C3i2XOT7GRBi5LaPPLiFAmpiDkhKJNVt8fLg1RmaL6f7rT4Kiwi2XGpYRj3V1F4t1QRdsfmAkkDUKY3OA==,
- }
- engines: { node: '>=16.14' }
- hasBin: true
- requiresBuild: true
- peerDependencies:
- svelte: ^3.54.0
- vite: ^4.0.0
- dependencies:
- '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@5.0.0)(vite@4.5.5)
- '@types/cookie': 0.5.4
- cookie: 0.5.0
- devalue: 4.3.3
- esm-env: 1.1.4
- kleur: 4.1.5
- magic-string: 0.27.0
- mime: 3.0.0
- sade: 1.8.1
- set-cookie-parser: 2.6.0
- sirv: 2.0.4
- svelte: 5.0.0
- tiny-glob: 0.2.9
- undici: 5.14.0
- vite: 4.5.5(@types/node@20.3.1)
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@sveltejs/kit@2.7.5(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.9)(vite@5.4.10):
+ /@sveltejs/kit@2.7.5(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.10)(vite@5.4.10):
resolution:
{
integrity: sha512-8WIrVch2Ze2Rq3eIMPTqIIRFPM2zGQcGKHim2z43KVRdgdtYWBugAQ7nemH9ATnzlvbgztk6hwhEZOi8A8ZOPg==,
@@ -5497,7 +4837,7 @@ packages:
svelte: ^4.0.0 || ^5.0.0-next.0
vite: ^5.0.3
dependencies:
- '@sveltejs/vite-plugin-svelte': 4.0.0(svelte@5.1.9)(vite@5.4.10)
+ '@sveltejs/vite-plugin-svelte': 4.0.0(svelte@5.1.10)(vite@5.4.10)
'@types/cookie': 0.6.0
cookie: 0.6.0
devalue: 5.1.1
@@ -5509,31 +4849,11 @@ packages:
sade: 1.8.1
set-cookie-parser: 2.7.1
sirv: 3.0.0
- svelte: 5.1.9
+ svelte: 5.1.10
tiny-glob: 0.2.9
- vite: 5.4.10
- dev: true
-
- /@sveltejs/vite-plugin-svelte-inspector@1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@5.0.0)(vite@4.5.5):
- resolution:
- {
- integrity: sha512-zjiuZ3yydBtwpF3bj0kQNV0YXe+iKE545QGZVTaylW3eAzFr+pJ/cwK8lZEaRp4JtaJXhD5DyWAV4AxLh6DgaQ==,
- }
- engines: { node: ^14.18.0 || >= 16 }
- peerDependencies:
- '@sveltejs/vite-plugin-svelte': ^2.2.0
- svelte: ^3.54.0 || ^4.0.0
- vite: ^4.0.0
- dependencies:
- '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@5.0.0)(vite@4.5.5)
- debug: 4.3.7(supports-color@9.4.0)
- svelte: 5.0.0
- vite: 4.5.5(@types/node@20.3.1)
- transitivePeerDependencies:
- - supports-color
- dev: false
+ vite: 5.4.10(@types/node@20.17.6)
- /@sveltejs/vite-plugin-svelte-inspector@3.0.1(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.9)(vite@5.4.10):
+ /@sveltejs/vite-plugin-svelte-inspector@3.0.1(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.10)(vite@5.4.10):
resolution:
{
integrity: sha512-2CKypmj1sM4GE7HjllT7UKmo4Q6L5xFRd7VMGEWhYnZ+wc6AUVU01IBd7yUi6WnFndEwWoMNOd6e8UjoN0nbvQ==,
@@ -5544,38 +4864,14 @@ packages:
svelte: ^5.0.0-next.96 || ^5.0.0
vite: ^5.0.0
dependencies:
- '@sveltejs/vite-plugin-svelte': 4.0.0(svelte@5.1.9)(vite@5.4.10)
- debug: 4.3.7(supports-color@9.4.0)
- svelte: 5.1.9
- vite: 5.4.10
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@sveltejs/vite-plugin-svelte@2.5.3(svelte@5.0.0)(vite@4.5.5):
- resolution:
- {
- integrity: sha512-erhNtXxE5/6xGZz/M9eXsmI7Pxa6MS7jyTy06zN3Ck++ldrppOnOlJwHHTsMC7DHDQdgUp4NAc4cDNQ9eGdB/w==,
- }
- engines: { node: ^14.18.0 || >= 16 }
- peerDependencies:
- svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-next.0
- vite: ^4.0.0
- dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@5.0.0)(vite@4.5.5)
+ '@sveltejs/vite-plugin-svelte': 4.0.0(svelte@5.1.10)(vite@5.4.10)
debug: 4.3.7(supports-color@9.4.0)
- deepmerge: 4.3.1
- kleur: 4.1.5
- magic-string: 0.30.12
- svelte: 5.0.0
- svelte-hmr: 0.15.3(svelte@5.0.0)
- vite: 4.5.5(@types/node@20.3.1)
- vitefu: 0.2.5(vite@4.5.5)
+ svelte: 5.1.10
+ vite: 5.4.10(@types/node@20.17.6)
transitivePeerDependencies:
- supports-color
- dev: false
- /@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.9)(vite@5.4.10):
+ /@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.10)(vite@5.4.10):
resolution:
{
integrity: sha512-kpVJwF+gNiMEsoHaw+FJL76IYiwBikkxYU83+BpqQLdVMff19KeRKLd2wisS8niNBMJ2omv5gG+iGDDwd8jzag==,
@@ -5585,29 +4881,16 @@ packages:
svelte: ^5.0.0-next.96 || ^5.0.0
vite: ^5.0.0
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 3.0.1(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.9)(vite@5.4.10)
+ '@sveltejs/vite-plugin-svelte-inspector': 3.0.1(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.10)(vite@5.4.10)
debug: 4.3.7(supports-color@9.4.0)
deepmerge: 4.3.1
kleur: 4.1.5
magic-string: 0.30.12
- svelte: 5.1.9
- vite: 5.4.10
+ svelte: 5.1.10
+ vite: 5.4.10(@types/node@20.17.6)
vitefu: 1.0.3(vite@5.4.10)
transitivePeerDependencies:
- supports-color
- dev: true
-
- /@swc/core-darwin-arm64@1.3.66:
- resolution:
- {
- integrity: sha512-UijJsvuLy73vxeVYEy7urIHksXS+3BdvJ9s9AY+bRMSQW483NO7RLp8g4FdTyJbRaN0BH15SQnY0dcjQBkVuHw==,
- }
- engines: { node: '>=10' }
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
/@swc/core-darwin-arm64@1.8.0:
resolution:
@@ -5621,18 +4904,6 @@ packages:
dev: true
optional: true
- /@swc/core-darwin-x64@1.3.66:
- resolution:
- {
- integrity: sha512-xGsHKvViQnwTNLF30Y/5OqWdnN6RsiyUI8awZXfz1sHcXCEaLe+v+WLQ+/E8sgw0YUkYVHzzfV/sAN2CezJK5Q==,
- }
- engines: { node: '>=10' }
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@swc/core-darwin-x64@1.8.0:
resolution:
{
@@ -5645,18 +4916,6 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.3.66:
- resolution:
- {
- integrity: sha512-gNbLcSIV2pq90BkMSpzvK4xPXOl8GEF3YR4NaqF0CYSzQsVXXTTqMuX/r26xNYudBKzH0345S1MpoRk2qricnA==,
- }
- engines: { node: '>=10' }
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@swc/core-linux-arm-gnueabihf@1.8.0:
resolution:
{
@@ -5669,18 +4928,6 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-gnu@1.3.66:
- resolution:
- {
- integrity: sha512-cJSQ0oplyWbJqy4rzVcnBYLAi6z1QT3QCcR7iAey0aAmCvfRBZJfXlyjggMjn4iosuadkauwCZR1xYNhBDRn7w==,
- }
- engines: { node: '>=10' }
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@swc/core-linux-arm64-gnu@1.8.0:
resolution:
{
@@ -5693,18 +4940,6 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-musl@1.3.66:
- resolution:
- {
- integrity: sha512-GDQZpcB9aGxG9PTA2shdIkoMZlGK5omJ8NR49uoBTtLBVYiGeXAwV0U1Uaw8kXEZj9i7wZDkvjzjSaNH3evRsg==,
- }
- engines: { node: '>=10' }
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@swc/core-linux-arm64-musl@1.8.0:
resolution:
{
@@ -5717,18 +4952,6 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-gnu@1.3.66:
- resolution:
- {
- integrity: sha512-lg8E4O/Pd9KfK0lajdinVMuGME8dSv7V9arhEpmlfGE2eXSDCWqDn5Htk5QVBstt9lt1lsRhWHJ/YYc2eQY30Q==,
- }
- engines: { node: '>=10' }
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@swc/core-linux-x64-gnu@1.8.0:
resolution:
{
@@ -5741,85 +4964,37 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-musl@1.3.66:
- resolution:
- {
- integrity: sha512-lo8ZcAO/zL2pZWH+LZIyge8u2MklaeuT6+FpVVpBFktMVdYXbaVtzpvWbgRFBZHvL3SRDF+u8jxjtkXhvGUpTw==,
- }
- engines: { node: '>=10' }
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@swc/core-linux-x64-musl@1.8.0:
resolution:
{
integrity: sha512-qemJnAQlYqKCfWNqVv5SG8uGvw8JotwU86cuFUkq35oTB+dsSFM3b83+B1giGTKKFOh2nfWT7bvPXTKk+aUjew==,
}
- engines: { node: '>=10' }
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@swc/core-win32-arm64-msvc@1.3.66:
- resolution:
- {
- integrity: sha512-cQoVwBuJY5WkHbfpCOlndNwYr1ZThatRjQQvKy540NUIeAEk9Fa6ozlDBtU75UdaWKtUG6YQ/bWz+KTemheVxw==,
- }
- engines: { node: '>=10' }
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /@swc/core-win32-arm64-msvc@1.8.0:
- resolution:
- {
- integrity: sha512-fXt5vZbnrVdXZzGj2qRnZtY3uh+NtLCaFjS2uD9w8ssdbjhbDZYlJCj2JINOjv35ttEfAD2goiYmVa5P/Ypl+g==,
- }
- engines: { node: '>=10' }
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /@swc/core-win32-ia32-msvc@1.3.66:
- resolution:
- {
- integrity: sha512-y/FrAIINK4UBeUQQknGlWXEyjo+MBvjF7WkUf2KP7sNr9EHHy8+dXohAGd5Anz0eJrqOM1ZXR/GEjxRp7bGQ1Q==,
- }
- engines: { node: '>=10' }
- cpu: [ia32]
- os: [win32]
+ engines: { node: '>=10' }
+ cpu: [x64]
+ os: [linux]
requiresBuild: true
dev: true
optional: true
- /@swc/core-win32-ia32-msvc@1.8.0:
+ /@swc/core-win32-arm64-msvc@1.8.0:
resolution:
{
- integrity: sha512-W4FA2vSJ+bGYiTj6gspxghSdKQNLfLMo65AH07u797x7I+YJj8amnFY/fQRlroDv5Dez/FHTv14oPlTlNFUpIw==,
+ integrity: sha512-fXt5vZbnrVdXZzGj2qRnZtY3uh+NtLCaFjS2uD9w8ssdbjhbDZYlJCj2JINOjv35ttEfAD2goiYmVa5P/Ypl+g==,
}
engines: { node: '>=10' }
- cpu: [ia32]
+ cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /@swc/core-win32-x64-msvc@1.3.66:
+ /@swc/core-win32-ia32-msvc@1.8.0:
resolution:
{
- integrity: sha512-yI64ACzS14qFLrfyO12qW+f/UROTotzDeEbuyJAaPD2IZexoT1cICznI3sBmIfrSt33mVuW8eF5m3AG/NUImzw==,
+ integrity: sha512-W4FA2vSJ+bGYiTj6gspxghSdKQNLfLMo65AH07u797x7I+YJj8amnFY/fQRlroDv5Dez/FHTv14oPlTlNFUpIw==,
}
engines: { node: '>=10' }
- cpu: [x64]
+ cpu: [ia32]
os: [win32]
requiresBuild: true
dev: true
@@ -5837,31 +5012,6 @@ packages:
dev: true
optional: true
- /@swc/core@1.3.66:
- resolution:
- {
- integrity: sha512-Hpf91kH5ly7fHkWnApwryTQryT+TO4kMMPH3WyciUSQOWLE3UuQz1PtETHQQk7PZ/b1QF0qQurJrgfBr5bSKUA==,
- }
- engines: { node: '>=10' }
- requiresBuild: true
- peerDependencies:
- '@swc/helpers': ^0.5.0
- peerDependenciesMeta:
- '@swc/helpers':
- optional: true
- optionalDependencies:
- '@swc/core-darwin-arm64': 1.3.66
- '@swc/core-darwin-x64': 1.3.66
- '@swc/core-linux-arm-gnueabihf': 1.3.66
- '@swc/core-linux-arm64-gnu': 1.3.66
- '@swc/core-linux-arm64-musl': 1.3.66
- '@swc/core-linux-x64-gnu': 1.3.66
- '@swc/core-linux-x64-musl': 1.3.66
- '@swc/core-win32-arm64-msvc': 1.3.66
- '@swc/core-win32-ia32-msvc': 1.3.66
- '@swc/core-win32-x64-msvc': 1.3.66
- dev: true
-
/@swc/core@1.8.0:
resolution:
{
@@ -5902,7 +5052,7 @@ packages:
integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==,
}
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
dev: false
/@swc/helpers@0.5.2:
@@ -5911,44 +5061,48 @@ packages:
integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==,
}
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
dev: false
- /@swc/jest@0.2.26(@swc/core@1.3.66):
+ /@swc/jest@0.2.37(@swc/core@1.8.0):
resolution:
{
- integrity: sha512-7lAi7q7ShTO3E5Gt1Xqf3pIhRbERxR1DUxvtVa9WKzIB+HGQ7wZP5sYx86zqnaEoKKGhmOoZ7gyW0IRu8Br5+A==,
+ integrity: sha512-CR2BHhmXKGxTiFr21DYPRHQunLkX3mNIFGFkxBGji6r9uyIR5zftTOVYj1e0sFNMV2H7mf/+vpaglqaryBtqfQ==,
}
engines: { npm: '>= 7.0.0' }
peerDependencies:
'@swc/core': '*'
dependencies:
- '@jest/create-cache-key-function': 27.5.1
- '@swc/core': 1.3.66
- jsonc-parser: 3.2.0
+ '@jest/create-cache-key-function': 29.7.0
+ '@swc/core': 1.8.0
+ '@swc/counter': 0.1.3
+ jsonc-parser: 3.3.1
dev: true
- /@swc/jest@0.2.26(@swc/core@1.8.0):
+ /@swc/types@0.1.14:
resolution:
{
- integrity: sha512-7lAi7q7ShTO3E5Gt1Xqf3pIhRbERxR1DUxvtVa9WKzIB+HGQ7wZP5sYx86zqnaEoKKGhmOoZ7gyW0IRu8Br5+A==,
+ integrity: sha512-PbSmTiYCN+GMrvfjrMo9bdY+f2COnwbdnoMw7rqU/PI5jXpKjxOGZ0qqZCImxnT81NkNsKnmEpvu+hRXLBeCJg==,
}
- engines: { npm: '>= 7.0.0' }
- peerDependencies:
- '@swc/core': '*'
dependencies:
- '@jest/create-cache-key-function': 27.5.1
- '@swc/core': 1.8.0
- jsonc-parser: 3.2.0
+ '@swc/counter': 0.1.3
dev: true
- /@swc/types@0.1.14:
+ /@testing-library/dom@10.4.0:
resolution:
{
- integrity: sha512-PbSmTiYCN+GMrvfjrMo9bdY+f2COnwbdnoMw7rqU/PI5jXpKjxOGZ0qqZCImxnT81NkNsKnmEpvu+hRXLBeCJg==,
+ integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==,
}
+ engines: { node: '>=18' }
dependencies:
- '@swc/counter': 0.1.3
+ '@babel/code-frame': 7.26.2
+ '@babel/runtime': 7.26.0
+ '@types/aria-query': 5.0.4
+ aria-query: 5.3.0
+ chalk: 4.1.2
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ pretty-format: 27.5.1
dev: true
/@testing-library/dom@8.20.1:
@@ -5958,29 +5112,29 @@ packages:
}
engines: { node: '>=12' }
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/runtime': 7.23.1
- '@types/aria-query': 5.0.1
+ '@babel/code-frame': 7.26.2
+ '@babel/runtime': 7.26.0
+ '@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
- dom-accessibility-api: 0.5.14
+ dom-accessibility-api: 0.5.16
lz-string: 1.5.0
pretty-format: 27.5.1
dev: true
- /@testing-library/dom@9.3.1:
+ /@testing-library/dom@9.3.4:
resolution:
{
- integrity: sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w==,
+ integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==,
}
engines: { node: '>=14' }
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/runtime': 7.23.1
- '@types/aria-query': 5.0.1
+ '@babel/code-frame': 7.26.2
+ '@babel/runtime': 7.26.0
+ '@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
- dom-accessibility-api: 0.5.14
+ dom-accessibility-api: 0.5.16
lz-string: 1.5.0
pretty-format: 27.5.1
dev: true
@@ -5992,46 +5146,29 @@ packages:
}
engines: { node: '>=8', npm: '>=6', yarn: '>=1' }
dependencies:
- '@adobe/css-tools': 4.0.1
- '@babel/runtime': 7.23.1
- '@types/testing-library__jest-dom': 5.14.6
- aria-query: 5.1.3
+ '@adobe/css-tools': 4.4.0
+ '@babel/runtime': 7.26.0
+ '@types/testing-library__jest-dom': 5.14.9
+ aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
- dom-accessibility-api: 0.5.14
+ dom-accessibility-api: 0.5.16
lodash: 4.17.21
redent: 3.0.0
dev: true
- /@testing-library/jest-dom@6.2.0(@jest/globals@29.7.0)(jest@29.7.0):
+ /@testing-library/jest-dom@6.6.3:
resolution:
{
- integrity: sha512-+BVQlJ9cmEn5RDMUS8c2+TU6giLvzaHZ8sU/x0Jj7fk+6/46wPdwlgOPcpxS17CjcanBi/3VmGMqVr2rmbUmNw==,
+ integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==,
}
engines: { node: '>=14', npm: '>=6', yarn: '>=1' }
- peerDependencies:
- '@jest/globals': '>= 28'
- '@types/jest': '>= 28'
- jest: '>= 28'
- vitest: '>= 0.32'
- peerDependenciesMeta:
- '@jest/globals':
- optional: true
- '@types/jest':
- optional: true
- jest:
- optional: true
- vitest:
- optional: true
dependencies:
'@adobe/css-tools': 4.4.0
- '@babel/runtime': 7.23.1
- '@jest/globals': 29.7.0
aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
- jest: 29.7.0(@types/node@20.3.1)(ts-node@10.9.2)
lodash: 4.17.21
redent: 3.0.0
dev: true
@@ -6046,26 +5183,34 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/runtime': 7.19.4
- '@testing-library/dom': 9.3.1
- '@types/react-dom': 18.0.9
+ '@babel/runtime': 7.26.0
+ '@testing-library/dom': 9.3.4
+ '@types/react-dom': 18.0.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@testing-library/react@14.1.2(react-dom@18.2.0)(react@18.2.0):
+ /@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react@18.3.12)(react-dom@18.2.0)(react@18.2.0):
resolution:
{
- integrity: sha512-z4p7DVBTPjKM5qDZ0t5ZjzkpSNb+fZy1u6bzO7kk8oeGagpPCAtgh4cx1syrfp7a+QWkM021jGqjJaxJJnXAZg==,
+ integrity: sha512-dSmwJVtJXmku+iocRhWOUFbrERC76TX2Mnf0ATODz8brzAZrMBbzLwQixlBSanZxR6LddK3eiwpSFZgDET1URg==,
}
- engines: { node: '>=14' }
+ engines: { node: '>=18' }
peerDependencies:
+ '@testing-library/dom': ^10.0.0
+ '@types/react': ^18.0.0
+ '@types/react-dom': ^18.0.0
react: ^18.0.0
react-dom: ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
dependencies:
- '@babel/runtime': 7.23.1
- '@testing-library/dom': 9.3.1
- '@types/react-dom': 18.3.1
+ '@babel/runtime': 7.26.0
+ '@testing-library/dom': 10.4.0
+ '@types/react': 18.3.12
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
@@ -6086,10 +5231,10 @@ packages:
engines: { node: '>=10.13.0' }
dev: false
- /@tsconfig/node10@1.0.9:
+ /@tsconfig/node10@1.0.11:
resolution:
{
- integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==,
+ integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==,
}
dev: true
@@ -6123,67 +5268,49 @@ packages:
'@types/estree': 1.0.6
dev: true
- /@types/aria-query@5.0.1:
+ /@types/aria-query@5.0.4:
resolution:
{
- integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==,
+ integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==,
}
dev: true
- /@types/babel__core@7.1.20:
+ /@types/babel__core@7.20.5:
resolution:
{
- integrity: sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==,
+ integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
}
dependencies:
'@babel/parser': 7.26.2
'@babel/types': 7.26.0
- '@types/babel__generator': 7.6.4
- '@types/babel__template': 7.4.1
- '@types/babel__traverse': 7.18.2
- dev: true
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.6
- /@types/babel__generator@7.6.4:
+ /@types/babel__generator@7.6.8:
resolution:
{
- integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==,
+ integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==,
}
dependencies:
'@babel/types': 7.26.0
- dev: true
- /@types/babel__template@7.4.1:
+ /@types/babel__template@7.4.4:
resolution:
{
- integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==,
+ integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
}
dependencies:
'@babel/parser': 7.26.2
'@babel/types': 7.26.0
- dev: true
- /@types/babel__traverse@7.18.2:
+ /@types/babel__traverse@7.20.6:
resolution:
{
- integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==,
+ integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==,
}
dependencies:
'@babel/types': 7.26.0
- dev: true
-
- /@types/cookie@0.4.1:
- resolution:
- {
- integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==,
- }
- dev: true
-
- /@types/cookie@0.5.4:
- resolution:
- {
- integrity: sha512-7z/eR6O859gyWIAjuvBWFzNURmf2oPBmJlfVWkwehU5nzIyjwBsTh7WMmEEV4JFnHuQ3ex4oyTvfKzcyJVDBNA==,
- }
- dev: false
/@types/cookie@0.6.0:
resolution:
@@ -6191,64 +5318,55 @@ packages:
integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==,
}
- /@types/debug@4.1.9:
- resolution:
- {
- integrity: sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow==,
- }
- dependencies:
- '@types/ms': 0.7.32
- dev: true
-
- /@types/eslint@8.4.10:
+ /@types/debug@4.1.12:
resolution:
{
- integrity: sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==,
+ integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==,
}
dependencies:
- '@types/estree': 1.0.2
- '@types/json-schema': 7.0.13
- dev: true
+ '@types/ms': 0.7.34
- /@types/estree-jsx@1.0.1:
+ /@types/estree-jsx@1.0.5:
resolution:
{
- integrity: sha512-sHyakZlAezNFxmYRo0fopDZW+XvK6ipeZkkp5EAOLjdPfZp8VjZBJ67vSRI99RSCAoqXVmXOHS4fnWoxpuGQtQ==,
+ integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==,
}
dependencies:
'@types/estree': 1.0.6
dev: true
- /@types/estree@1.0.2:
+ /@types/estree@1.0.6:
resolution:
{
- integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==,
+ integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==,
}
- dev: true
- /@types/estree@1.0.6:
+ /@types/graceful-fs@4.1.9:
resolution:
{
- integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==,
+ integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==,
}
+ dependencies:
+ '@types/node': 20.17.6
+ dev: true
- /@types/graceful-fs@4.1.5:
+ /@types/hast@2.3.10:
resolution:
{
- integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==,
+ integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==,
}
dependencies:
- '@types/node': 20.3.1
+ '@types/unist': 2.0.11
dev: true
- /@types/hast@2.3.6:
+ /@types/hast@3.0.4:
resolution:
{
- integrity: sha512-47rJE80oqPmFdVDCD7IheXBrVdwuBgsYwoczFvKmwfo2Mzsnt+V9OONsYauFmICb6lQPpCuXYJWejBNs4pDJRg==,
+ integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==,
}
dependencies:
- '@types/unist': 2.0.8
- dev: true
+ '@types/unist': 3.0.3
+ dev: false
/@types/http-proxy@1.17.15:
resolution:
@@ -6256,32 +5374,32 @@ packages:
integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==,
}
dependencies:
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
dev: false
- /@types/istanbul-lib-coverage@2.0.4:
+ /@types/istanbul-lib-coverage@2.0.6:
resolution:
{
- integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==,
+ integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==,
}
dev: true
- /@types/istanbul-lib-report@3.0.0:
+ /@types/istanbul-lib-report@3.0.3:
resolution:
{
- integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==,
+ integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==,
}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-lib-coverage': 2.0.6
dev: true
- /@types/istanbul-reports@3.0.1:
+ /@types/istanbul-reports@3.0.4:
resolution:
{
- integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==,
+ integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==,
}
dependencies:
- '@types/istanbul-lib-report': 3.0.0
+ '@types/istanbul-lib-report': 3.0.3
dev: true
/@types/jest@29.5.2:
@@ -6290,8 +5408,8 @@ packages:
integrity: sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==,
}
dependencies:
- expect: 29.3.1
- pretty-format: 29.3.1
+ expect: 29.7.0
+ pretty-format: 29.7.0
dev: true
/@types/jsdom@20.0.1:
@@ -6300,22 +5418,15 @@ packages:
integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==,
}
dependencies:
- '@types/node': 20.3.1
- '@types/tough-cookie': 4.0.2
- parse5: 7.1.2
- dev: true
-
- /@types/json-schema@7.0.11:
- resolution:
- {
- integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==,
- }
+ '@types/node': 20.17.6
+ '@types/tough-cookie': 4.0.5
+ parse5: 7.2.1
dev: true
- /@types/json-schema@7.0.13:
+ /@types/json-schema@7.0.15:
resolution:
{
- integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==,
+ integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==,
}
dev: true
@@ -6326,92 +5437,77 @@ packages:
}
dev: true
- /@types/mdast@3.0.13:
+ /@types/mdast@3.0.15:
resolution:
{
- integrity: sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==,
+ integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==,
}
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
dev: true
- /@types/mdx@2.0.8:
+ /@types/mdast@4.0.4:
resolution:
{
- integrity: sha512-r7/zWe+f9x+zjXqGxf821qz++ld8tp6Z4jUS6qmPZUXH6tfh4riXOhAqb12tWGWAevCFtMt1goLWkQMqIJKpsA==,
+ integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==,
}
- dev: true
-
- /@types/ms@0.7.32:
- resolution:
- {
- integrity: sha512-xPSg0jm4mqgEkNhowKgZFBNtwoEwF6gJ4Dhww+GFpm3IgtNseHQZ5IqdNwnquZEoANxyDAKDRAdVo4Z72VvD/g==,
- }
- dev: true
+ dependencies:
+ '@types/unist': 3.0.3
+ dev: false
- /@types/node@18.11.9:
+ /@types/mdx@2.0.13:
resolution:
{
- integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==,
+ integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==,
}
dev: true
- /@types/node@20.3.1:
+ /@types/ms@0.7.34:
resolution:
{
- integrity: sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==,
+ integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==,
}
- /@types/normalize-package-data@2.4.1:
+ /@types/nlcst@1.0.4:
resolution:
{
- integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==,
+ integrity: sha512-ABoYdNQ/kBSsLvZAekMhIPMQ3YUZvavStpKYs7BjLLuKVmIMA0LUgZ7b54zzuWJRbHF80v1cNf4r90Vd6eMQDg==,
}
- dev: true
+ dependencies:
+ '@types/unist': 2.0.11
+ dev: false
- /@types/prop-types@15.7.13:
+ /@types/node@20.17.6:
resolution:
{
- integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==,
+ integrity: sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==,
}
- dev: true
+ dependencies:
+ undici-types: 6.19.8
- /@types/prop-types@15.7.5:
+ /@types/normalize-package-data@2.4.4:
resolution:
{
- integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==,
+ integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==,
}
dev: true
- /@types/react-dom@18.0.9:
+ /@types/prop-types@15.7.13:
resolution:
{
- integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==,
+ integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==,
}
- dependencies:
- '@types/react': 18.3.12
dev: true
- /@types/react-dom@18.3.1:
+ /@types/react-dom@18.0.8:
resolution:
{
- integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==,
+ integrity: sha512-C3GYO0HLaOkk9dDAz3Dl4sbe4AKUGTCfFIZsz3n/82dPNN8Du533HzKatDxeUYWu24wJgMP1xICqkWk1YOLOIw==,
}
dependencies:
'@types/react': 18.3.12
dev: true
- /@types/react@18.2.14:
- resolution:
- {
- integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==,
- }
- dependencies:
- '@types/prop-types': 15.7.5
- '@types/scheduler': 0.16.2
- csstype: 3.1.1
- dev: true
-
/@types/react@18.3.12:
resolution:
{
@@ -6429,83 +5525,66 @@ packages:
}
dev: false
- /@types/scheduler@0.16.2:
- resolution:
- {
- integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==,
- }
- dev: true
-
- /@types/semver@7.3.12:
- resolution:
- {
- integrity: sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==,
- }
- dev: true
-
- /@types/semver@7.5.3:
+ /@types/semver@7.5.8:
resolution:
{
- integrity: sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==,
+ integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==,
}
dev: true
- /@types/stack-utils@2.0.1:
+ /@types/stack-utils@2.0.3:
resolution:
{
- integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==,
+ integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==,
}
dev: true
- /@types/testing-library__jest-dom@5.14.6:
+ /@types/testing-library__jest-dom@5.14.9:
resolution:
{
- integrity: sha512-FkHXCb+ikSoUP4Y4rOslzTdX5sqYwMxfefKh1GmZ8ce1GOkEHntSp6b5cGadmNfp5e4BMEWOMx+WSKd5/MqlDA==,
+ integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==,
}
dependencies:
'@types/jest': 29.5.2
dev: true
- /@types/tough-cookie@4.0.2:
+ /@types/tough-cookie@4.0.5:
resolution:
{
- integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==,
+ integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==,
}
dev: true
- /@types/unist@2.0.8:
+ /@types/unist@2.0.11:
resolution:
{
- integrity: sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw==,
+ integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==,
}
- dev: true
- /@types/yargs-parser@21.0.0:
+ /@types/unist@3.0.3:
resolution:
{
- integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==,
+ integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==,
}
- dev: true
+ dev: false
- /@types/yargs@16.0.4:
+ /@types/yargs-parser@21.0.3:
resolution:
{
- integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==,
+ integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==,
}
- dependencies:
- '@types/yargs-parser': 21.0.0
dev: true
- /@types/yargs@17.0.14:
+ /@types/yargs@17.0.33:
resolution:
{
- integrity: sha512-9Pj7abXoW1RSTcZaL2Hk6G2XyLMlp5ECdVC/Zf2p/KBjC3srijLGgRAXOBjtFrJoIrvxdTKyKDA14bEcbxBaWw==,
+ integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==,
}
dependencies:
- '@types/yargs-parser': 21.0.0
+ '@types/yargs-parser': 21.0.3
dev: true
- /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.43.0)(typescript@5.2.2):
+ /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.6.3):
resolution:
{
integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==,
@@ -6519,27 +5598,27 @@ packages:
typescript:
optional: true
dependencies:
- '@eslint-community/regexpp': 4.9.1
- '@typescript-eslint/parser': 5.62.0(eslint@8.43.0)(typescript@5.2.2)
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.6.3)
'@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0(eslint@8.43.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 5.62.0(eslint@8.43.0)(typescript@5.2.2)
+ '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3)
debug: 4.3.7(supports-color@9.4.0)
- eslint: 8.43.0
+ eslint: 8.56.0
graphemer: 1.4.0
ignore: 5.3.2
natural-compare-lite: 1.4.0
semver: 7.6.3
- tsutils: 3.21.0(typescript@5.2.2)
- typescript: 5.2.2
+ tsutils: 3.21.0(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/eslint-plugin@6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.43.0)(typescript@5.1.3):
+ /@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.43.0)(typescript@5.1.3):
resolution:
{
- integrity: sha512-DAbgDXwtX+pDkAHwiGhqP3zWUGpW49B7eqmgpPtg+BKJXwdct79ut9+ifqOFPJGClGKSHXn2PTBatCnldJRUoA==,
+ integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
peerDependencies:
@@ -6550,28 +5629,28 @@ packages:
typescript:
optional: true
dependencies:
- '@eslint-community/regexpp': 4.5.1
- '@typescript-eslint/parser': 6.7.4(eslint@8.43.0)(typescript@5.1.3)
- '@typescript-eslint/scope-manager': 6.7.4
- '@typescript-eslint/type-utils': 6.7.4(eslint@8.43.0)(typescript@5.1.3)
- '@typescript-eslint/utils': 6.7.4(eslint@8.43.0)(typescript@5.1.3)
- '@typescript-eslint/visitor-keys': 6.7.4
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 6.21.0(eslint@8.43.0)(typescript@5.1.3)
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.43.0)(typescript@5.1.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.43.0)(typescript@5.1.3)
+ '@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.7(supports-color@9.4.0)
eslint: 8.43.0
graphemer: 1.4.0
- ignore: 5.2.4
+ ignore: 5.3.2
natural-compare: 1.4.0
semver: 7.6.3
- ts-api-utils: 1.0.3(typescript@5.1.3)
+ ts-api-utils: 1.4.0(typescript@5.1.3)
typescript: 5.1.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/eslint-plugin@6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.43.0)(typescript@5.2.2):
+ /@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
- integrity: sha512-DAbgDXwtX+pDkAHwiGhqP3zWUGpW49B7eqmgpPtg+BKJXwdct79ut9+ifqOFPJGClGKSHXn2PTBatCnldJRUoA==,
+ integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
peerDependencies:
@@ -6582,57 +5661,55 @@ packages:
typescript:
optional: true
dependencies:
- '@eslint-community/regexpp': 4.5.1
- '@typescript-eslint/parser': 6.7.4(eslint@8.43.0)(typescript@5.2.2)
- '@typescript-eslint/scope-manager': 6.7.4
- '@typescript-eslint/type-utils': 6.7.4(eslint@8.43.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 6.7.4(eslint@8.43.0)(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.7.4
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.7(supports-color@9.4.0)
- eslint: 8.43.0
+ eslint: 8.57.1
graphemer: 1.4.0
- ignore: 5.2.4
+ ignore: 5.3.2
natural-compare: 1.4.0
semver: 7.6.3
- ts-api-utils: 1.0.3(typescript@5.2.2)
- typescript: 5.2.2
+ ts-api-utils: 1.4.0(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/eslint-plugin@6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.57.1)(typescript@5.1.6):
+ /@typescript-eslint/eslint-plugin@8.13.0(@typescript-eslint/parser@8.13.0)(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
- integrity: sha512-DAbgDXwtX+pDkAHwiGhqP3zWUGpW49B7eqmgpPtg+BKJXwdct79ut9+ifqOFPJGClGKSHXn2PTBatCnldJRUoA==,
+ integrity: sha512-nQtBLiZYMUPkclSeC3id+x4uVd1SGtHuElTxL++SfP47jR0zfkZBJHc+gL4qPsgTuypz0k8Y2GheaDYn6Gy3rg==,
}
- engines: { node: ^16.0.0 || >=18.0.0 }
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
- '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
- eslint: ^7.0.0 || ^8.0.0
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@eslint-community/regexpp': 4.5.1
- '@typescript-eslint/parser': 6.7.4(eslint@8.57.1)(typescript@5.1.6)
- '@typescript-eslint/scope-manager': 6.7.4
- '@typescript-eslint/type-utils': 6.7.4(eslint@8.57.1)(typescript@5.1.6)
- '@typescript-eslint/utils': 6.7.4(eslint@8.57.1)(typescript@5.1.6)
- '@typescript-eslint/visitor-keys': 6.7.4
- debug: 4.3.4
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.13.0
+ '@typescript-eslint/type-utils': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.13.0
eslint: 8.57.1
graphemer: 1.4.0
- ignore: 5.2.4
+ ignore: 5.3.2
natural-compare: 1.4.0
- semver: 7.5.4
- ts-api-utils: 1.0.3(typescript@5.1.6)
- typescript: 5.1.6
+ ts-api-utils: 1.4.0(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser@5.62.0(eslint@8.43.0)(typescript@5.2.2):
+ /@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.6.3):
resolution:
{
integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==,
@@ -6647,18 +5724,18 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
debug: 4.3.7(supports-color@9.4.0)
- eslint: 8.43.0
- typescript: 5.2.2
+ eslint: 8.56.0
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser@6.7.4(eslint@8.43.0)(typescript@5.1.3):
+ /@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.1.3):
resolution:
{
- integrity: sha512-I5zVZFY+cw4IMZUeNCU7Sh2PO5O57F7Lr0uyhgCJmhN/BuTlnc55KxPonR4+EM3GBdfiCyGZye6DgMjtubQkmA==,
+ integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
peerDependencies:
@@ -6668,10 +5745,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.7.4
- '@typescript-eslint/types': 6.7.4
- '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.1.3)
- '@typescript-eslint/visitor-keys': 6.7.4
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.1.3)
+ '@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.7(supports-color@9.4.0)
eslint: 8.43.0
typescript: 5.1.3
@@ -6679,10 +5756,10 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser@6.7.4(eslint@8.43.0)(typescript@5.2.2):
+ /@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
- integrity: sha512-I5zVZFY+cw4IMZUeNCU7Sh2PO5O57F7Lr0uyhgCJmhN/BuTlnc55KxPonR4+EM3GBdfiCyGZye6DgMjtubQkmA==,
+ integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
peerDependencies:
@@ -6692,75 +5769,75 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.7.4
- '@typescript-eslint/types': 6.7.4
- '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.7.4
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.7(supports-color@9.4.0)
- eslint: 8.43.0
- typescript: 5.2.2
+ eslint: 8.57.1
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser@6.7.4(eslint@8.57.1)(typescript@5.1.6):
+ /@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
- integrity: sha512-I5zVZFY+cw4IMZUeNCU7Sh2PO5O57F7Lr0uyhgCJmhN/BuTlnc55KxPonR4+EM3GBdfiCyGZye6DgMjtubQkmA==,
+ integrity: sha512-w0xp+xGg8u/nONcGw1UXAr6cjCPU1w0XVyBs6Zqaj5eLmxkKQAByTdV/uGgNN5tVvN/kKpoQlP2cL7R+ajZZIQ==,
}
- engines: { node: ^16.0.0 || >=18.0.0 }
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
+ eslint: ^8.57.0 || ^9.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.7.4
- '@typescript-eslint/types': 6.7.4
- '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.1.6)
- '@typescript-eslint/visitor-keys': 6.7.4
- debug: 4.3.4
+ '@typescript-eslint/scope-manager': 8.13.0
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.13.0
+ debug: 4.3.7(supports-color@9.4.0)
eslint: 8.57.1
- typescript: 5.1.6
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager@5.40.1:
+ /@typescript-eslint/scope-manager@5.62.0:
resolution:
{
- integrity: sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg==,
+ integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
dependencies:
- '@typescript-eslint/types': 5.40.1
- '@typescript-eslint/visitor-keys': 5.40.1
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
dev: true
- /@typescript-eslint/scope-manager@5.62.0:
+ /@typescript-eslint/scope-manager@6.21.0:
resolution:
{
- integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==,
+ integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==,
}
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ engines: { node: ^16.0.0 || >=18.0.0 }
dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/visitor-keys': 6.21.0
dev: true
- /@typescript-eslint/scope-manager@6.7.4:
+ /@typescript-eslint/scope-manager@8.13.0:
resolution:
{
- integrity: sha512-SdGqSLUPTXAXi7c3Ob7peAGVnmMoGzZ361VswK2Mqf8UOYcODiYvs8rs5ILqEdfvX1lE7wEZbLyELCW+Yrql1A==,
+ integrity: sha512-XsGWww0odcUT0gJoBZ1DeulY1+jkaHUciUq4jKNv4cpInbvvrtDoyBH9rE/n2V29wQJPk8iCH1wipra9BhmiMA==,
}
- engines: { node: ^16.0.0 || >=18.0.0 }
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
dependencies:
- '@typescript-eslint/types': 6.7.4
- '@typescript-eslint/visitor-keys': 6.7.4
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/visitor-keys': 8.13.0
dev: true
- /@typescript-eslint/type-utils@5.62.0(eslint@8.43.0)(typescript@5.2.2):
+ /@typescript-eslint/type-utils@5.62.0(eslint@8.56.0)(typescript@5.6.3):
resolution:
{
integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==,
@@ -6773,20 +5850,20 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2)
- '@typescript-eslint/utils': 5.62.0(eslint@8.43.0)(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3)
debug: 4.3.7(supports-color@9.4.0)
- eslint: 8.43.0
- tsutils: 3.21.0(typescript@5.2.2)
- typescript: 5.2.2
+ eslint: 8.56.0
+ tsutils: 3.21.0(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/type-utils@6.7.4(eslint@8.43.0)(typescript@5.1.3):
+ /@typescript-eslint/type-utils@6.21.0(eslint@8.43.0)(typescript@5.1.3):
resolution:
{
- integrity: sha512-n+g3zi1QzpcAdHFP9KQF+rEFxMb2KxtnJGID3teA/nxKHOVi3ylKovaqEzGBbVY2pBttU6z85gp0D00ufLzViQ==,
+ integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
peerDependencies:
@@ -6796,20 +5873,20 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.1.3)
- '@typescript-eslint/utils': 6.7.4(eslint@8.43.0)(typescript@5.1.3)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.1.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.43.0)(typescript@5.1.3)
debug: 4.3.7(supports-color@9.4.0)
eslint: 8.43.0
- ts-api-utils: 1.0.3(typescript@5.1.3)
+ ts-api-utils: 1.4.0(typescript@5.1.3)
typescript: 5.1.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/type-utils@6.7.4(eslint@8.43.0)(typescript@5.2.2):
+ /@typescript-eslint/type-utils@6.21.0(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
- integrity: sha512-n+g3zi1QzpcAdHFP9KQF+rEFxMb2KxtnJGID3teA/nxKHOVi3ylKovaqEzGBbVY2pBttU6z85gp0D00ufLzViQ==,
+ integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
peerDependencies:
@@ -6819,47 +5896,38 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.2.2)
- '@typescript-eslint/utils': 6.7.4(eslint@8.43.0)(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.6.3)
debug: 4.3.7(supports-color@9.4.0)
- eslint: 8.43.0
- ts-api-utils: 1.0.3(typescript@5.2.2)
- typescript: 5.2.2
+ eslint: 8.57.1
+ ts-api-utils: 1.4.0(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/type-utils@6.7.4(eslint@8.57.1)(typescript@5.1.6):
+ /@typescript-eslint/type-utils@8.13.0(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
- integrity: sha512-n+g3zi1QzpcAdHFP9KQF+rEFxMb2KxtnJGID3teA/nxKHOVi3ylKovaqEzGBbVY2pBttU6z85gp0D00ufLzViQ==,
+ integrity: sha512-Rqnn6xXTR316fP4D2pohZenJnp+NwQ1mo7/JM+J1LWZENSLkJI8ID8QNtlvFeb0HnFSK94D6q0cnMX6SbE5/vA==,
}
- engines: { node: ^16.0.0 || >=18.0.0 }
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.1.6)
- '@typescript-eslint/utils': 6.7.4(eslint@8.57.1)(typescript@5.1.6)
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
debug: 4.3.7(supports-color@9.4.0)
- eslint: 8.57.1
- ts-api-utils: 1.0.3(typescript@5.1.6)
- typescript: 5.1.6
+ ts-api-utils: 1.4.0(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
+ - eslint
- supports-color
dev: true
- /@typescript-eslint/types@5.40.1:
- resolution:
- {
- integrity: sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
- dev: true
-
/@typescript-eslint/types@5.62.0:
resolution:
{
@@ -6868,36 +5936,20 @@ packages:
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
dev: true
- /@typescript-eslint/types@6.7.4:
+ /@typescript-eslint/types@6.21.0:
resolution:
{
- integrity: sha512-o9XWK2FLW6eSS/0r/tgjAGsYasLAnOWg7hvZ/dGYSSNjCh+49k5ocPN8OmG5aZcSJ8pclSOyVKP2x03Sj+RrCA==,
+ integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
dev: true
- /@typescript-eslint/typescript-estree@5.40.1(typescript@5.1.3):
+ /@typescript-eslint/types@8.13.0:
resolution:
{
- integrity: sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA==,
+ integrity: sha512-4cyFErJetFLckcThRUFdReWJjVsPCqyBlJTi6IDEpc1GWCIIZRFxVppjWLIMcQhNGhdWJJRYFHpHoDWvMlDzng==,
}
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/types': 5.40.1
- '@typescript-eslint/visitor-keys': 5.40.1
- debug: 4.3.7(supports-color@9.4.0)
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.6.3
- tsutils: 3.21.0(typescript@5.1.3)
- typescript: 5.1.3
- transitivePeerDependencies:
- - supports-color
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
dev: true
/@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.3):
@@ -6924,31 +5976,7 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6):
- resolution:
- {
- integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.7(supports-color@9.4.0)
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.6.3
- tsutils: 3.21.0(typescript@5.1.6)
- typescript: 5.1.6
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2):
+ /@typescript-eslint/typescript-estree@5.62.0(typescript@5.6.3):
resolution:
{
integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==,
@@ -6966,16 +5994,16 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.6.3
- tsutils: 3.21.0(typescript@5.2.2)
- typescript: 5.2.2
+ tsutils: 3.21.0(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree@6.7.4(typescript@5.1.3):
+ /@typescript-eslint/typescript-estree@6.21.0(typescript@5.1.3):
resolution:
{
- integrity: sha512-ty8b5qHKatlNYd9vmpHooQz3Vki3gG+3PchmtsA4TgrZBKWHNjWfkQid7K7xQogBqqc7/BhGazxMD5vr6Ha+iQ==,
+ integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
peerDependencies:
@@ -6984,22 +6012,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.7.4
- '@typescript-eslint/visitor-keys': 6.7.4
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.7(supports-color@9.4.0)
globby: 11.1.0
is-glob: 4.0.3
+ minimatch: 9.0.3
semver: 7.6.3
- ts-api-utils: 1.0.3(typescript@5.1.3)
+ ts-api-utils: 1.4.0(typescript@5.1.3)
typescript: 5.1.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree@6.7.4(typescript@5.1.6):
+ /@typescript-eslint/typescript-estree@6.21.0(typescript@5.6.3):
resolution:
{
- integrity: sha512-ty8b5qHKatlNYd9vmpHooQz3Vki3gG+3PchmtsA4TgrZBKWHNjWfkQid7K7xQogBqqc7/BhGazxMD5vr6Ha+iQ==,
+ integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
peerDependencies:
@@ -7008,63 +6037,42 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.7.4
- '@typescript-eslint/visitor-keys': 6.7.4
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.7(supports-color@9.4.0)
globby: 11.1.0
is-glob: 4.0.3
+ minimatch: 9.0.3
semver: 7.6.3
- ts-api-utils: 1.0.3(typescript@5.1.6)
- typescript: 5.1.6
+ ts-api-utils: 1.4.0(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree@6.7.4(typescript@5.2.2):
+ /@typescript-eslint/typescript-estree@8.13.0(typescript@5.6.3):
resolution:
{
- integrity: sha512-ty8b5qHKatlNYd9vmpHooQz3Vki3gG+3PchmtsA4TgrZBKWHNjWfkQid7K7xQogBqqc7/BhGazxMD5vr6Ha+iQ==,
+ integrity: sha512-v7SCIGmVsRK2Cy/LTLGN22uea6SaUIlpBcO/gnMGT/7zPtxp90bphcGf4fyrCQl3ZtiBKqVTG32hb668oIYy1g==,
}
- engines: { node: ^16.0.0 || >=18.0.0 }
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.7.4
- '@typescript-eslint/visitor-keys': 6.7.4
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/visitor-keys': 8.13.0
debug: 4.3.7(supports-color@9.4.0)
- globby: 11.1.0
+ fast-glob: 3.3.2
is-glob: 4.0.3
+ minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.0.3(typescript@5.2.2)
- typescript: 5.2.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/utils@5.40.1(eslint@8.43.0)(typescript@5.1.3):
- resolution:
- {
- integrity: sha512-a2TAVScoX9fjryNrW6BZRnreDUszxqm9eQ9Esv8n5nXApMW0zeANUYlwh/DED04SC/ifuBvXgZpIK5xeJHQ3aw==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- '@types/json-schema': 7.0.11
- '@types/semver': 7.3.12
- '@typescript-eslint/scope-manager': 5.40.1
- '@typescript-eslint/types': 5.40.1
- '@typescript-eslint/typescript-estree': 5.40.1(typescript@5.1.3)
- eslint: 8.43.0
- eslint-scope: 5.1.1
- eslint-utils: 3.0.0(eslint@8.43.0)
- semver: 7.6.3
+ ts-api-utils: 1.4.0(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- - typescript
dev: true
/@typescript-eslint/utils@5.62.0(eslint@8.43.0)(typescript@5.1.3):
@@ -7076,9 +6084,9 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0)
- '@types/json-schema': 7.0.13
- '@types/semver': 7.5.3
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.43.0)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.3)
@@ -7090,7 +6098,7 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils@5.62.0(eslint@8.43.0)(typescript@5.2.2):
+ /@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.6.3):
resolution:
{
integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==,
@@ -7099,13 +6107,13 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0)
- '@types/json-schema': 7.0.13
- '@types/semver': 7.5.3
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.56.0)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2)
- eslint: 8.43.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
+ eslint: 8.56.0
eslint-scope: 5.1.1
semver: 7.6.3
transitivePeerDependencies:
@@ -7113,7 +6121,7 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.1.6):
+ /@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==,
@@ -7122,12 +6130,12 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
- '@types/json-schema': 7.0.13
- '@types/semver': 7.5.3
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
eslint: 8.57.1
eslint-scope: 5.1.1
semver: 7.6.3
@@ -7136,21 +6144,21 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils@6.7.4(eslint@8.43.0)(typescript@5.1.3):
+ /@typescript-eslint/utils@6.21.0(eslint@8.43.0)(typescript@5.1.3):
resolution:
{
- integrity: sha512-PRQAs+HUn85Qdk+khAxsVV+oULy3VkbH3hQ8hxLRJXWBEd7iI+GbQxH5SEUSH7kbEoTp6oT1bOwyga24ELALTA==,
+ integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0)
- '@types/json-schema': 7.0.13
- '@types/semver': 7.5.3
- '@typescript-eslint/scope-manager': 6.7.4
- '@typescript-eslint/types': 6.7.4
- '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.1.3)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.43.0)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.5.8
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.1.3)
eslint: 8.43.0
semver: 7.6.3
transitivePeerDependencies:
@@ -7158,81 +6166,78 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils@6.7.4(eslint@8.43.0)(typescript@5.2.2):
+ /@typescript-eslint/utils@6.21.0(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
- integrity: sha512-PRQAs+HUn85Qdk+khAxsVV+oULy3VkbH3hQ8hxLRJXWBEd7iI+GbQxH5SEUSH7kbEoTp6oT1bOwyga24ELALTA==,
+ integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==,
}
engines: { node: ^16.0.0 || >=18.0.0 }
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0)
- '@types/json-schema': 7.0.13
- '@types/semver': 7.5.3
- '@typescript-eslint/scope-manager': 6.7.4
- '@typescript-eslint/types': 6.7.4
- '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.2.2)
- eslint: 8.43.0
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.5.8
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3)
+ eslint: 8.57.1
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/utils@6.7.4(eslint@8.57.1)(typescript@5.1.6):
+ /@typescript-eslint/utils@8.13.0(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
- integrity: sha512-PRQAs+HUn85Qdk+khAxsVV+oULy3VkbH3hQ8hxLRJXWBEd7iI+GbQxH5SEUSH7kbEoTp6oT1bOwyga24ELALTA==,
+ integrity: sha512-A1EeYOND6Uv250nybnLZapeXpYMl8tkzYUxqmoKAWnI4sei3ihf2XdZVd+vVOmHGcp3t+P7yRrNsyyiXTvShFQ==,
}
- engines: { node: ^16.0.0 || >=18.0.0 }
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
+ eslint: ^8.57.0 || ^9.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
- '@types/json-schema': 7.0.13
- '@types/semver': 7.5.3
- '@typescript-eslint/scope-manager': 6.7.4
- '@typescript-eslint/types': 6.7.4
- '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.1.6)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@typescript-eslint/scope-manager': 8.13.0
+ '@typescript-eslint/types': 8.13.0
+ '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
eslint: 8.57.1
- semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys@5.40.1:
+ /@typescript-eslint/visitor-keys@5.62.0:
resolution:
{
- integrity: sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw==,
+ integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
dependencies:
- '@typescript-eslint/types': 5.40.1
- eslint-visitor-keys: 3.3.0
+ '@typescript-eslint/types': 5.62.0
+ eslint-visitor-keys: 3.4.3
dev: true
- /@typescript-eslint/visitor-keys@5.62.0:
+ /@typescript-eslint/visitor-keys@6.21.0:
resolution:
{
- integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==,
+ integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==,
}
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ engines: { node: ^16.0.0 || >=18.0.0 }
dependencies:
- '@typescript-eslint/types': 5.62.0
- eslint-visitor-keys: 3.4.1
+ '@typescript-eslint/types': 6.21.0
+ eslint-visitor-keys: 3.4.3
dev: true
- /@typescript-eslint/visitor-keys@6.7.4:
+ /@typescript-eslint/visitor-keys@8.13.0:
resolution:
{
- integrity: sha512-pOW37DUhlTZbvph50x5zZCkFn3xzwkGtNoJHzIM3svpiSkJzwOYr/kVBaXmf+RAQiUDs1AHEZVNPg6UJCJpwRA==,
+ integrity: sha512-7N/+lztJqH4Mrf0lb10R/CbI1EaAMMGyF5y0oJvFoAhafwgiRA7TXyd8TFn8FC8k5y2dTsYogg238qavRGNnlw==,
}
- engines: { node: ^16.0.0 || >=18.0.0 }
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
dependencies:
- '@typescript-eslint/types': 6.7.4
- eslint-visitor-keys: 3.4.1
+ '@typescript-eslint/types': 8.13.0
+ eslint-visitor-keys: 3.4.3
dev: true
/@ungap/structured-clone@1.2.0:
@@ -7296,10 +6301,10 @@ packages:
vue: 3.5.12(typescript@5.6.3)
dev: false
- /@vanilla-extract/babel-plugin-debug-ids@1.0.3:
+ /@vanilla-extract/babel-plugin-debug-ids@1.1.0:
resolution:
{
- integrity: sha512-vm4jYu1xhSa6ofQ9AhIpR3DkAp4c+eoR1Rpm8/TQI4DmWbmGbOjYRcqV0aWsfaIlNhN4kFuxFMKBNN9oG6iRzA==,
+ integrity: sha512-Zy9bKjaL2P5zsrFYQJ8IjWGlFODmZrpvFmjFE0Zv8om55Pz1JtpJtL6DvlxlWUxbVaP1HKCqsmEfFOZN8fX/ZQ==,
}
dependencies:
'@babel/core': 7.26.0
@@ -7307,66 +6312,71 @@ packages:
- supports-color
dev: true
- /@vanilla-extract/css@1.13.0:
+ /@vanilla-extract/css@1.16.0:
resolution:
{
- integrity: sha512-JFFBXhnJrPlGqHBabagXqo5ghXw9mtV270ycIGyLDZG8NAK5eRwAYkMowAxuzK7wZSm67GnETWYB7b0AUmyttg==,
+ integrity: sha512-05JTbvG1E0IrSZKZ5el2EM9CmAX0XSdsNY+d4aRZxDvYf3/hwxomvFFEz2b/awjgg9yTVHW83Wq19wE4OoTEMg==,
}
dependencies:
- '@emotion/hash': 0.9.1
- '@vanilla-extract/private': 1.0.3
- ahocorasick: 1.0.2
- chalk: 4.1.2
+ '@emotion/hash': 0.9.2
+ '@vanilla-extract/private': 1.0.6
css-what: 6.1.0
cssesc: 3.0.0
csstype: 3.1.3
+ dedent: 1.5.3
deep-object-diff: 1.1.9
deepmerge: 4.3.1
+ lru-cache: 10.4.3
media-query-parser: 2.0.2
- outdent: 0.8.0
+ modern-ahocorasick: 1.0.1
+ picocolors: 1.1.1
+ transitivePeerDependencies:
+ - babel-plugin-macros
dev: true
- /@vanilla-extract/integration@6.2.2(@types/node@18.11.9):
+ /@vanilla-extract/integration@6.5.0:
resolution:
{
- integrity: sha512-gV3qPFjFap1+IrPeuFy+tEZOq7l7ifJf1ik/kluDWhPr1ffsFG9puq1/jjJ4rod1BIC79Q5ZWPNvBInHyxfCew==,
+ integrity: sha512-E2YcfO8vA+vs+ua+gpvy1HRqvgWbI+MTlUpxA8FvatOvybuNcWAY0CKwQ/Gpj7rswYKtC6C7+xw33emM6/ImdQ==,
}
dependencies:
- '@babel/core': 7.23.0
- '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.23.0)
- '@vanilla-extract/babel-plugin-debug-ids': 1.0.3
- '@vanilla-extract/css': 1.13.0
- esbuild: 0.17.6
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ '@vanilla-extract/babel-plugin-debug-ids': 1.1.0
+ '@vanilla-extract/css': 1.16.0
+ esbuild: 0.18.20
eval: 0.1.8
find-up: 5.0.0
javascript-stringify: 2.1.0
lodash: 4.17.21
mlly: 1.7.2
outdent: 0.8.0
- vite: 4.5.5(@types/node@18.11.9)
- vite-node: 0.28.5(@types/node@18.11.9)
+ vite: 5.4.10(@types/node@20.17.6)
+ vite-node: 1.6.0
transitivePeerDependencies:
- '@types/node'
+ - babel-plugin-macros
- less
- lightningcss
- sass
+ - sass-embedded
- stylus
- sugarss
- supports-color
- terser
dev: true
- /@vanilla-extract/private@1.0.3:
+ /@vanilla-extract/private@1.0.6:
resolution:
{
- integrity: sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==,
+ integrity: sha512-ytsG/JLweEjw7DBuZ/0JCN4WAQgM9erfSTdS1NQY778hFQSZ6cfCDEZZ0sgVm4k54uNz6ImKB33AYvSR//fjxw==,
}
dev: true
- /@vercel/nft@0.27.5:
+ /@vercel/nft@0.27.6:
resolution:
{
- integrity: sha512-b2A7M+4yMHdWKY7xCC+kBEcnMrpaSE84CnuauTjhKKoCEeej0byJMAB8h/RBVnw/HdZOAFVcxR0Izr3LL24FwA==,
+ integrity: sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg==,
}
engines: { node: '>=16' }
hasBin: true
@@ -7378,7 +6388,7 @@ packages:
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
- glob: 7.1.7
+ glob: 7.2.3
graceful-fs: 4.2.11
micromatch: 4.0.8
node-gyp-build: 4.8.2
@@ -7387,7 +6397,7 @@ packages:
- encoding
- supports-color
- /@vercel/remix@2.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
+ /@vercel/remix@2.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.6.3):
resolution:
{
integrity: sha512-RogfKvAVl4poOQT4VMN2BEpfoeDjEeL1tIfavAQR9HtdsWOICBS8ePX7uC01ayKnUmNI660xOVJRw5v7PZDvNQ==,
@@ -7397,9 +6407,9 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@remix-run/node': 2.5.0(typescript@5.2.2)
- '@remix-run/server-runtime': 2.5.0(typescript@5.2.2)
- isbot: 3.7.0
+ '@remix-run/node': 2.5.0(typescript@5.6.3)
+ '@remix-run/server-runtime': 2.5.0(typescript@5.6.3)
+ isbot: 3.8.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
@@ -7427,37 +6437,38 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.23.0
- '@babel/eslint-parser': 7.22.15(@babel/core@7.23.0)(eslint@8.43.0)
+ '@babel/core': 7.26.0
+ '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.43.0)
'@next/eslint-plugin-next': 13.4.7
- '@rushstack/eslint-patch': 1.5.1
- '@typescript-eslint/eslint-plugin': 6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.43.0)(typescript@5.1.3)
- '@typescript-eslint/parser': 6.7.4(eslint@8.43.0)(typescript@5.1.3)
+ '@rushstack/eslint-patch': 1.10.4
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.43.0)(typescript@5.1.3)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.43.0)(typescript@5.1.3)
eslint: 8.43.0
- eslint-config-prettier: 9.0.0(eslint@8.43.0)
- eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.28.1)
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-plugin-import@2.28.1)(eslint@8.43.0)
+ eslint-config-prettier: 9.1.0(eslint@8.43.0)
+ eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.31.0)(eslint@8.43.0)
eslint-plugin-eslint-comments: 3.2.0(eslint@8.43.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- eslint-plugin-jest: 27.4.2(@typescript-eslint/eslint-plugin@6.7.4)(eslint@8.43.0)(typescript@5.1.3)
- eslint-plugin-jsx-a11y: 6.7.1(eslint@8.43.0)
- eslint-plugin-playwright: 0.16.0(eslint-plugin-jest@27.4.2)(eslint@8.43.0)
- eslint-plugin-react: 7.33.2(eslint@8.43.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.43.0)
- eslint-plugin-testing-library: 6.0.2(eslint@8.43.0)(typescript@5.1.3)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.43.0)
+ eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.43.0)(typescript@5.1.3)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@8.43.0)
+ eslint-plugin-playwright: 0.16.0(eslint-plugin-jest@27.9.0)(eslint@8.43.0)
+ eslint-plugin-react: 7.37.2(eslint@8.43.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.43.0)
+ eslint-plugin-testing-library: 6.4.0(eslint@8.43.0)(typescript@5.1.3)
eslint-plugin-tsdoc: 0.2.17
eslint-plugin-unicorn: 48.0.1(eslint@8.43.0)
prettier: 2.8.8
- prettier-plugin-packagejson: 2.4.6(prettier@2.8.8)
+ prettier-plugin-packagejson: 2.5.3(prettier@2.8.8)
typescript: 5.1.3
transitivePeerDependencies:
- eslint-import-resolver-node
- eslint-import-resolver-webpack
+ - eslint-plugin-import-x
- jest
- supports-color
dev: true
- /@vercel/style-guide@5.0.1(eslint@8.57.1)(prettier@2.8.8)(typescript@5.1.6):
+ /@vercel/style-guide@5.0.1(eslint@8.57.1)(prettier@2.8.8)(typescript@5.6.3):
resolution:
{
integrity: sha512-3J/5xpwJ2Wk+cKB3EGY2KCdVQycaThLKhjBmgXPfIKb+E74lPpXVIDfaQE0D2JoAyIzGsqdH7Lbmr+DojwofxQ==,
@@ -7478,31 +6489,32 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.23.0
- '@babel/eslint-parser': 7.22.15(@babel/core@7.23.0)(eslint@8.57.1)
- '@rushstack/eslint-patch': 1.5.1
- '@typescript-eslint/eslint-plugin': 6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.57.1)(typescript@5.1.6)
- '@typescript-eslint/parser': 6.7.4(eslint@8.57.1)(typescript@5.1.6)
+ '@babel/core': 7.26.0
+ '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.57.1)
+ '@rushstack/eslint-patch': 1.10.4
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
- eslint-config-prettier: 9.0.0(eslint@8.57.1)
- eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.28.1)
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-plugin-import@2.28.1)(eslint@8.57.1)
+ eslint-config-prettier: 9.1.0(eslint@8.57.1)
+ eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.1)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1)
- eslint-plugin-jest: 27.4.2(@typescript-eslint/eslint-plugin@6.7.4)(eslint@8.57.1)(typescript@5.1.6)
- eslint-plugin-jsx-a11y: 6.7.1(eslint@8.57.1)
- eslint-plugin-playwright: 0.16.0(eslint-plugin-jest@27.4.2)(eslint@8.57.1)
- eslint-plugin-react: 7.33.2(eslint@8.57.1)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.57.1)
- eslint-plugin-testing-library: 6.0.2(eslint@8.57.1)(typescript@5.1.6)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.1)(typescript@5.6.3)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
+ eslint-plugin-playwright: 0.16.0(eslint-plugin-jest@27.9.0)(eslint@8.57.1)
+ eslint-plugin-react: 7.37.2(eslint@8.57.1)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
+ eslint-plugin-testing-library: 6.4.0(eslint@8.57.1)(typescript@5.6.3)
eslint-plugin-tsdoc: 0.2.17
eslint-plugin-unicorn: 48.0.1(eslint@8.57.1)
prettier: 2.8.8
- prettier-plugin-packagejson: 2.4.6(prettier@2.8.8)
- typescript: 5.1.6
+ prettier-plugin-packagejson: 2.5.3(prettier@2.8.8)
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-node
- eslint-import-resolver-webpack
+ - eslint-plugin-import-x
- jest
- supports-color
dev: true
@@ -7520,7 +6532,7 @@ packages:
'@babel/core': 7.26.0
'@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
- vite: 5.4.10
+ vite: 5.4.10(@types/node@20.17.6)
vue: 3.5.12(typescript@5.6.3)
transitivePeerDependencies:
- supports-color
@@ -7536,8 +6548,100 @@ packages:
vite: ^5.0.0
vue: ^3.2.25
dependencies:
- vite: 5.4.10
- vue: 3.5.12(typescript@5.1.6)
+ vite: 5.4.10(@types/node@20.17.6)
+ vue: 3.5.12(typescript@5.6.3)
+
+ /@volar/kit@2.4.8(typescript@5.6.3):
+ resolution:
+ {
+ integrity: sha512-HY+HTP9sSqj0St9j1N8l85YMu4w0GxCtelzkzZWuq2GVz0+QRYwlyc0mPH7749OknUAdtsdozBR5Ecez55Ncug==,
+ }
+ peerDependencies:
+ typescript: '*'
+ dependencies:
+ '@volar/language-service': 2.4.8
+ '@volar/typescript': 2.4.8
+ typesafe-path: 0.2.2
+ typescript: 5.6.3
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-uri: 3.0.8
+ dev: true
+
+ /@volar/language-core@2.4.8:
+ resolution:
+ {
+ integrity: sha512-K/GxMOXGq997bO00cdFhTNuR85xPxj0BEEAy+BaqqayTmy9Tmhfgmq2wpJcVspRhcwfgPoE2/mEJa26emUhG/g==,
+ }
+ dependencies:
+ '@volar/source-map': 2.4.8
+ dev: true
+
+ /@volar/language-server@2.4.8:
+ resolution:
+ {
+ integrity: sha512-3Jd9Y+0Zhwi/zfdRxqoNrm7AxP6lgTsw4Ni9r6eCyWYGVsTnpVwGmlcbiZyDja6anoKZxnaeDatX1jkaHHWaRQ==,
+ }
+ dependencies:
+ '@volar/language-core': 2.4.8
+ '@volar/language-service': 2.4.8
+ '@volar/typescript': 2.4.8
+ path-browserify: 1.0.1
+ request-light: 0.7.0
+ vscode-languageserver: 9.0.1
+ vscode-languageserver-protocol: 3.17.5
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-uri: 3.0.8
+ dev: true
+
+ /@volar/language-service@2.4.8:
+ resolution:
+ {
+ integrity: sha512-9y8X4cdUxXmy4s5HoB8jmOpDIZG7XVFu4iEFvouhZlJX2leCq0pbq5h7dhA+O8My0fne3vtE6cJ4t9nc+8UBZw==,
+ }
+ dependencies:
+ '@volar/language-core': 2.4.8
+ vscode-languageserver-protocol: 3.17.5
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-uri: 3.0.8
+ dev: true
+
+ /@volar/source-map@2.4.8:
+ resolution:
+ {
+ integrity: sha512-jeWJBkC/WivdelMwxKkpFL811uH/jJ1kVxa+c7OvG48DXc3VrP7pplSWPP2W1dLMqBxD+awRlg55FQQfiup4cA==,
+ }
+ dev: true
+
+ /@volar/typescript@2.4.8:
+ resolution:
+ {
+ integrity: sha512-6xkIYJ5xxghVBhVywMoPMidDDAFT1OoQeXwa27HSgJ6AiIKRe61RXLoik+14Z7r0JvnblXVsjsRLmCr42SGzqg==,
+ }
+ dependencies:
+ '@volar/language-core': 2.4.8
+ path-browserify: 1.0.1
+ vscode-uri: 3.0.8
+ dev: true
+
+ /@vscode/emmet-helper@2.9.3:
+ resolution:
+ {
+ integrity: sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==,
+ }
+ dependencies:
+ emmet: 2.4.11
+ jsonc-parser: 2.3.1
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-languageserver-types: 3.17.5
+ vscode-uri: 2.1.2
+ dev: true
+
+ /@vscode/l10n@0.0.18:
+ resolution:
+ {
+ integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==,
+ }
+ dev: true
/@vue-macros/common@1.15.0(vue@3.5.12):
resolution:
@@ -7746,7 +6850,7 @@ packages:
dependencies:
'@vue/compiler-ssr': 3.5.12
'@vue/shared': 3.5.12
- vue: 3.5.12(typescript@5.1.6)
+ vue: 3.5.12(typescript@5.6.3)
/@vue/shared@3.5.12:
resolution:
@@ -7808,7 +6912,7 @@ packages:
}
dependencies:
acorn: 8.14.0
- acorn-walk: 8.2.0
+ acorn-walk: 8.3.4
dev: true
/acorn-import-attributes@1.9.5(acorn@8.14.0):
@@ -7841,21 +6945,14 @@ packages:
dependencies:
acorn: 8.14.0
- /acorn-walk@8.2.0:
- resolution:
- {
- integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==,
- }
- engines: { node: '>=0.4.0' }
- dev: true
-
- /acorn@8.10.0:
+ /acorn-walk@8.3.4:
resolution:
{
- integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==,
+ integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==,
}
engines: { node: '>=0.4.0' }
- hasBin: true
+ dependencies:
+ acorn: 8.14.0
dev: true
/acorn@8.14.0:
@@ -7899,13 +6996,6 @@ packages:
clean-stack: 2.2.0
indent-string: 4.0.0
- /ahocorasick@1.0.2:
- resolution:
- {
- integrity: sha512-hCOfMzbFx5IDutmWLAt6MZwOUjIfSM9G9FyVxytmE4Rs/5YDPWQrD/+IR1w+FweD9H2oOZEnv36TmkjhNURBVA==,
- }
- dev: true
-
/ajv@6.12.6:
resolution:
{
@@ -7917,6 +7007,27 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
+ /ajv@8.17.1:
+ resolution:
+ {
+ integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==,
+ }
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-uri: 3.0.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ dev: true
+
+ /ansi-align@3.0.1:
+ resolution:
+ {
+ integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==,
+ }
+ dependencies:
+ string-width: 4.2.3
+ dev: false
+
/ansi-colors@4.1.3:
resolution:
{
@@ -7941,22 +7052,13 @@ packages:
}
engines: { node: '>=8' }
- /ansi-regex@6.0.1:
+ /ansi-regex@6.1.0:
resolution:
{
- integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==,
+ integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==,
}
engines: { node: '>=12' }
- /ansi-styles@3.2.1:
- resolution:
- {
- integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
- }
- engines: { node: '>=4' }
- dependencies:
- color-convert: 1.9.3
-
/ansi-styles@4.3.0:
resolution:
{
@@ -7988,16 +7090,6 @@ packages:
}
dev: true
- /anymatch@3.1.2:
- resolution:
- {
- integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==,
- }
- engines: { node: '>= 8' }
- dependencies:
- normalize-path: 3.0.0
- picomatch: 2.3.1
-
/anymatch@3.1.3:
resolution:
{
@@ -8021,7 +7113,7 @@ packages:
}
engines: { node: '>= 14' }
dependencies:
- glob: 10.3.10
+ glob: 10.4.5
graceful-fs: 4.2.11
is-stream: 2.0.1
lazystream: 1.0.1
@@ -8078,7 +7170,6 @@ packages:
}
dependencies:
sprintf-js: 1.0.3
- dev: true
/argparse@2.0.1:
resolution:
@@ -8092,25 +7183,24 @@ packages:
integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==,
}
dependencies:
- deep-equal: 2.1.0
+ deep-equal: 2.2.3
dev: true
- /aria-query@5.3.2:
+ /aria-query@5.3.0:
resolution:
{
- integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==,
+ integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==,
}
- engines: { node: '>= 0.4' }
+ dependencies:
+ dequal: 2.0.3
+ dev: true
- /array-buffer-byte-length@1.0.0:
+ /aria-query@5.3.2:
resolution:
{
- integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==,
+ integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==,
}
- dependencies:
- call-bind: 1.0.7
- is-array-buffer: 3.0.2
- dev: true
+ engines: { node: '>= 0.4' }
/array-buffer-byte-length@1.0.1:
resolution:
@@ -8129,34 +7219,6 @@ packages:
integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==,
}
- /array-includes@3.1.5:
- resolution:
- {
- integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.20.4
- get-intrinsic: 1.2.4
- is-string: 1.0.7
- dev: true
-
- /array-includes@3.1.7:
- resolution:
- {
- integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.1
- es-abstract: 1.22.2
- get-intrinsic: 1.2.1
- is-string: 1.0.7
- dev: true
-
/array-includes@3.1.8:
resolution:
{
@@ -8172,6 +7234,13 @@ packages:
is-string: 1.0.7
dev: true
+ /array-iterate@2.0.1:
+ resolution:
+ {
+ integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==,
+ }
+ dev: false
+
/array-union@2.1.0:
resolution:
{
@@ -8195,20 +7264,6 @@ packages:
es-shim-unscopables: 1.0.2
dev: true
- /array.prototype.findlastindex@1.2.3:
- resolution:
- {
- integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.1
- es-abstract: 1.22.2
- es-shim-unscopables: 1.0.0
- get-intrinsic: 1.2.1
- dev: true
-
/array.prototype.findlastindex@1.2.5:
resolution:
{
@@ -8231,10 +7286,10 @@ packages:
}
engines: { node: '>= 0.4' }
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
- es-shim-unscopables: 1.0.0
+ es-abstract: 1.23.3
+ es-shim-unscopables: 1.0.2
dev: true
/array.prototype.flatmap@1.3.2:
@@ -8244,23 +7299,10 @@ packages:
}
engines: { node: '>= 0.4' }
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.1
- es-abstract: 1.22.2
- es-shim-unscopables: 1.0.0
- dev: true
-
- /array.prototype.tosorted@1.1.2:
- resolution:
- {
- integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==,
- }
- dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
- es-shim-unscopables: 1.0.0
- get-intrinsic: 1.2.1
+ es-abstract: 1.23.3
+ es-shim-unscopables: 1.0.2
dev: true
/array.prototype.tosorted@1.1.4:
@@ -8277,22 +7319,6 @@ packages:
es-shim-unscopables: 1.0.2
dev: true
- /arraybuffer.prototype.slice@1.0.2:
- resolution:
- {
- integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- array-buffer-byte-length: 1.0.0
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.22.2
- get-intrinsic: 1.2.4
- is-array-buffer: 3.0.2
- is-shared-array-buffer: 1.0.2
- dev: true
-
/arraybuffer.prototype.slice@1.0.3:
resolution:
{
@@ -8321,13 +7347,6 @@ packages:
pathe: 1.1.2
dev: false
- /ast-types-flow@0.0.7:
- resolution:
- {
- integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==,
- }
- dev: true
-
/ast-types-flow@0.0.8:
resolution:
{
@@ -8354,14 +7373,101 @@ packages:
engines: { node: '>=8' }
dev: false
- /astring@1.8.6:
- resolution:
- {
- integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==,
- }
- hasBin: true
- dev: true
-
+ /astring@1.9.0:
+ resolution:
+ {
+ integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==,
+ }
+ hasBin: true
+ dev: true
+
+ /astro@4.10.0(typescript@5.6.3):
+ resolution:
+ {
+ integrity: sha512-UNVGGZIwdEPIUumcwgIQnd90b4/PslReY9q3xy/Q6bIq/kvK0duIWCbhFPwf06xu+1tExziP9Jl+klvLXM0LfA==,
+ }
+ engines:
+ { node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0' }
+ hasBin: true
+ dependencies:
+ '@astrojs/compiler': 2.10.3
+ '@astrojs/internal-helpers': 0.4.0
+ '@astrojs/markdown-remark': 5.1.0
+ '@astrojs/telemetry': 3.1.0
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ '@types/babel__core': 7.20.5
+ '@types/cookie': 0.6.0
+ acorn: 8.14.0
+ aria-query: 5.3.2
+ axobject-query: 4.1.0
+ boxen: 7.1.1
+ chokidar: 3.6.0
+ ci-info: 4.0.0
+ clsx: 2.1.1
+ common-ancestor-path: 1.0.1
+ cookie: 0.6.0
+ cssesc: 3.0.0
+ debug: 4.3.7(supports-color@9.4.0)
+ deterministic-object-hash: 2.0.2
+ devalue: 5.1.1
+ diff: 5.2.0
+ dlv: 1.1.3
+ dset: 3.1.4
+ es-module-lexer: 1.5.4
+ esbuild: 0.21.5
+ estree-walker: 3.0.3
+ execa: 8.0.1
+ fast-glob: 3.3.2
+ flattie: 1.1.1
+ github-slugger: 2.0.0
+ gray-matter: 4.0.3
+ html-escaper: 3.0.3
+ http-cache-semantics: 4.1.1
+ js-yaml: 4.1.0
+ kleur: 4.1.5
+ magic-string: 0.30.12
+ mrmime: 2.0.0
+ ora: 8.1.1
+ p-limit: 5.0.0
+ p-queue: 8.0.1
+ path-to-regexp: 6.3.0
+ preferred-pm: 3.1.4
+ prompts: 2.4.2
+ rehype: 13.0.2
+ resolve: 1.22.8
+ semver: 7.6.3
+ shiki: 1.22.2
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
+ tsconfck: 3.1.4(typescript@5.6.3)
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+ vite: 5.4.10(@types/node@20.17.6)
+ vitefu: 0.2.5(vite@5.4.10)
+ which-pm: 2.2.0
+ yargs-parser: 21.1.1
+ zod: 3.23.8
+ zod-to-json-schema: 3.23.5(zod@3.23.8)
+ optionalDependencies:
+ sharp: 0.33.5
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - typescript
+ dev: false
+
/async-sema@3.1.1:
resolution:
{
@@ -8375,15 +7481,6 @@ packages:
}
dev: false
- /asynciterator.prototype@1.0.0:
- resolution:
- {
- integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==,
- }
- dependencies:
- has-symbols: 1.0.3
- dev: true
-
/asynckit@0.4.0:
resolution:
{
@@ -8391,25 +7488,6 @@ packages:
}
dev: true
- /autoprefixer@10.4.13(postcss@8.4.31):
- resolution:
- {
- integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==,
- }
- engines: { node: ^10 || ^12 || >=14 }
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001546
- fraction.js: 4.3.6
- normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.31
- postcss-value-parser: 4.2.0
- dev: true
-
/autoprefixer@10.4.20(postcss@8.4.47):
resolution:
{
@@ -8446,23 +7524,6 @@ packages:
engines: { node: '>=4' }
dev: true
- /axe-core@4.8.2:
- resolution:
- {
- integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==,
- }
- engines: { node: '>=4' }
- dev: true
-
- /axobject-query@3.2.1:
- resolution:
- {
- integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==,
- }
- dependencies:
- dequal: 2.0.3
- dev: true
-
/axobject-query@4.1.0:
resolution:
{
@@ -8477,7 +7538,7 @@ packages:
}
dev: false
- /babel-jest@29.7.0(@babel/core@7.23.0):
+ /babel-jest@29.7.0(@babel/core@7.26.0):
resolution:
{
integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==,
@@ -8486,11 +7547,11 @@ packages:
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@jest/transform': 29.7.0
- '@types/babel__core': 7.1.20
+ '@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.23.0)
+ babel-preset-jest: 29.6.3(@babel/core@7.26.0)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -8523,34 +7584,37 @@ packages:
dependencies:
'@babel/template': 7.25.9
'@babel/types': 7.26.0
- '@types/babel__core': 7.1.20
- '@types/babel__traverse': 7.18.2
+ '@types/babel__core': 7.20.5
+ '@types/babel__traverse': 7.20.6
dev: true
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.0):
+ /babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.0):
resolution:
{
- integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==,
+ integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==,
}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.0
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.0)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.0)
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
dev: true
- /babel-preset-jest@29.6.3(@babel/core@7.23.0):
+ /babel-preset-jest@29.6.3(@babel/core@7.26.0):
resolution:
{
integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==,
@@ -8559,9 +7623,9 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
dev: true
/bail@2.0.2:
@@ -8569,7 +7633,6 @@ packages:
{
integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==,
}
- dev: true
/balanced-match@1.0.2:
resolution:
@@ -8586,6 +7649,13 @@ packages:
dev: false
optional: true
+ /base-64@1.0.0:
+ resolution:
+ {
+ integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==,
+ }
+ dev: false
+
/base64-js@1.5.1:
resolution:
{
@@ -8601,10 +7671,10 @@ packages:
dependencies:
safe-buffer: 5.1.2
- /binary-extensions@2.2.0:
+ /binary-extensions@2.3.0:
resolution:
{
- integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==,
+ integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==,
}
engines: { node: '>=8' }
@@ -8634,10 +7704,10 @@ packages:
readable-stream: 3.6.2
dev: true
- /body-parser@1.20.1:
+ /body-parser@1.20.3:
resolution:
{
- integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==,
+ integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==,
}
engines: { node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16 }
dependencies:
@@ -8649,8 +7719,8 @@ packages:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
- raw-body: 2.5.1
+ qs: 6.13.0
+ raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
@@ -8663,6 +7733,23 @@ packages:
}
dev: false
+ /boxen@7.1.1:
+ resolution:
+ {
+ integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==,
+ }
+ engines: { node: '>=14.16' }
+ dependencies:
+ ansi-align: 3.0.1
+ camelcase: 7.0.1
+ chalk: 5.3.0
+ cli-boxes: 3.0.0
+ string-width: 5.1.2
+ type-fest: 2.19.0
+ widest-line: 4.0.1
+ wrap-ansi: 8.1.0
+ dev: false
+
/brace-expansion@1.1.11:
resolution:
{
@@ -8680,16 +7767,6 @@ packages:
dependencies:
balanced-match: 1.0.2
- /braces@3.0.2:
- resolution:
- {
- integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==,
- }
- engines: { node: '>=8' }
- dependencies:
- fill-range: 7.1.1
- dev: false
-
/braces@3.0.3:
resolution:
{
@@ -8708,19 +7785,6 @@ packages:
pako: 0.2.9
dev: true
- /browserslist@4.22.1:
- resolution:
- {
- integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==,
- }
- engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001579
- electron-to-chromium: 1.4.543
- node-releases: 2.0.13
- update-browserslist-db: 1.0.13(browserslist@4.22.1)
-
/browserslist@4.24.2:
resolution:
{
@@ -8730,7 +7794,7 @@ packages:
hasBin: true
dependencies:
caniuse-lite: 1.0.30001677
- electron-to-chromium: 1.5.51
+ electron-to-chromium: 1.5.52
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.2)
@@ -8785,15 +7849,6 @@ packages:
engines: { node: '>=6' }
dev: true
- /builtins@5.0.1:
- resolution:
- {
- integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==,
- }
- dependencies:
- semver: 7.6.3
- dev: true
-
/bundle-name@4.1.0:
resolution:
{
@@ -8804,17 +7859,17 @@ packages:
run-applescript: 7.0.0
dev: false
- /bundle-require@4.0.1(esbuild@0.18.10):
+ /bundle-require@4.2.1(esbuild@0.18.20):
resolution:
{
- integrity: sha512-9NQkRHlNdNpDBGmLpngF3EFDcwodhMUuLz9PaWYciVcQF9SE4LFjM2DB/xV1Li5JiuDMv7ZUWuC3rGbqR0MAXQ==,
+ integrity: sha512-7Q/6vkyYAwOmQNRw75x+4yRtZCZJXUDmHHlFdkiV0wgv/reNjtJwpu1jPJ0w2kbEpIM0uoKI3S4/f39dU7AjSA==,
}
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
peerDependencies:
esbuild: '>=0.17'
dependencies:
- esbuild: 0.18.10
- load-tsconfig: 0.2.3
+ esbuild: 0.18.20
+ load-tsconfig: 0.2.5
dev: true
/busboy@1.6.0:
@@ -8827,13 +7882,6 @@ packages:
streamsearch: 1.1.0
dev: false
- /bytes@3.0.0:
- resolution:
- {
- integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==,
- }
- engines: { node: '>= 0.8' }
-
/bytes@3.1.2:
resolution:
{
@@ -8881,30 +7929,20 @@ packages:
}
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
dependencies:
- '@npmcli/fs': 3.1.0
+ '@npmcli/fs': 3.1.1
fs-minipass: 3.0.3
- glob: 10.3.10
+ glob: 10.4.5
lru-cache: 7.18.3
- minipass: 7.0.4
+ minipass: 7.1.2
minipass-collect: 1.0.2
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
p-map: 4.0.0
- ssri: 10.0.5
- tar: 6.2.0
+ ssri: 10.0.6
+ tar: 6.2.1
unique-filename: 3.0.0
dev: true
- /call-bind@1.0.2:
- resolution:
- {
- integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==,
- }
- dependencies:
- function-bind: 1.1.2
- get-intrinsic: 1.2.4
- dev: true
-
/call-bind@1.0.7:
resolution:
{
@@ -8941,6 +7979,14 @@ packages:
engines: { node: '>=10' }
dev: true
+ /camelcase@7.0.1:
+ resolution:
+ {
+ integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==,
+ }
+ engines: { node: '>=14.16' }
+ dev: false
+
/caniuse-api@3.0.0:
resolution:
{
@@ -8953,18 +7999,6 @@ packages:
lodash.uniq: 4.5.0
dev: false
- /caniuse-lite@1.0.30001546:
- resolution:
- {
- integrity: sha512-zvtSJwuQFpewSyRrI3AsftF6rM0X80mZkChIt1spBGEvRglCrjTniXvinc8JKRoqTwXAgvqTImaN9igfSMtUBw==,
- }
-
- /caniuse-lite@1.0.30001579:
- resolution:
- {
- integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==,
- }
-
/caniuse-lite@1.0.30001677:
resolution:
{
@@ -8976,18 +8010,6 @@ packages:
{
integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==,
}
- dev: true
-
- /chalk@2.4.2:
- resolution:
- {
- integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
- }
- engines: { node: '>=4' }
- dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
/chalk@3.0.0:
resolution:
@@ -9018,6 +8040,14 @@ packages:
engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 }
dev: false
+ /chalk@5.3.0:
+ resolution:
+ {
+ integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==,
+ }
+ engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 }
+ dev: false
+
/change-case@5.4.4:
resolution:
{
@@ -9038,21 +8068,18 @@ packages:
{
integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==,
}
- dev: true
/character-entities-legacy@3.0.0:
resolution:
{
integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==,
}
- dev: true
/character-entities@2.0.2:
resolution:
{
integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==,
}
- dev: true
/character-reference-invalid@2.0.1:
resolution:
@@ -9061,23 +8088,6 @@ packages:
}
dev: true
- /chokidar@3.5.3:
- resolution:
- {
- integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==,
- }
- engines: { node: '>= 8.10.0' }
- dependencies:
- anymatch: 3.1.2
- braces: 3.0.3
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
-
/chokidar@3.6.0:
resolution:
{
@@ -9094,7 +8104,6 @@ packages:
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.3
- dev: false
/chokidar@4.0.1:
resolution:
@@ -9144,10 +8153,10 @@ packages:
consola: 3.2.3
dev: false
- /cjs-module-lexer@1.2.2:
+ /cjs-module-lexer@1.4.1:
resolution:
{
- integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==,
+ integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==,
}
dev: true
@@ -9175,6 +8184,14 @@ packages:
}
dev: false
+ /cli-boxes@3.0.0:
+ resolution:
+ {
+ integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==,
+ }
+ engines: { node: '>=10' }
+ dev: false
+
/cli-cursor@3.1.0:
resolution:
{
@@ -9184,13 +8201,22 @@ packages:
dependencies:
restore-cursor: 3.1.0
- /cli-spinners@2.9.1:
+ /cli-cursor@5.0.0:
+ resolution:
+ {
+ integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==,
+ }
+ engines: { node: '>=18' }
+ dependencies:
+ restore-cursor: 5.1.0
+ dev: false
+
+ /cli-spinners@2.9.2:
resolution:
{
- integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==,
+ integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==,
}
engines: { node: '>=6' }
- dev: true
/cli-truncate@2.1.0:
resolution:
@@ -9252,6 +8278,14 @@ packages:
engines: { node: '>=0.8' }
dev: true
+ /clsx@2.1.1:
+ resolution:
+ {
+ integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==,
+ }
+ engines: { node: '>=6' }
+ dev: false
+
/cluster-key-slot@1.1.2:
resolution:
{
@@ -9268,50 +8302,33 @@ packages:
engines: { iojs: '>= 1.0.0', node: '>= 0.12.0' }
dev: true
- /collect-v8-coverage@1.0.1:
+ /collect-v8-coverage@1.0.2:
resolution:
{
- integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==,
+ integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==,
}
dev: true
- /color-convert@1.9.3:
- resolution:
- {
- integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
- }
- dependencies:
- color-name: 1.1.3
-
/color-convert@2.0.1:
resolution:
{
integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
}
engines: { node: '>=7.0.0' }
- requiresBuild: true
dependencies:
color-name: 1.1.4
- /color-name@1.1.3:
- resolution:
- {
- integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
- }
-
/color-name@1.1.4:
resolution:
{
integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
}
- requiresBuild: true
/color-string@1.9.1:
resolution:
{
integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==,
}
- requiresBuild: true
dependencies:
color-name: 1.1.4
simple-swizzle: 0.2.2
@@ -9331,7 +8348,6 @@ packages:
integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==,
}
engines: { node: '>=12.5.0' }
- requiresBuild: true
dependencies:
color-convert: 2.0.1
color-string: 1.9.1
@@ -9352,10 +8368,10 @@ packages:
}
dev: false
- /colorette@2.0.19:
+ /colorette@2.0.20:
resolution:
{
- integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==,
+ integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==,
}
dev: false
@@ -9374,7 +8390,6 @@ packages:
{
integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==,
}
- dev: true
/commander@10.0.1:
resolution:
@@ -9415,6 +8430,13 @@ packages:
engines: { node: '>= 12' }
dev: false
+ /common-ancestor-path@1.0.1:
+ resolution:
+ {
+ integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==,
+ }
+ dev: false
+
/commondir@1.0.1:
resolution:
{
@@ -9450,21 +8472,21 @@ packages:
}
engines: { node: '>= 0.6' }
dependencies:
- mime-db: 1.52.0
+ mime-db: 1.53.0
- /compression@1.7.4:
+ /compression@1.7.5:
resolution:
{
- integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==,
+ integrity: sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==,
}
engines: { node: '>= 0.8.0' }
dependencies:
- accepts: 1.3.8
- bytes: 3.0.0
+ bytes: 3.1.2
compressible: 2.0.18
debug: 2.6.9
+ negotiator: 0.6.4
on-headers: 1.0.2
- safe-buffer: 5.1.2
+ safe-buffer: 5.2.1
vary: 1.1.2
transitivePeerDependencies:
- supports-color
@@ -9511,13 +8533,6 @@ packages:
}
engines: { node: '>= 0.6' }
- /convert-source-map@1.9.0:
- resolution:
- {
- integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==,
- }
- dev: true
-
/convert-source-map@2.0.0:
resolution:
{
@@ -9537,32 +8552,24 @@ packages:
integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==,
}
- /cookie-signature@1.2.1:
+ /cookie-signature@1.2.2:
resolution:
{
- integrity: sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==,
+ integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==,
}
engines: { node: '>=6.6.0' }
- /cookie@0.4.2:
- resolution:
- {
- integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==,
- }
- engines: { node: '>= 0.6' }
- dev: true
-
- /cookie@0.5.0:
+ /cookie@0.6.0:
resolution:
{
- integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==,
+ integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==,
}
engines: { node: '>= 0.6' }
- /cookie@0.6.0:
+ /cookie@0.7.1:
resolution:
{
- integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==,
+ integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==,
}
engines: { node: '>= 0.6' }
@@ -9602,7 +8609,7 @@ packages:
readable-stream: 4.5.2
dev: false
- /create-jest@29.7.0(@types/node@20.3.1)(ts-node@10.9.2):
+ /create-jest@29.7.0(@types/node@20.17.6)(ts-node@10.9.2):
resolution:
{
integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==,
@@ -9614,7 +8621,7 @@ packages:
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.3.1)(ts-node@10.9.2)
+ jest-config: 29.7.0(@types/node@20.17.6)(ts-node@10.9.2)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -9646,17 +8653,6 @@ packages:
hasBin: true
dev: false
- /cross-env@7.0.3:
- resolution:
- {
- integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==,
- }
- engines: { node: '>=10.14', npm: '>=6', yarn: '>=1' }
- hasBin: true
- dependencies:
- cross-spawn: 7.0.3
- dev: true
-
/cross-spawn@7.0.3:
resolution:
{
@@ -9848,13 +8844,6 @@ packages:
cssom: 0.3.8
dev: true
- /csstype@3.1.1:
- resolution:
- {
- integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==,
- }
- dev: true
-
/csstype@3.1.3:
resolution:
{
@@ -9974,20 +8963,6 @@ packages:
ms: 2.1.3
dev: true
- /debug@4.3.4:
- resolution:
- {
- integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
- }
- engines: { node: '>=6.0' }
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: 2.1.2
-
/debug@4.3.7(supports-color@9.4.0):
resolution:
{
@@ -10003,10 +8978,10 @@ packages:
ms: 2.1.3
supports-color: 9.4.0
- /decimal.js@10.4.2:
+ /decimal.js@10.4.3:
resolution:
{
- integrity: sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==,
+ integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==,
}
dev: true
@@ -10017,12 +8992,11 @@ packages:
}
dependencies:
character-entities: 2.0.2
- dev: true
- /dedent@1.5.1:
+ /dedent@1.5.3:
resolution:
{
- integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==,
+ integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==,
}
peerDependencies:
babel-plugin-macros: ^3.1.0
@@ -10031,27 +9005,31 @@ packages:
optional: true
dev: true
- /deep-equal@2.1.0:
+ /deep-equal@2.2.3:
resolution:
{
- integrity: sha512-2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA==,
+ integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==,
}
+ engines: { node: '>= 0.4' }
dependencies:
- call-bind: 1.0.2
- es-get-iterator: 1.1.2
- get-intrinsic: 1.2.1
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
+ es-get-iterator: 1.1.3
+ get-intrinsic: 1.2.4
is-arguments: 1.1.1
+ is-array-buffer: 3.0.4
is-date-object: 1.0.5
is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.3
isarray: 2.0.5
- object-is: 1.1.5
+ object-is: 1.1.6
object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.5.1
- side-channel: 1.0.4
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.3
+ side-channel: 1.0.6
which-boxed-primitive: 1.0.2
- which-collection: 1.0.1
- which-typed-array: 1.1.11
+ which-collection: 1.0.2
+ which-typed-array: 1.1.15
dev: true
/deep-is@0.1.4:
@@ -10091,27 +9069,15 @@ packages:
dependencies:
bundle-name: 4.1.0
default-browser-id: 5.0.0
- dev: false
-
- /defaults@1.0.4:
- resolution:
- {
- integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==,
- }
- dependencies:
- clone: 1.0.4
- dev: true
+ dev: false
- /define-data-property@1.1.0:
+ /defaults@1.0.4:
resolution:
{
- integrity: sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==,
+ integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==,
}
- engines: { node: '>= 0.4' }
dependencies:
- get-intrinsic: 1.2.4
- gopd: 1.0.1
- has-property-descriptors: 1.0.2
+ clone: 1.0.4
dev: true
/define-data-property@1.1.4:
@@ -10131,6 +9097,7 @@ packages:
integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==,
}
engines: { node: '>=8' }
+ dev: false
/define-lazy-prop@3.0.0:
resolution:
@@ -10147,8 +9114,8 @@ packages:
}
engines: { node: '>= 0.4' }
dependencies:
- define-data-property: 1.1.0
- has-property-descriptors: 1.0.0
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
dev: true
@@ -10194,7 +9161,6 @@ packages:
integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==,
}
engines: { node: '>=6' }
- dev: true
/destr@2.0.3:
resolution:
@@ -10233,7 +9199,6 @@ packages:
integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==,
}
engines: { node: '>=8' }
- requiresBuild: true
/detect-newline@3.1.0:
resolution:
@@ -10251,11 +9216,14 @@ packages:
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
dev: true
- /devalue@4.3.3:
+ /deterministic-object-hash@2.0.2:
resolution:
{
- integrity: sha512-UH8EL6H2ifcY8TbD2QsxwCC/pr5xSwPvv85LrLXVihmHVC3T3YqTCIwnR5ak0yO1KYqlxrPVOA/JVZJYPy2ATg==,
+ integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==,
}
+ engines: { node: '>=18' }
+ dependencies:
+ base-64: 1.0.0
dev: false
/devalue@5.1.1:
@@ -10264,6 +9232,15 @@ packages:
integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==,
}
+ /devlop@1.1.0:
+ resolution:
+ {
+ integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==,
+ }
+ dependencies:
+ dequal: 2.0.3
+ dev: false
+
/diff-sequences@29.6.3:
resolution:
{
@@ -10280,13 +9257,12 @@ packages:
engines: { node: '>=0.3.1' }
dev: true
- /diff@5.1.0:
+ /diff@5.2.0:
resolution:
{
- integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==,
+ integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==,
}
engines: { node: '>=0.3.1' }
- dev: true
/diff@7.0.0:
resolution:
@@ -10306,6 +9282,13 @@ packages:
path-type: 4.0.0
dev: true
+ /dlv@1.1.3:
+ resolution:
+ {
+ integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==,
+ }
+ dev: false
+
/doctrine@2.1.0:
resolution:
{
@@ -10325,10 +9308,10 @@ packages:
dependencies:
esutils: 2.0.3
- /dom-accessibility-api@0.5.14:
+ /dom-accessibility-api@0.5.16:
resolution:
{
- integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==,
+ integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==,
}
dev: true
@@ -10399,20 +9382,19 @@ packages:
type-fest: 4.26.1
dev: false
- /dotenv@16.3.1:
+ /dotenv@16.4.5:
resolution:
{
- integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==,
+ integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==,
}
engines: { node: '>=12' }
- dev: true
- /dotenv@16.4.5:
+ /dset@3.1.4:
resolution:
{
- integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==,
+ integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==,
}
- engines: { node: '>=12' }
+ engines: { node: '>=4' }
dev: false
/duplexer@0.1.2:
@@ -10431,7 +9413,7 @@ packages:
end-of-stream: 1.4.4
inherits: 2.0.4
readable-stream: 2.3.8
- stream-shift: 1.0.1
+ stream-shift: 1.0.3
dev: true
/eastasianwidth@0.2.0:
@@ -10446,26 +9428,37 @@ packages:
integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==,
}
- /electron-to-chromium@1.4.543:
+ /electron-to-chromium@1.5.52:
resolution:
{
- integrity: sha512-t2ZP4AcGE0iKCCQCBx/K2426crYdxD3YU6l0uK2EO3FZH0pbC4pFz/sZm2ruZsND6hQBTcDWWlo/MLpiOdif5g==,
+ integrity: sha512-xtoijJTZ+qeucLBDNztDOuQBE1ksqjvNjvqFoST3nGC7fSpqJ+X6BdTBaY5BHG+IhWWmpc6b/KfpeuEDupEPOQ==,
}
- /electron-to-chromium@1.5.51:
+ /emittery@0.13.1:
resolution:
{
- integrity: sha512-kKeWV57KSS8jH4alKt/jKnvHPmJgBxXzGUSbMd4eQF+iOsVPl7bz2KUmu6eo80eMP8wVioTfTyTzdMgM15WXNg==,
+ integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==,
}
+ engines: { node: '>=12' }
+ dev: true
- /emittery@0.13.1:
+ /emmet@2.4.11:
resolution:
{
- integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==,
+ integrity: sha512-23QPJB3moh/U9sT4rQzGgeyyGIrcM+GH5uVYg2C6wZIxAIJq7Ng3QLT79tl8FUwDXhyq9SusfknOrofAKqvgyQ==,
}
- engines: { node: '>=12' }
+ dependencies:
+ '@emmetio/abbreviation': 2.3.3
+ '@emmetio/css-abbreviation': 2.1.8
dev: true
+ /emoji-regex@10.4.0:
+ resolution:
+ {
+ integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==,
+ }
+ dev: false
+
/emoji-regex@8.0.0:
resolution:
{
@@ -10491,7 +9484,6 @@ packages:
integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==,
}
engines: { node: '>= 0.8' }
- dev: false
/end-of-stream@1.4.4:
resolution:
@@ -10502,10 +9494,10 @@ packages:
once: 1.4.0
dev: true
- /enhanced-resolve@5.15.0:
+ /enhanced-resolve@5.17.1:
resolution:
{
- integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==,
+ integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==,
}
engines: { node: '>=10.13.0' }
dependencies:
@@ -10549,87 +9541,6 @@ packages:
}
dev: false
- /es-abstract@1.20.4:
- resolution:
- {
- integrity: sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.7
- es-to-primitive: 1.2.1
- function-bind: 1.1.2
- function.prototype.name: 1.1.5
- get-intrinsic: 1.2.4
- get-symbol-description: 1.0.0
- has: 1.0.3
- has-property-descriptors: 1.0.2
- has-symbols: 1.0.3
- internal-slot: 1.0.3
- is-callable: 1.2.7
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-weakref: 1.0.2
- object-inspect: 1.13.2
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.3
- safe-regex-test: 1.0.0
- string.prototype.trimend: 1.0.7
- string.prototype.trimstart: 1.0.5
- unbox-primitive: 1.0.2
- dev: true
-
- /es-abstract@1.22.2:
- resolution:
- {
- integrity: sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- array-buffer-byte-length: 1.0.0
- arraybuffer.prototype.slice: 1.0.2
- available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- es-set-tostringtag: 2.0.1
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.6
- get-intrinsic: 1.2.4
- get-symbol-description: 1.0.0
- globalthis: 1.0.3
- gopd: 1.0.1
- has: 1.0.3
- has-property-descriptors: 1.0.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
- internal-slot: 1.0.5
- is-array-buffer: 3.0.2
- is-callable: 1.2.7
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-typed-array: 1.1.12
- is-weakref: 1.0.2
- object-inspect: 1.13.2
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.3
- safe-array-concat: 1.0.1
- safe-regex-test: 1.0.0
- string.prototype.trim: 1.2.8
- string.prototype.trimend: 1.0.7
- string.prototype.trimstart: 1.0.7
- typed-array-buffer: 1.0.0
- typed-array-byte-length: 1.0.0
- typed-array-byte-offset: 1.0.0
- typed-array-length: 1.0.4
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.15
- dev: true
-
/es-abstract@1.23.3:
resolution:
{
@@ -10652,7 +9563,7 @@ packages:
function.prototype.name: 1.1.6
get-intrinsic: 1.2.4
get-symbol-description: 1.0.2
- globalthis: 1.0.3
+ globalthis: 1.0.4
gopd: 1.0.1
has-property-descriptors: 1.0.2
has-proto: 1.0.3
@@ -10701,48 +9612,27 @@ packages:
}
engines: { node: '>= 0.4' }
- /es-get-iterator@1.1.2:
+ /es-get-iterator@1.1.3:
resolution:
{
- integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==,
+ integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==,
}
dependencies:
call-bind: 1.0.7
get-intrinsic: 1.2.4
has-symbols: 1.0.3
is-arguments: 1.1.1
- is-map: 2.0.2
- is-set: 2.0.2
+ is-map: 2.0.3
+ is-set: 2.0.3
is-string: 1.0.7
isarray: 2.0.5
+ stop-iteration-iterator: 1.0.0
dev: true
- /es-iterator-helpers@1.0.15:
- resolution:
- {
- integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==,
- }
- dependencies:
- asynciterator.prototype: 1.0.0
- call-bind: 1.0.2
- define-properties: 1.2.1
- es-abstract: 1.22.2
- es-set-tostringtag: 2.0.1
- function-bind: 1.1.1
- get-intrinsic: 1.2.1
- globalthis: 1.0.3
- has-property-descriptors: 1.0.0
- has-proto: 1.0.1
- has-symbols: 1.0.3
- internal-slot: 1.0.5
- iterator.prototype: 1.1.2
- safe-array-concat: 1.0.1
- dev: true
-
- /es-iterator-helpers@1.1.0:
+ /es-iterator-helpers@1.2.0:
resolution:
{
- integrity: sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==,
+ integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==,
}
engines: { node: '>= 0.4' }
dependencies:
@@ -10754,6 +9644,7 @@ packages:
function-bind: 1.1.2
get-intrinsic: 1.2.4
globalthis: 1.0.4
+ gopd: 1.0.1
has-property-descriptors: 1.0.2
has-proto: 1.0.3
has-symbols: 1.0.3
@@ -10762,26 +9653,20 @@ packages:
safe-array-concat: 1.1.2
dev: true
- /es-object-atoms@1.0.0:
+ /es-module-lexer@1.5.4:
resolution:
{
- integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==,
+ integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==,
}
- engines: { node: '>= 0.4' }
- dependencies:
- es-errors: 1.3.0
- dev: true
- /es-set-tostringtag@2.0.1:
+ /es-object-atoms@1.0.0:
resolution:
{
- integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==,
+ integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==,
}
engines: { node: '>= 0.4' }
dependencies:
- get-intrinsic: 1.2.4
- has: 1.0.3
- has-tostringtag: 1.0.2
+ es-errors: 1.3.0
dev: true
/es-set-tostringtag@2.0.3:
@@ -10796,15 +9681,6 @@ packages:
hasown: 2.0.2
dev: true
- /es-shim-unscopables@1.0.0:
- resolution:
- {
- integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==,
- }
- dependencies:
- has: 1.0.3
- dev: true
-
/es-shim-unscopables@1.0.2:
resolution:
{
@@ -10826,18 +9702,18 @@ packages:
is-symbol: 1.0.4
dev: true
- /esbuild-plugins-node-modules-polyfill@1.6.1(esbuild@0.17.6):
+ /esbuild-plugins-node-modules-polyfill@1.6.7(esbuild@0.17.6):
resolution:
{
- integrity: sha512-6sAwI24PV8W0zxeO+i4BS5zoQypS3SzEGwIdxpzpy65riRuK8apMw8PN0aKVLCTnLr0FgNIxUMRd9BsreBrtog==,
+ integrity: sha512-1lzsVFT/6OO1ZATHKZqSP+qYzyFo2d+QF9QzMKsyJR7GMRScYizYb1uEEE4NxTsBSxWviY3xnmN9dEOTaKFbJA==,
}
engines: { node: '>=14.0.0' }
peerDependencies:
- esbuild: ^0.14.0 || ^0.15.0 || ^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0
+ esbuild: '>=0.14.0 <=0.23.x'
dependencies:
- '@jspm/core': 2.0.1
+ '@jspm/core': 2.1.0
esbuild: 0.17.6
- local-pkg: 0.4.3
+ local-pkg: 0.5.0
resolve.exports: 2.0.2
dev: true
@@ -10874,39 +9750,6 @@ packages:
'@esbuild/win32-x64': 0.17.6
dev: true
- /esbuild@0.18.10:
- resolution:
- {
- integrity: sha512-33WKo67auOXzZHBY/9DTJRo7kIvfU12S+D4sp2wIz39N88MDIaCGyCwbW01RR70pK6Iya0I74lHEpyLfFqOHPA==,
- }
- engines: { node: '>=12' }
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.18.10
- '@esbuild/android-arm64': 0.18.10
- '@esbuild/android-x64': 0.18.10
- '@esbuild/darwin-arm64': 0.18.10
- '@esbuild/darwin-x64': 0.18.10
- '@esbuild/freebsd-arm64': 0.18.10
- '@esbuild/freebsd-x64': 0.18.10
- '@esbuild/linux-arm': 0.18.10
- '@esbuild/linux-arm64': 0.18.10
- '@esbuild/linux-ia32': 0.18.10
- '@esbuild/linux-loong64': 0.18.10
- '@esbuild/linux-mips64el': 0.18.10
- '@esbuild/linux-ppc64': 0.18.10
- '@esbuild/linux-riscv64': 0.18.10
- '@esbuild/linux-s390x': 0.18.10
- '@esbuild/linux-x64': 0.18.10
- '@esbuild/netbsd-x64': 0.18.10
- '@esbuild/openbsd-x64': 0.18.10
- '@esbuild/sunos-x64': 0.18.10
- '@esbuild/win32-arm64': 0.18.10
- '@esbuild/win32-ia32': 0.18.10
- '@esbuild/win32-x64': 0.18.10
- dev: true
-
/esbuild@0.18.20:
resolution:
{
@@ -10938,6 +9781,7 @@ packages:
'@esbuild/win32-arm64': 0.18.20
'@esbuild/win32-ia32': 0.18.20
'@esbuild/win32-x64': 0.18.20
+ dev: true
/esbuild@0.21.5:
resolution:
@@ -11007,13 +9851,6 @@ packages:
'@esbuild/win32-x64': 0.24.0
dev: false
- /escalade@3.1.1:
- resolution:
- {
- integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==,
- }
- engines: { node: '>=6' }
-
/escalade@3.2.0:
resolution:
{
@@ -11033,6 +9870,7 @@ packages:
integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
}
engines: { node: '>=0.8.0' }
+ dev: true
/escape-string-regexp@2.0.0:
resolution:
@@ -11057,10 +9895,10 @@ packages:
engines: { node: '>=12' }
dev: false
- /escodegen@2.0.0:
+ /escodegen@2.1.0:
resolution:
{
- integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==,
+ integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==,
}
engines: { node: '>=6.0' }
hasBin: true
@@ -11068,12 +9906,11 @@ packages:
esprima: 4.0.1
estraverse: 5.3.0
esutils: 2.0.3
- optionator: 0.8.3
optionalDependencies:
source-map: 0.6.1
dev: true
- /eslint-config-next@15.0.1(eslint@8.43.0)(typescript@5.2.2):
+ /eslint-config-next@15.0.1(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
integrity: sha512-3cYCrgbH6GS/ufApza7XCKz92vtq4dAdYhx++rMFNlH2cAV+/GsAKkrr4+bohYOACmzG2nAOR+uWprKC1Uld6A==,
@@ -11087,25 +9924,26 @@ packages:
dependencies:
'@next/eslint-plugin-next': 15.0.1
'@rushstack/eslint-patch': 1.10.4
- '@typescript-eslint/eslint-plugin': 6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.43.0)(typescript@5.2.2)
- '@typescript-eslint/parser': 6.7.4(eslint@8.43.0)(typescript@5.2.2)
- eslint: 8.43.0
+ '@typescript-eslint/eslint-plugin': 8.13.0(@typescript-eslint/parser@8.13.0)(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.43.0)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- eslint-plugin-jsx-a11y: 6.10.1(eslint@8.43.0)
- eslint-plugin-react: 7.37.2(eslint@8.43.0)
- eslint-plugin-react-hooks: 5.0.0(eslint@8.43.0)
- typescript: 5.2.2
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.13.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.13.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
+ eslint-plugin-react: 7.37.2(eslint@8.57.1)
+ eslint-plugin-react-hooks: 5.0.0(eslint@8.57.1)
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
+ - eslint-plugin-import-x
- supports-color
dev: true
- /eslint-config-prettier@9.0.0(eslint@8.43.0):
+ /eslint-config-prettier@9.1.0(eslint@8.43.0):
resolution:
{
- integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==,
+ integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==,
}
hasBin: true
peerDependencies:
@@ -11114,10 +9952,10 @@ packages:
eslint: 8.43.0
dev: true
- /eslint-config-prettier@9.0.0(eslint@8.57.1):
+ /eslint-config-prettier@9.1.0(eslint@8.57.1):
resolution:
{
- integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==,
+ integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==,
}
hasBin: true
peerDependencies:
@@ -11126,7 +9964,7 @@ packages:
eslint: 8.57.1
dev: true
- /eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.28.1):
+ /eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0):
resolution:
{
integrity: sha512-WdviM1Eu834zsfjHtcGHtGfcu+F30Od3V7I9Fi57uhBEwPkjDcii7/yW8jAT+gOhn4P/vOxxNAXbFAKsrrc15w==,
@@ -11135,7 +9973,7 @@ packages:
peerDependencies:
eslint-plugin-import: '>=1.4.0'
dependencies:
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
dev: true
/eslint-import-resolver-node@0.3.7:
@@ -11145,8 +9983,8 @@ packages:
}
dependencies:
debug: 3.2.7
- is-core-module: 2.13.0
- resolve: 1.22.6
+ is-core-module: 2.15.1
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
dev: true
@@ -11158,30 +9996,37 @@ packages:
}
dependencies:
debug: 3.2.7
- is-core-module: 2.13.0
- resolve: 1.22.6
+ is-core-module: 2.15.1
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.28.1)(eslint@8.43.0):
+ /eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.31.0)(eslint@8.56.0):
resolution:
{
- integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==,
+ integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==,
}
engines: { node: ^14.18.0 || >=16.0.0 }
peerDependencies:
eslint: '*'
eslint-plugin-import: '*'
+ eslint-plugin-import-x: '*'
+ peerDependenciesMeta:
+ eslint-plugin-import:
+ optional: true
+ eslint-plugin-import-x:
+ optional: true
dependencies:
+ '@nolyfill/is-core-module': 1.0.39
debug: 4.3.7(supports-color@9.4.0)
- enhanced-resolve: 5.15.0
- eslint: 8.43.0
- eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- fast-glob: 3.3.1
- get-tsconfig: 4.7.2
- is-core-module: 2.11.0
+ enhanced-resolve: 5.17.1
+ eslint: 8.56.0
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0)
+ fast-glob: 3.3.2
+ get-tsconfig: 4.8.1
+ is-bun-module: 1.2.1
is-glob: 4.0.3
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -11190,24 +10035,31 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.43.0):
+ /eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.31.0)(eslint@8.43.0):
resolution:
{
- integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==,
+ integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==,
}
engines: { node: ^14.18.0 || >=16.0.0 }
peerDependencies:
eslint: '*'
eslint-plugin-import: '*'
+ eslint-plugin-import-x: '*'
+ peerDependenciesMeta:
+ eslint-plugin-import:
+ optional: true
+ eslint-plugin-import-x:
+ optional: true
dependencies:
+ '@nolyfill/is-core-module': 1.0.39
debug: 4.3.7(supports-color@9.4.0)
- enhanced-resolve: 5.15.0
+ enhanced-resolve: 5.17.1
eslint: 8.43.0
- eslint-module-utils: 2.7.4(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- fast-glob: 3.3.1
- get-tsconfig: 4.7.2
- is-core-module: 2.11.0
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.43.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.43.0)
+ fast-glob: 3.3.2
+ get-tsconfig: 4.8.1
+ is-bun-module: 1.2.1
is-glob: 4.0.3
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -11216,50 +10068,31 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.7.4)(eslint-plugin-import@2.28.1)(eslint@8.43.0):
+ /eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.31.0)(eslint@8.57.1):
resolution:
{
- integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==,
+ integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==,
}
engines: { node: ^14.18.0 || >=16.0.0 }
peerDependencies:
eslint: '*'
eslint-plugin-import: '*'
+ eslint-plugin-import-x: '*'
+ peerDependenciesMeta:
+ eslint-plugin-import:
+ optional: true
+ eslint-plugin-import-x:
+ optional: true
dependencies:
+ '@nolyfill/is-core-module': 1.0.39
debug: 4.3.7(supports-color@9.4.0)
- enhanced-resolve: 5.15.0
- eslint: 8.43.0
- eslint-module-utils: 2.7.4(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- fast-glob: 3.3.1
- get-tsconfig: 4.7.2
- is-core-module: 2.11.0
- is-glob: 4.0.3
- transitivePeerDependencies:
- - '@typescript-eslint/parser'
- - eslint-import-resolver-node
- - eslint-import-resolver-webpack
- - supports-color
- dev: true
-
- /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.7.4)(eslint-plugin-import@2.28.1)(eslint@8.57.1):
- resolution:
- {
- integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==,
- }
- engines: { node: ^14.18.0 || >=16.0.0 }
- peerDependencies:
- eslint: '*'
- eslint-plugin-import: '*'
- dependencies:
- debug: 4.3.4
- enhanced-resolve: 5.15.0
+ enhanced-resolve: 5.17.1
eslint: 8.57.1
- eslint-module-utils: 2.7.4(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1)
- fast-glob: 3.3.1
- get-tsconfig: 4.7.2
- is-core-module: 2.11.0
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ fast-glob: 3.3.2
+ get-tsconfig: 4.8.1
+ is-bun-module: 1.2.1
is-glob: 4.0.3
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -11268,109 +10101,43 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.12.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0):
- resolution:
- {
- integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==,
- }
- engines: { node: '>=4' }
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
- optional: true
- dependencies:
- '@typescript-eslint/parser': 6.7.4(eslint@8.43.0)(typescript@5.2.2)
- debug: 3.2.7
- eslint: 8.43.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.43.0)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0):
- resolution:
- {
- integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==,
- }
- engines: { node: '>=4' }
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
- optional: true
- dependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.43.0)(typescript@5.2.2)
- debug: 3.2.7
- eslint: 8.43.0
- eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.28.1)(eslint@8.43.0)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /eslint-module-utils@2.7.4(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0):
+ /eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1):
resolution:
{
- integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==,
+ integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==,
}
- engines: { node: '>=4' }
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
+ engines: { node: ^14.18.0 || >=16.0.0 }
+ peerDependencies:
+ eslint: '*'
+ eslint-plugin-import: '*'
+ eslint-plugin-import-x: '*'
+ peerDependenciesMeta:
+ eslint-plugin-import:
optional: true
- eslint-import-resolver-webpack:
+ eslint-plugin-import-x:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.4(eslint@8.43.0)(typescript@5.2.2)
- debug: 3.2.7
- eslint: 8.43.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.43.0)
+ '@nolyfill/is-core-module': 1.0.39
+ debug: 4.3.7(supports-color@9.4.0)
+ enhanced-resolve: 5.17.1
+ eslint: 8.57.1
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.13.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.13.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ fast-glob: 3.3.2
+ get-tsconfig: 4.8.1
+ is-bun-module: 1.2.1
+ is-glob: 4.0.3
transitivePeerDependencies:
+ - '@typescript-eslint/parser'
+ - eslint-import-resolver-node
+ - eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-module-utils@2.7.4(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0):
+ /eslint-module-utils@2.12.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0):
resolution:
{
- integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==,
+ integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==,
}
engines: { node: '>=4' }
peerDependencies:
@@ -11391,18 +10158,19 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.4(eslint@8.43.0)(typescript@5.1.3)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.6.3)
debug: 3.2.7
- eslint: 8.43.0
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-plugin-import@2.28.1)(eslint@8.43.0)
+ eslint: 8.56.0
+ eslint-import-resolver-node: 0.3.7
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.31.0)(eslint@8.56.0)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-module-utils@2.7.4(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1):
+ /eslint-module-utils@2.12.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0):
resolution:
{
- integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==,
+ integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==,
}
engines: { node: '>=4' }
peerDependencies:
@@ -11423,18 +10191,19 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.4(eslint@8.57.1)(typescript@5.1.6)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.6.3)
debug: 3.2.7
- eslint: 8.57.1
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-plugin-import@2.28.1)(eslint@8.57.1)
+ eslint: 8.56.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.31.0)(eslint@8.56.0)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0):
+ /eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.43.0):
resolution:
{
- integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==,
+ integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==,
}
engines: { node: '>=4' }
peerDependencies:
@@ -11455,19 +10224,19 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.43.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.43.0)(typescript@5.1.3)
debug: 3.2.7
eslint: 8.43.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.28.1)(eslint@8.43.0)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.31.0)(eslint@8.43.0)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0):
+ /eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
resolution:
{
- integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==,
+ integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==,
}
engines: { node: '>=4' }
peerDependencies:
@@ -11488,19 +10257,19 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.4(eslint@8.43.0)(typescript@5.1.3)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.6.3)
debug: 3.2.7
- eslint: 8.43.0
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-plugin-import@2.28.1)(eslint@8.43.0)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1):
+ /eslint-module-utils@2.12.0(@typescript-eslint/parser@8.13.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
resolution:
{
- integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==,
+ integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==,
}
engines: { node: '>=4' }
peerDependencies:
@@ -11521,16 +10290,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.4(eslint@8.57.1)(typescript@5.1.6)
+ '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
debug: 3.2.7
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-plugin-import@2.28.1)(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.13.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-es@3.0.1(eslint@8.43.0):
+ /eslint-plugin-es@3.0.1(eslint@8.56.0):
resolution:
{
integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==,
@@ -11539,7 +10308,7 @@ packages:
peerDependencies:
eslint: '>=4.19.1'
dependencies:
- eslint: 8.43.0
+ eslint: 8.56.0
eslint-utils: 2.1.0
regexpp: 3.2.0
dev: true
@@ -11555,7 +10324,7 @@ packages:
dependencies:
escape-string-regexp: 1.0.5
eslint: 8.43.0
- ignore: 5.2.0
+ ignore: 5.3.2
dev: true
/eslint-plugin-eslint-comments@3.2.0(eslint@8.57.1):
@@ -11569,124 +10338,130 @@ packages:
dependencies:
escape-string-regexp: 1.0.5
eslint: 8.57.1
- ignore: 5.2.4
+ ignore: 5.3.2
dev: true
- /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0):
+ /eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0):
resolution:
{
- integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==,
+ integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==,
}
engines: { node: '>=4' }
peerDependencies:
'@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.43.0)(typescript@5.2.2)
- array-includes: 3.1.7
- array.prototype.findlastindex: 1.2.3
+ '@rtsao/scc': 1.1.0
+ '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.6.3)
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.43.0
+ eslint: 8.56.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- has: 1.0.3
- is-core-module: 2.13.0
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0)
+ hasown: 2.0.2
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
- object.fromentries: 2.0.7
- object.groupby: 1.0.1
- object.values: 1.1.7
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
semver: 6.3.1
- tsconfig-paths: 3.14.2
+ string.prototype.trimend: 1.0.8
+ tsconfig-paths: 3.15.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0):
+ /eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.43.0):
resolution:
{
- integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==,
+ integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==,
}
engines: { node: '>=4' }
peerDependencies:
'@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.4(eslint@8.43.0)(typescript@5.1.3)
- array-includes: 3.1.7
- array.prototype.findlastindex: 1.2.3
+ '@rtsao/scc': 1.1.0
+ '@typescript-eslint/parser': 6.21.0(eslint@8.43.0)(typescript@5.1.3)
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
eslint: 8.43.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- has: 1.0.3
- is-core-module: 2.13.0
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.43.0)
+ hasown: 2.0.2
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
- object.fromentries: 2.0.7
- object.groupby: 1.0.1
- object.values: 1.1.7
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
semver: 6.3.1
- tsconfig-paths: 3.14.2
+ string.prototype.trimend: 1.0.8
+ tsconfig-paths: 3.15.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1):
+ /eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
resolution:
{
- integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==,
+ integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==,
}
engines: { node: '>=4' }
peerDependencies:
'@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.4(eslint@8.57.1)(typescript@5.1.6)
- array-includes: 3.1.7
- array.prototype.findlastindex: 1.2.3
+ '@rtsao/scc': 1.1.0
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.6.3)
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1)
- has: 1.0.3
- is-core-module: 2.13.0
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ hasown: 2.0.2
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
- object.fromentries: 2.0.7
- object.groupby: 1.0.1
- object.values: 1.1.7
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
semver: 6.3.1
- tsconfig-paths: 3.14.2
+ string.prototype.trimend: 1.0.8
+ tsconfig-paths: 3.15.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0):
+ /eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
resolution:
{
integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==,
@@ -11700,16 +10475,16 @@ packages:
optional: true
dependencies:
'@rtsao/scc': 1.1.0
- '@typescript-eslint/parser': 6.7.4(eslint@8.43.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.43.0
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.13.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -11726,7 +10501,7 @@ packages:
- supports-color
dev: true
- /eslint-plugin-jest-dom@4.0.3(eslint@8.43.0):
+ /eslint-plugin-jest-dom@4.0.3(eslint@8.56.0):
resolution:
{
integrity: sha512-9j+n8uj0+V0tmsoS7bYC7fLhQmIvjRqRYEcbDSi+TKPsTThLLXCyj5swMSSf/hTleeMktACnn+HFqXBr5gbcbA==,
@@ -11735,13 +10510,13 @@ packages:
peerDependencies:
eslint: ^6.8.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@babel/runtime': 7.23.1
+ '@babel/runtime': 7.26.0
'@testing-library/dom': 8.20.1
- eslint: 8.43.0
+ eslint: 8.56.0
requireindex: 1.2.0
dev: true
- /eslint-plugin-jest@26.9.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.43.0)(typescript@5.2.2):
+ /eslint-plugin-jest@26.9.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.56.0)(typescript@5.6.3):
resolution:
{
integrity: sha512-TWJxWGp1J628gxh2KhaH1H1paEdgE2J61BBF1I59c6xWeL5+D1BzMxGDN/nXAfX+aSkR5u80K+XhskK6Gwq9ng==,
@@ -11757,22 +10532,22 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.43.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 5.62.0(eslint@8.43.0)(typescript@5.2.2)
- eslint: 8.43.0
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3)
+ eslint: 8.56.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-jest@27.4.2(@typescript-eslint/eslint-plugin@6.7.4)(eslint@8.43.0)(typescript@5.1.3):
+ /eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.43.0)(typescript@5.1.3):
resolution:
{
- integrity: sha512-3Nfvv3wbq2+PZlRTf2oaAWXWwbdBejFRBR2O8tAO67o+P8zno+QGbcDYaAXODlreXVg+9gvWhKKmG2rgfb8GEg==,
+ integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==,
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
peerDependencies:
- '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0
+ '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 || ^7.0.0
eslint: ^7.0.0 || ^8.0.0
jest: '*'
peerDependenciesMeta:
@@ -11781,22 +10556,22 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.43.0)(typescript@5.1.3)
- '@typescript-eslint/utils': 5.40.1(eslint@8.43.0)(typescript@5.1.3)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.43.0)(typescript@5.1.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.43.0)(typescript@5.1.3)
eslint: 8.43.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-jest@27.4.2(@typescript-eslint/eslint-plugin@6.7.4)(eslint@8.57.1)(typescript@5.1.6):
+ /eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
- integrity: sha512-3Nfvv3wbq2+PZlRTf2oaAWXWwbdBejFRBR2O8tAO67o+P8zno+QGbcDYaAXODlreXVg+9gvWhKKmG2rgfb8GEg==,
+ integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==,
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
peerDependencies:
- '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0
+ '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 || ^7.0.0
eslint: ^7.0.0 || ^8.0.0
jest: '*'
peerDependenciesMeta:
@@ -11805,18 +10580,18 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.57.1)(typescript@5.1.6)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-jsx-a11y@6.10.1(eslint@8.43.0):
+ /eslint-plugin-jsx-a11y@6.10.2(eslint@8.43.0):
resolution:
{
- integrity: sha512-zHByM9WTUMnfsDTafGXRiqxp6lFtNoSOWBY6FonVRn3A+BUwN1L/tdBXT40BcBJi0cZjOGTXZ0eD/rTG9fEJ0g==,
+ integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==,
}
engines: { node: '>=4.0' }
peerDependencies:
@@ -11830,7 +10605,6 @@ packages:
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- es-iterator-helpers: 1.1.0
eslint: 8.43.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -11841,63 +10615,61 @@ packages:
string.prototype.includes: 2.0.1
dev: true
- /eslint-plugin-jsx-a11y@6.7.1(eslint@8.43.0):
+ /eslint-plugin-jsx-a11y@6.10.2(eslint@8.56.0):
resolution:
{
- integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==,
+ integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==,
}
engines: { node: '>=4.0' }
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
dependencies:
- '@babel/runtime': 7.23.1
aria-query: 5.3.2
- array-includes: 3.1.7
+ array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
- ast-types-flow: 0.0.7
- axe-core: 4.8.2
- axobject-query: 3.2.1
+ ast-types-flow: 0.0.8
+ axe-core: 4.10.2
+ axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.43.0
- has: 1.0.3
- jsx-ast-utils: 3.3.3
- language-tags: 1.0.5
+ eslint: 8.56.0
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ language-tags: 1.0.9
minimatch: 3.1.2
- object.entries: 1.1.7
- object.fromentries: 2.0.7
- semver: 6.3.1
+ object.fromentries: 2.0.8
+ safe-regex-test: 1.0.3
+ string.prototype.includes: 2.0.1
dev: true
- /eslint-plugin-jsx-a11y@6.7.1(eslint@8.57.1):
+ /eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1):
resolution:
{
- integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==,
+ integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==,
}
engines: { node: '>=4.0' }
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
dependencies:
- '@babel/runtime': 7.23.1
aria-query: 5.3.2
- array-includes: 3.1.7
+ array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
- ast-types-flow: 0.0.7
- axe-core: 4.8.2
- axobject-query: 3.2.1
+ ast-types-flow: 0.0.8
+ axe-core: 4.10.2
+ axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
eslint: 8.57.1
- has: 1.0.3
- jsx-ast-utils: 3.3.3
- language-tags: 1.0.5
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ language-tags: 1.0.9
minimatch: 3.1.2
- object.entries: 1.1.7
- object.fromentries: 2.0.7
- semver: 6.3.1
+ object.fromentries: 2.0.8
+ safe-regex-test: 1.0.3
+ string.prototype.includes: 2.0.1
dev: true
- /eslint-plugin-node@11.1.0(eslint@8.43.0):
+ /eslint-plugin-node@11.1.0(eslint@8.56.0):
resolution:
{
integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==,
@@ -11906,16 +10678,16 @@ packages:
peerDependencies:
eslint: '>=5.16.0'
dependencies:
- eslint: 8.43.0
- eslint-plugin-es: 3.0.1(eslint@8.43.0)
+ eslint: 8.56.0
+ eslint-plugin-es: 3.0.1(eslint@8.56.0)
eslint-utils: 2.1.0
ignore: 5.3.2
minimatch: 3.1.2
- resolve: 1.22.6
+ resolve: 1.22.8
semver: 6.3.1
dev: true
- /eslint-plugin-playwright@0.16.0(eslint-plugin-jest@27.4.2)(eslint@8.43.0):
+ /eslint-plugin-playwright@0.16.0(eslint-plugin-jest@27.9.0)(eslint@8.43.0):
resolution:
{
integrity: sha512-DcHpF0SLbNeh9MT4pMzUGuUSnJ7q5MWbP8sSEFIMS6j7Ggnduq8ghNlfhURgty4c1YFny7Ge9xYTO1FSAoV2Vw==,
@@ -11928,10 +10700,10 @@ packages:
optional: true
dependencies:
eslint: 8.43.0
- eslint-plugin-jest: 27.4.2(@typescript-eslint/eslint-plugin@6.7.4)(eslint@8.43.0)(typescript@5.1.3)
+ eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.43.0)(typescript@5.1.3)
dev: true
- /eslint-plugin-playwright@0.16.0(eslint-plugin-jest@27.4.2)(eslint@8.57.1):
+ /eslint-plugin-playwright@0.16.0(eslint-plugin-jest@27.9.0)(eslint@8.57.1):
resolution:
{
integrity: sha512-DcHpF0SLbNeh9MT4pMzUGuUSnJ7q5MWbP8sSEFIMS6j7Ggnduq8ghNlfhURgty4c1YFny7Ge9xYTO1FSAoV2Vw==,
@@ -11944,13 +10716,13 @@ packages:
optional: true
dependencies:
eslint: 8.57.1
- eslint-plugin-jest: 27.4.2(@typescript-eslint/eslint-plugin@6.7.4)(eslint@8.57.1)(typescript@5.1.6)
+ eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.1)(typescript@5.6.3)
dev: true
- /eslint-plugin-react-hooks@4.6.0(eslint@8.43.0):
+ /eslint-plugin-react-hooks@4.6.2(eslint@8.43.0):
resolution:
{
- integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==,
+ integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==,
}
engines: { node: '>=10' }
peerDependencies:
@@ -11959,10 +10731,22 @@ packages:
eslint: 8.43.0
dev: true
- /eslint-plugin-react-hooks@4.6.0(eslint@8.57.1):
+ /eslint-plugin-react-hooks@4.6.2(eslint@8.56.0):
+ resolution:
+ {
+ integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==,
+ }
+ engines: { node: '>=10' }
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ dependencies:
+ eslint: 8.56.0
+ dev: true
+
+ /eslint-plugin-react-hooks@4.6.2(eslint@8.57.1):
resolution:
{
- integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==,
+ integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==,
}
engines: { node: '>=10' }
peerDependencies:
@@ -11971,7 +10755,7 @@ packages:
eslint: 8.57.1
dev: true
- /eslint-plugin-react-hooks@5.0.0(eslint@8.43.0):
+ /eslint-plugin-react-hooks@5.0.0(eslint@8.57.1):
resolution:
{
integrity: sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==,
@@ -11980,66 +10764,70 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
dependencies:
- eslint: 8.43.0
+ eslint: 8.57.1
dev: true
- /eslint-plugin-react@7.33.2(eslint@8.43.0):
+ /eslint-plugin-react@7.37.2(eslint@8.43.0):
resolution:
{
- integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==,
+ integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==,
}
engines: { node: '>=4' }
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
dependencies:
- array-includes: 3.1.7
+ array-includes: 3.1.8
+ array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
- array.prototype.tosorted: 1.1.2
+ array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.0.15
+ es-iterator-helpers: 1.2.0
eslint: 8.43.0
estraverse: 5.3.0
- jsx-ast-utils: 3.3.3
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
minimatch: 3.1.2
- object.entries: 1.1.7
- object.fromentries: 2.0.7
- object.hasown: 1.1.3
- object.values: 1.1.7
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.values: 1.2.0
prop-types: 15.8.1
- resolve: 2.0.0-next.4
+ resolve: 2.0.0-next.5
semver: 6.3.1
- string.prototype.matchall: 4.0.10
+ string.prototype.matchall: 4.0.11
+ string.prototype.repeat: 1.0.0
dev: true
- /eslint-plugin-react@7.33.2(eslint@8.57.1):
+ /eslint-plugin-react@7.37.2(eslint@8.56.0):
resolution:
{
- integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==,
+ integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==,
}
engines: { node: '>=4' }
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
dependencies:
- array-includes: 3.1.7
+ array-includes: 3.1.8
+ array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
- array.prototype.tosorted: 1.1.2
+ array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.0.15
- eslint: 8.57.1
+ es-iterator-helpers: 1.2.0
+ eslint: 8.56.0
estraverse: 5.3.0
- jsx-ast-utils: 3.3.3
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
minimatch: 3.1.2
- object.entries: 1.1.7
- object.fromentries: 2.0.7
- object.hasown: 1.1.3
- object.values: 1.1.7
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.values: 1.2.0
prop-types: 15.8.1
- resolve: 2.0.0-next.4
+ resolve: 2.0.0-next.5
semver: 6.3.1
- string.prototype.matchall: 4.0.10
+ string.prototype.matchall: 4.0.11
+ string.prototype.repeat: 1.0.0
dev: true
- /eslint-plugin-react@7.37.2(eslint@8.43.0):
+ /eslint-plugin-react@7.37.2(eslint@8.57.1):
resolution:
{
integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==,
@@ -12053,11 +10841,11 @@ packages:
array.prototype.flatmap: 1.3.2
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.1.0
- eslint: 8.43.0
+ es-iterator-helpers: 1.2.0
+ eslint: 8.57.1
estraverse: 5.3.0
hasown: 2.0.2
- jsx-ast-utils: 3.3.3
+ jsx-ast-utils: 3.3.5
minimatch: 3.1.2
object.entries: 1.1.8
object.fromentries: 2.0.8
@@ -12069,7 +10857,7 @@ packages:
string.prototype.repeat: 1.0.0
dev: true
- /eslint-plugin-testing-library@5.11.1(eslint@8.43.0)(typescript@5.2.2):
+ /eslint-plugin-testing-library@5.11.1(eslint@8.56.0)(typescript@5.6.3):
resolution:
{
integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==,
@@ -12078,21 +10866,21 @@ packages:
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.43.0)(typescript@5.2.2)
- eslint: 8.43.0
+ '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3)
+ eslint: 8.56.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-testing-library@6.0.2(eslint@8.43.0)(typescript@5.1.3):
+ /eslint-plugin-testing-library@6.4.0(eslint@8.43.0)(typescript@5.1.3):
resolution:
{
- integrity: sha512-3BV6FWtLbpKFb4Y1obSdt8PC9xSqz6T+7EHB/6pSCXqVjKPoS67ck903feKMKQphd5VhrX+N51yHuVaPa7elsw==,
+ integrity: sha512-yeWF+YgCgvNyPNI9UKnG0FjeE2sk93N/3lsKqcmR8dSfeXJwFT5irnWo7NjLf152HkRzfoFjh3LsBUrhvFz4eA==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6' }
peerDependencies:
- eslint: ^7.5.0 || ^8.0.0
+ eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
dependencies:
'@typescript-eslint/utils': 5.62.0(eslint@8.43.0)(typescript@5.1.3)
eslint: 8.43.0
@@ -12101,16 +10889,16 @@ packages:
- typescript
dev: true
- /eslint-plugin-testing-library@6.0.2(eslint@8.57.1)(typescript@5.1.6):
+ /eslint-plugin-testing-library@6.4.0(eslint@8.57.1)(typescript@5.6.3):
resolution:
{
- integrity: sha512-3BV6FWtLbpKFb4Y1obSdt8PC9xSqz6T+7EHB/6pSCXqVjKPoS67ck903feKMKQphd5VhrX+N51yHuVaPa7elsw==,
+ integrity: sha512-yeWF+YgCgvNyPNI9UKnG0FjeE2sk93N/3lsKqcmR8dSfeXJwFT5irnWo7NjLf152HkRzfoFjh3LsBUrhvFz4eA==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6' }
peerDependencies:
- eslint: ^7.5.0 || ^8.0.0
+ eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.1.6)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
@@ -12136,12 +10924,12 @@ packages:
peerDependencies:
eslint: '>=8.44.0'
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0)
+ '@babel/helper-validator-identifier': 7.25.9
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.43.0)
ci-info: 3.9.0
clean-regexp: 1.0.0
eslint: 8.43.0
- esquery: 1.5.0
+ esquery: 1.6.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
jsesc: 3.0.2
@@ -12150,7 +10938,7 @@ packages:
read-pkg-up: 7.0.1
regexp-tree: 0.1.27
regjsparser: 0.10.0
- semver: 7.5.4
+ semver: 7.6.3
strip-indent: 3.0.0
dev: true
@@ -12163,12 +10951,12 @@ packages:
peerDependencies:
eslint: '>=8.44.0'
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
+ '@babel/helper-validator-identifier': 7.25.9
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
ci-info: 3.9.0
clean-regexp: 1.0.0
eslint: 8.57.1
- esquery: 1.5.0
+ esquery: 1.6.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
jsesc: 3.0.2
@@ -12177,7 +10965,7 @@ packages:
read-pkg-up: 7.0.1
regexp-tree: 0.1.27
regjsparser: 0.10.0
- semver: 7.5.4
+ semver: 7.6.3
strip-indent: 3.0.0
dev: true
@@ -12212,19 +11000,6 @@ packages:
eslint-visitor-keys: 1.3.0
dev: true
- /eslint-utils@3.0.0(eslint@8.43.0):
- resolution:
- {
- integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==,
- }
- engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 }
- peerDependencies:
- eslint: '>=5'
- dependencies:
- eslint: 8.43.0
- eslint-visitor-keys: 2.1.0
- dev: true
-
/eslint-visitor-keys@1.3.0:
resolution:
{
@@ -12241,22 +11016,6 @@ packages:
engines: { node: '>=10' }
dev: true
- /eslint-visitor-keys@3.3.0:
- resolution:
- {
- integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
- dev: true
-
- /eslint-visitor-keys@3.4.1:
- resolution:
- {
- integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
- dev: true
-
/eslint-visitor-keys@3.4.3:
resolution:
{
@@ -12270,33 +11029,34 @@ packages:
integrity: sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0)
- '@eslint-community/regexpp': 4.9.1
- '@eslint/eslintrc': 2.1.2
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.43.0)
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/eslintrc': 2.1.4
'@eslint/js': 8.43.0
- '@humanwhocodes/config-array': 0.11.11
+ '@humanwhocodes/config-array': 0.11.14
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4
+ debug: 4.3.7(supports-color@9.4.0)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- esquery: 1.5.0
+ esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.20.0
+ globals: 13.24.0
graphemer: 1.4.0
- ignore: 5.2.4
+ ignore: 5.3.2
import-fresh: 3.3.0
imurmurhash: 0.1.4
is-glob: 4.0.3
@@ -12307,7 +11067,7 @@ packages:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
strip-ansi: 6.0.1
strip-json-comments: 3.1.1
text-table: 0.2.0
@@ -12315,6 +11075,57 @@ packages:
- supports-color
dev: true
+ /eslint@8.56.0:
+ resolution:
+ {
+ integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==,
+ }
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
+ hasBin: true
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.56.0)
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/eslintrc': 2.1.4
+ '@eslint/js': 8.56.0
+ '@humanwhocodes/config-array': 0.11.14
+ '@humanwhocodes/module-importer': 1.0.1
+ '@nodelib/fs.walk': 1.2.8
+ '@ungap/structured-clone': 1.2.0
+ ajv: 6.12.6
+ chalk: 4.1.2
+ cross-spawn: 7.0.3
+ debug: 4.3.7(supports-color@9.4.0)
+ doctrine: 3.0.0
+ escape-string-regexp: 4.0.0
+ eslint-scope: 7.2.2
+ eslint-visitor-keys: 3.4.3
+ espree: 9.6.1
+ esquery: 1.6.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 6.0.1
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ globals: 13.24.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ is-path-inside: 3.0.3
+ js-yaml: 4.1.0
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.4.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.4
+ strip-ansi: 6.0.1
+ text-table: 0.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/eslint@8.57.1:
resolution:
{
@@ -12389,17 +11200,6 @@ packages:
}
engines: { node: '>=4' }
hasBin: true
- dev: true
-
- /esquery@1.5.0:
- resolution:
- {
- integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==,
- }
- engines: { node: '>=0.10' }
- dependencies:
- estraverse: 5.3.0
- dev: true
/esquery@1.6.0:
resolution:
@@ -12458,7 +11258,7 @@ packages:
integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==,
}
dependencies:
- '@types/estree-jsx': 1.0.1
+ '@types/estree-jsx': 1.0.5
estree-util-is-identifier-name: 2.1.0
estree-walker: 3.0.3
dev: true
@@ -12483,8 +11283,8 @@ packages:
integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==,
}
dependencies:
- '@types/estree-jsx': 1.0.1
- astring: 1.8.6
+ '@types/estree-jsx': 1.0.5
+ astring: 1.9.0
source-map: 0.7.4
dev: true
@@ -12504,8 +11304,8 @@ packages:
integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==,
}
dependencies:
- '@types/estree-jsx': 1.0.1
- '@types/unist': 2.0.8
+ '@types/estree-jsx': 1.0.5
+ '@types/unist': 2.0.11
dev: true
/estree-walker@2.0.2:
@@ -12543,7 +11343,7 @@ packages:
}
engines: { node: '>= 0.8' }
dependencies:
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
require-like: 0.1.2
dev: true
@@ -12554,6 +11354,13 @@ packages:
}
engines: { node: '>=6' }
+ /eventemitter3@5.0.1:
+ resolution:
+ {
+ integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==,
+ }
+ dev: false
+
/events@3.3.0:
resolution:
{
@@ -12567,36 +11374,18 @@ packages:
{
integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==,
}
- engines: { node: '>=10' }
- dependencies:
- cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 2.1.0
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
- signal-exit: 3.0.7
- strip-final-newline: 2.0.0
- dev: true
-
- /execa@7.1.1:
- resolution:
- {
- integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==,
- }
- engines: { node: ^14.18.0 || ^16.14.0 || >=18.0.0 }
+ engines: { node: '>=10' }
dependencies:
cross-spawn: 7.0.3
get-stream: 6.0.1
- human-signals: 4.3.1
- is-stream: 3.0.0
+ human-signals: 2.1.0
+ is-stream: 2.0.1
merge-stream: 2.0.0
- npm-run-path: 5.1.0
- onetime: 6.0.0
+ npm-run-path: 4.0.1
+ onetime: 5.1.2
signal-exit: 3.0.7
- strip-final-newline: 3.0.0
- dev: false
+ strip-final-newline: 2.0.0
+ dev: true
/execa@7.2.0:
resolution:
@@ -12610,7 +11399,7 @@ packages:
human-signals: 4.3.1
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.1.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 3.0.7
strip-final-newline: 3.0.0
@@ -12628,7 +11417,7 @@ packages:
human-signals: 5.0.0
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.1.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
@@ -12650,20 +11439,6 @@ packages:
engines: { node: '>= 0.8.0' }
dev: true
- /expect@29.3.1:
- resolution:
- {
- integrity: sha512-gGb1yTgU30Q0O/tQq+z30KBWv24ApkMgFUpvKBkyLUBL68Wv8dHdJxTBZFl/iT8K/bqDHvUYRH6IIN3rToopPA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- dependencies:
- '@jest/expect-utils': 29.5.0
- jest-get-type: 29.4.3
- jest-matcher-utils: 29.5.0
- jest-message-util: 29.5.0
- jest-util: 29.5.0
- dev: true
-
/expect@29.7.0:
resolution:
{
@@ -12678,39 +11453,39 @@ packages:
jest-util: 29.7.0
dev: true
- /express@4.18.2:
+ /express@4.21.1:
resolution:
{
- integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==,
+ integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==,
}
engines: { node: '>= 0.10.0' }
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.1
+ body-parser: 1.20.3
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.5.0
+ cookie: 0.7.1
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.2.0
+ finalhandler: 1.3.1
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.7
+ path-to-regexp: 0.1.10
proxy-addr: 2.0.7
- qs: 6.11.0
+ qs: 6.13.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
+ send: 0.19.0
+ serve-static: 1.16.2
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -12719,12 +11494,21 @@ packages:
transitivePeerDependencies:
- supports-color
+ /extend-shallow@2.0.1:
+ resolution:
+ {
+ integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==,
+ }
+ engines: { node: '>=0.10.0' }
+ dependencies:
+ is-extendable: 0.1.1
+ dev: false
+
/extend@3.0.2:
resolution:
{
integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==,
}
- dev: true
/externality@1.0.2:
resolution:
@@ -12732,7 +11516,7 @@ packages:
integrity: sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==,
}
dependencies:
- enhanced-resolve: 5.15.0
+ enhanced-resolve: 5.17.1
mlly: 1.7.2
pathe: 1.1.2
ufo: 1.5.4
@@ -12751,20 +11535,6 @@ packages:
}
dev: false
- /fast-glob@3.2.12:
- resolution:
- {
- integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==,
- }
- engines: { node: '>=8.6.0' }
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.8
- dev: true
-
/fast-glob@3.3.1:
resolution:
{
@@ -12811,10 +11581,17 @@ packages:
}
dev: false
- /fastq@1.13.0:
+ /fast-uri@3.0.3:
+ resolution:
+ {
+ integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==,
+ }
+ dev: true
+
+ /fastq@1.17.1:
resolution:
{
- integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==,
+ integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==,
}
dependencies:
reusify: 1.0.4
@@ -12857,7 +11634,7 @@ packages:
}
engines: { node: ^10.12.0 || >=12.0.0 }
dependencies:
- flat-cache: 3.0.4
+ flat-cache: 3.2.0
/file-uri-to-path@1.0.0:
resolution:
@@ -12874,15 +11651,15 @@ packages:
dependencies:
to-regex-range: 5.0.1
- /finalhandler@1.2.0:
+ /finalhandler@1.3.1:
resolution:
{
- integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==,
+ integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==,
}
engines: { node: '>= 0.8' }
dependencies:
debug: 2.6.9
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
@@ -12900,7 +11677,6 @@ packages:
dependencies:
locate-path: 5.0.0
path-exists: 4.0.0
- dev: true
/find-up@5.0.0:
resolution:
@@ -12912,14 +11688,25 @@ packages:
locate-path: 6.0.0
path-exists: 4.0.0
- /flat-cache@3.0.4:
+ /find-yarn-workspace-root2@1.2.16:
+ resolution:
+ {
+ integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==,
+ }
+ dependencies:
+ micromatch: 4.0.8
+ pkg-dir: 4.2.0
+ dev: false
+
+ /flat-cache@3.2.0:
resolution:
{
- integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==,
+ integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==,
}
engines: { node: ^10.12.0 || >=12.0.0 }
dependencies:
flatted: 3.3.1
+ keyv: 4.5.4
rimraf: 3.0.2
/flatted@3.3.1:
@@ -12928,6 +11715,14 @@ packages:
integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==,
}
+ /flattie@1.1.1:
+ resolution:
+ {
+ integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==,
+ }
+ engines: { node: '>=8' }
+ dev: false
+
/for-each@0.3.3:
resolution:
{
@@ -12936,20 +11731,20 @@ packages:
dependencies:
is-callable: 1.2.7
- /foreground-child@3.1.1:
+ /foreground-child@3.3.0:
resolution:
{
- integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==,
+ integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==,
}
engines: { node: '>=14' }
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- /form-data@4.0.0:
+ /form-data@4.0.1:
resolution:
{
- integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
+ integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==,
}
engines: { node: '>= 6' }
dependencies:
@@ -12973,13 +11768,6 @@ packages:
}
engines: { node: '>= 0.6' }
- /fraction.js@4.3.6:
- resolution:
- {
- integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==,
- }
- dev: true
-
/fraction.js@4.3.7:
resolution:
{
@@ -13010,7 +11798,7 @@ packages:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
dev: true
/fs-extra@11.2.0:
@@ -13022,7 +11810,7 @@ packages:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
dev: false
/fs-minipass@2.1.0:
@@ -13041,7 +11829,7 @@ packages:
}
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.2
dev: true
/fs.realpath@1.0.0:
@@ -13071,31 +11859,12 @@ packages:
requiresBuild: true
optional: true
- /function-bind@1.1.1:
- resolution:
- {
- integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==,
- }
-
/function-bind@1.1.2:
resolution:
{
integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==,
}
- /function.prototype.name@1.1.5:
- resolution:
- {
- integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.22.2
- functions-have-names: 1.2.3
- dev: true
-
/function.prototype.name@1.1.6:
resolution:
{
@@ -13105,7 +11874,7 @@ packages:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
+ es-abstract: 1.23.3
functions-have-names: 1.2.3
dev: true
@@ -13140,7 +11909,7 @@ packages:
integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==,
}
dependencies:
- loader-utils: 3.2.1
+ loader-utils: 3.3.1
dev: true
/gensync@1.0.0-beta.2:
@@ -13157,17 +11926,13 @@ packages:
}
engines: { node: 6.* || 8.* || >= 10.* }
- /get-intrinsic@1.2.1:
+ /get-east-asian-width@1.3.0:
resolution:
{
- integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==,
+ integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==,
}
- dependencies:
- function-bind: 1.1.2
- has: 1.0.3
- has-proto: 1.0.3
- has-symbols: 1.0.3
- dev: true
+ engines: { node: '>=18' }
+ dev: false
/get-intrinsic@1.2.4:
resolution:
@@ -13227,17 +11992,6 @@ packages:
engines: { node: '>=16' }
dev: false
- /get-symbol-description@1.0.0:
- resolution:
- {
- integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- dev: true
-
/get-symbol-description@1.0.2:
resolution:
{
@@ -13250,10 +12004,10 @@ packages:
get-intrinsic: 1.2.4
dev: true
- /get-tsconfig@4.7.2:
+ /get-tsconfig@4.8.1:
resolution:
{
- integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==,
+ integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==,
}
dependencies:
resolve-pkg-maps: 1.0.0
@@ -13273,7 +12027,7 @@ packages:
nypm: 0.3.12
ohash: 1.1.4
pathe: 1.1.2
- tar: 6.2.0
+ tar: 6.2.1
dev: false
/git-config-path@2.0.0:
@@ -13310,6 +12064,13 @@ packages:
git-up: 7.0.0
dev: false
+ /github-slugger@2.0.0:
+ resolution:
+ {
+ integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==,
+ }
+ dev: false
+
/glob-parent@5.1.2:
resolution:
{
@@ -13328,31 +12089,24 @@ packages:
dependencies:
is-glob: 4.0.3
- /glob-to-regexp@0.4.1:
- resolution:
- {
- integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==,
- }
- dev: false
-
- /glob@10.3.10:
+ /glob@10.4.5:
resolution:
{
- integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==,
+ integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==,
}
- engines: { node: '>=16 || 14 >=14.17' }
hasBin: true
dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.3
- minipass: 7.0.4
- path-scurry: 1.10.1
+ foreground-child: 3.3.0
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.1
+ path-scurry: 1.11.1
- /glob@7.1.6:
+ /glob@7.1.7:
resolution:
{
- integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==,
+ integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==,
}
deprecated: Glob versions prior to v9 are no longer supported
dependencies:
@@ -13362,12 +12116,11 @@ packages:
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
- dev: true
- /glob@7.1.7:
+ /glob@7.2.3:
resolution:
{
- integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==,
+ integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==,
}
deprecated: Glob versions prior to v9 are no longer supported
dependencies:
@@ -13395,16 +12148,6 @@ packages:
}
engines: { node: '>=4' }
- /globals@13.20.0:
- resolution:
- {
- integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==,
- }
- engines: { node: '>=8' }
- dependencies:
- type-fest: 0.20.2
- dev: true
-
/globals@13.24.0:
resolution:
{
@@ -13414,16 +12157,6 @@ packages:
dependencies:
type-fest: 0.20.2
- /globalthis@1.0.3:
- resolution:
- {
- integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- define-properties: 1.2.1
- dev: true
-
/globalthis@1.0.4:
resolution:
{
@@ -13450,16 +12183,16 @@ packages:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.2.12
+ fast-glob: 3.3.2
ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
dev: true
- /globby@13.1.2:
+ /globby@13.2.2:
resolution:
{
- integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==,
+ integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==,
}
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
dependencies:
@@ -13511,6 +12244,19 @@ packages:
integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==,
}
+ /gray-matter@4.0.3:
+ resolution:
+ {
+ integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==,
+ }
+ engines: { node: '>=6.0' }
+ dependencies:
+ js-yaml: 3.14.1
+ kind-of: 6.0.3
+ section-matter: 1.0.0
+ strip-bom-string: 1.0.0
+ dev: false
+
/gunzip-maybe@1.4.2:
resolution:
{
@@ -13561,13 +12307,6 @@ packages:
}
dev: true
- /has-flag@3.0.0:
- resolution:
- {
- integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
- }
- engines: { node: '>=4' }
-
/has-flag@4.0.0:
resolution:
{
@@ -13575,15 +12314,6 @@ packages:
}
engines: { node: '>=8' }
- /has-property-descriptors@1.0.0:
- resolution:
- {
- integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==,
- }
- dependencies:
- get-intrinsic: 1.2.4
- dev: true
-
/has-property-descriptors@1.0.2:
resolution:
{
@@ -13592,14 +12322,6 @@ packages:
dependencies:
es-define-property: 1.0.0
- /has-proto@1.0.1:
- resolution:
- {
- integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==,
- }
- engines: { node: '>= 0.4' }
- dev: true
-
/has-proto@1.0.3:
resolution:
{
@@ -13629,15 +12351,6 @@ packages:
integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==,
}
- /has@1.0.3:
- resolution:
- {
- integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==,
- }
- engines: { node: '>= 0.4.0' }
- dependencies:
- function-bind: 1.1.1
-
/hash-sum@2.0.0:
resolution:
{
@@ -13654,6 +12367,75 @@ packages:
dependencies:
function-bind: 1.1.2
+ /hast-util-from-html@2.0.3:
+ resolution:
+ {
+ integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ devlop: 1.1.0
+ hast-util-from-parse5: 8.0.1
+ parse5: 7.2.1
+ vfile: 6.0.3
+ vfile-message: 4.0.2
+ dev: false
+
+ /hast-util-from-parse5@8.0.1:
+ resolution:
+ {
+ integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
+ devlop: 1.1.0
+ hastscript: 8.0.0
+ property-information: 6.5.0
+ vfile: 6.0.3
+ vfile-location: 5.0.3
+ web-namespaces: 2.0.1
+ dev: false
+
+ /hast-util-is-element@3.0.0:
+ resolution:
+ {
+ integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ dev: false
+
+ /hast-util-parse-selector@4.0.0:
+ resolution:
+ {
+ integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ dev: false
+
+ /hast-util-raw@9.0.4:
+ resolution:
+ {
+ integrity: sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
+ '@ungap/structured-clone': 1.2.0
+ hast-util-from-parse5: 8.0.1
+ hast-util-to-parse5: 8.0.0
+ html-void-elements: 3.0.0
+ mdast-util-to-hast: 13.2.0
+ parse5: 7.2.1
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+ web-namespaces: 2.0.1
+ zwitch: 2.0.4
+ dev: false
+
/hast-util-to-estree@2.3.3:
resolution:
{
@@ -13661,24 +12443,70 @@ packages:
}
dependencies:
'@types/estree': 1.0.6
- '@types/estree-jsx': 1.0.1
- '@types/hast': 2.3.6
- '@types/unist': 2.0.8
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 2.3.10
+ '@types/unist': 2.0.11
comma-separated-tokens: 2.0.3
estree-util-attach-comments: 2.1.1
estree-util-is-identifier-name: 2.1.0
hast-util-whitespace: 2.0.1
mdast-util-mdx-expression: 1.3.2
mdast-util-mdxjs-esm: 1.3.1
- property-information: 6.3.0
+ property-information: 6.5.0
space-separated-tokens: 2.0.2
- style-to-object: 0.4.2
+ style-to-object: 0.4.4
unist-util-position: 4.0.4
zwitch: 2.0.4
transitivePeerDependencies:
- supports-color
dev: true
+ /hast-util-to-html@9.0.3:
+ resolution:
+ {
+ integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
+ ccount: 2.0.1
+ comma-separated-tokens: 2.0.3
+ hast-util-whitespace: 3.0.0
+ html-void-elements: 3.0.0
+ mdast-util-to-hast: 13.2.0
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ stringify-entities: 4.0.4
+ zwitch: 2.0.4
+ dev: false
+
+ /hast-util-to-parse5@8.0.0:
+ resolution:
+ {
+ integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ web-namespaces: 2.0.1
+ zwitch: 2.0.4
+ dev: false
+
+ /hast-util-to-text@4.0.2:
+ resolution:
+ {
+ integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
+ hast-util-is-element: 3.0.0
+ unist-util-find-after: 5.0.0
+ dev: false
+
/hast-util-whitespace@2.0.1:
resolution:
{
@@ -13686,6 +12514,28 @@ packages:
}
dev: true
+ /hast-util-whitespace@3.0.0:
+ resolution:
+ {
+ integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ dev: false
+
+ /hastscript@8.0.0:
+ resolution:
+ {
+ integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ comma-separated-tokens: 2.0.3
+ hast-util-parse-selector: 4.0.0
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ dev: false
+
/hookable@5.5.3:
resolution:
{
@@ -13727,12 +12577,33 @@ packages:
}
dev: true
- /html-tags@3.3.1:
+ /html-escaper@3.0.3:
+ resolution:
+ {
+ integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==,
+ }
+ dev: false
+
+ /html-tags@3.3.1:
+ resolution:
+ {
+ integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==,
+ }
+ engines: { node: '>=8' }
+ dev: false
+
+ /html-void-elements@3.0.0:
+ resolution:
+ {
+ integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==,
+ }
+ dev: false
+
+ /http-cache-semantics@4.1.1:
resolution:
{
- integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==,
+ integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==,
}
- engines: { node: '>=8' }
dev: false
/http-errors@2.0.0:
@@ -13854,7 +12725,7 @@ packages:
safer-buffer: 2.1.2
dev: true
- /icss-utils@5.1.0(postcss@8.4.31):
+ /icss-utils@5.1.0(postcss@8.4.47):
resolution:
{
integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==,
@@ -13863,7 +12734,7 @@ packages:
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.47
dev: true
/ieee754@1.2.1:
@@ -13872,22 +12743,6 @@ packages:
integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==,
}
- /ignore@5.2.0:
- resolution:
- {
- integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==,
- }
- engines: { node: '>= 4' }
- dev: true
-
- /ignore@5.2.4:
- resolution:
- {
- integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==,
- }
- engines: { node: '>= 4' }
- dev: true
-
/ignore@5.3.2:
resolution:
{
@@ -13920,10 +12775,10 @@ packages:
parent-module: 1.0.1
resolve-from: 4.0.0
- /import-local@3.1.0:
+ /import-local@3.2.0:
resolution:
{
- integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==,
+ integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==,
}
engines: { node: '>=8' }
hasBin: true
@@ -13937,7 +12792,6 @@ packages:
{
integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==,
}
- dev: true
/impound@0.2.0:
resolution:
@@ -14015,30 +12869,6 @@ packages:
}
dev: true
- /internal-slot@1.0.3:
- resolution:
- {
- integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- get-intrinsic: 1.2.4
- has: 1.0.3
- side-channel: 1.0.6
- dev: true
-
- /internal-slot@1.0.5:
- resolution:
- {
- integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- get-intrinsic: 1.2.4
- has: 1.0.3
- side-channel: 1.0.6
- dev: true
-
/internal-slot@1.0.7:
resolution:
{
@@ -14112,17 +12942,6 @@ packages:
call-bind: 1.0.7
has-tostringtag: 1.0.2
- /is-array-buffer@3.0.2:
- resolution:
- {
- integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==,
- }
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- is-typed-array: 1.1.12
- dev: true
-
/is-array-buffer@3.0.4:
resolution:
{
@@ -14146,7 +12965,6 @@ packages:
{
integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==,
}
- requiresBuild: true
dev: false
optional: true
@@ -14176,7 +12994,7 @@ packages:
}
engines: { node: '>=8' }
dependencies:
- binary-extensions: 2.2.0
+ binary-extensions: 2.3.0
/is-boolean-object@1.1.2:
resolution:
@@ -14195,7 +13013,6 @@ packages:
integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==,
}
engines: { node: '>=4' }
- dev: true
/is-builtin-module@3.2.1:
resolution:
@@ -14207,29 +13024,21 @@ packages:
builtin-modules: 3.3.0
dev: true
- /is-callable@1.2.7:
- resolution:
- {
- integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==,
- }
- engines: { node: '>= 0.4' }
-
- /is-core-module@2.11.0:
+ /is-bun-module@1.2.1:
resolution:
{
- integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==,
+ integrity: sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==,
}
dependencies:
- has: 1.0.3
+ semver: 7.6.3
dev: true
- /is-core-module@2.13.0:
+ /is-callable@1.2.7:
resolution:
{
- integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==,
+ integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==,
}
- dependencies:
- has: 1.0.3
+ engines: { node: '>= 0.4' }
/is-core-module@2.15.1:
resolution:
@@ -14239,7 +13048,6 @@ packages:
engines: { node: '>= 0.4' }
dependencies:
hasown: 2.0.2
- dev: true
/is-data-view@1.0.1:
resolution:
@@ -14282,6 +13090,7 @@ packages:
}
engines: { node: '>=8' }
hasBin: true
+ dev: false
/is-docker@3.0.0:
resolution:
@@ -14292,6 +13101,14 @@ packages:
hasBin: true
dev: false
+ /is-extendable@0.1.1:
+ resolution:
+ {
+ integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==,
+ }
+ engines: { node: '>=0.10.0' }
+ dev: false
+
/is-extglob@2.1.1:
resolution:
{
@@ -14394,27 +13211,28 @@ packages:
engines: { node: '>=8' }
dev: true
- /is-map@2.0.2:
+ /is-interactive@2.0.0:
resolution:
{
- integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==,
+ integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==,
}
- dev: true
+ engines: { node: '>=12' }
+ dev: false
- /is-module@1.0.0:
+ /is-map@2.0.3:
resolution:
{
- integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==,
+ integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==,
}
- dev: false
+ engines: { node: '>= 0.4' }
+ dev: true
- /is-negative-zero@2.0.2:
+ /is-module@1.0.0:
resolution:
{
- integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==,
+ integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==,
}
- engines: { node: '>= 0.4' }
- dev: true
+ dev: false
/is-negative-zero@2.0.3:
resolution:
@@ -14470,7 +13288,6 @@ packages:
integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==,
}
engines: { node: '>=12' }
- dev: true
/is-potential-custom-element-name@1.0.1:
resolution:
@@ -14507,20 +13324,12 @@ packages:
has-tostringtag: 1.0.2
dev: true
- /is-set@2.0.2:
+ /is-set@2.0.3:
resolution:
{
- integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==,
+ integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==,
}
- dev: true
-
- /is-shared-array-buffer@1.0.2:
- resolution:
- {
- integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==,
- }
- dependencies:
- call-bind: 1.0.7
+ engines: { node: '>= 0.4' }
dev: true
/is-shared-array-buffer@1.0.3:
@@ -14577,15 +13386,6 @@ packages:
has-symbols: 1.0.3
dev: true
- /is-typed-array@1.1.12:
- resolution:
- {
- integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- which-typed-array: 1.1.15
-
/is-typed-array@1.1.13:
resolution:
{
@@ -14594,7 +13394,6 @@ packages:
engines: { node: '>= 0.4' }
dependencies:
which-typed-array: 1.1.15
- dev: true
/is-unicode-supported@0.1.0:
resolution:
@@ -14604,11 +13403,28 @@ packages:
engines: { node: '>=10' }
dev: true
- /is-weakmap@2.0.1:
+ /is-unicode-supported@1.3.0:
resolution:
{
- integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==,
+ integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==,
}
+ engines: { node: '>=12' }
+ dev: false
+
+ /is-unicode-supported@2.1.0:
+ resolution:
+ {
+ integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==,
+ }
+ engines: { node: '>=18' }
+ dev: false
+
+ /is-weakmap@2.0.2:
+ resolution:
+ {
+ integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==,
+ }
+ engines: { node: '>= 0.4' }
dev: true
/is-weakref@1.0.2:
@@ -14620,11 +13436,12 @@ packages:
call-bind: 1.0.7
dev: true
- /is-weakset@2.0.2:
+ /is-weakset@2.0.3:
resolution:
{
- integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==,
+ integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==,
}
+ engines: { node: '>= 0.4' }
dependencies:
call-bind: 1.0.7
get-intrinsic: 1.2.4
@@ -14646,6 +13463,7 @@ packages:
engines: { node: '>=8' }
dependencies:
is-docker: 2.2.1
+ dev: false
/is-wsl@3.1.0:
resolution:
@@ -14688,10 +13506,10 @@ packages:
engines: { node: '>=12' }
dev: false
- /isbot@3.7.0:
+ /isbot@3.8.0:
resolution:
{
- integrity: sha512-9BcjlI89966BqWJmYdTnRub85sit931MyCthSIPtgoOsTjoW7A2MVa09HzPpYE2+G4vyAxfDvR0AbUGV0FInQg==,
+ integrity: sha512-vne1mzQUTR+qsMLeCBL9+/tgnDXRyc2pygLGl/WsgA+EZKIiB5Ehu0CiVTHIIk30zhJ24uGz4M5Ppse37aR0Hg==,
}
engines: { node: '>=12' }
dev: false
@@ -14702,10 +13520,10 @@ packages:
integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
}
- /istanbul-lib-coverage@3.2.0:
+ /istanbul-lib-coverage@3.2.2:
resolution:
{
- integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==,
+ integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==,
}
engines: { node: '>=8' }
dev: true
@@ -14720,37 +13538,37 @@ packages:
'@babel/core': 7.26.0
'@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.2.2
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /istanbul-lib-instrument@6.0.1:
+ /istanbul-lib-instrument@6.0.3:
resolution:
{
- integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==,
+ integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==,
}
engines: { node: '>=10' }
dependencies:
'@babel/core': 7.26.0
'@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.2.2
semver: 7.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /istanbul-lib-report@3.0.0:
+ /istanbul-lib-report@3.0.1:
resolution:
{
- integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==,
+ integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==,
}
- engines: { node: '>=8' }
+ engines: { node: '>=10' }
dependencies:
- istanbul-lib-coverage: 3.2.0
- make-dir: 3.1.0
+ istanbul-lib-coverage: 3.2.2
+ make-dir: 4.0.0
supports-color: 7.2.0
dev: true
@@ -14762,34 +13580,21 @@ packages:
engines: { node: '>=10' }
dependencies:
debug: 4.3.7(supports-color@9.4.0)
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
- supports-color
dev: true
- /istanbul-reports@3.1.5:
+ /istanbul-reports@3.1.7:
resolution:
{
- integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==,
+ integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==,
}
engines: { node: '>=8' }
dependencies:
html-escaper: 2.0.2
- istanbul-lib-report: 3.0.0
- dev: true
-
- /iterator.prototype@1.1.2:
- resolution:
- {
- integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==,
- }
- dependencies:
- define-properties: 1.2.1
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- reflect.getprototypeof: 1.0.4
- set-function-name: 2.0.2
+ istanbul-lib-report: 3.0.1
dev: true
/iterator.prototype@1.1.3:
@@ -14802,16 +13607,15 @@ packages:
define-properties: 1.2.1
get-intrinsic: 1.2.4
has-symbols: 1.0.3
- reflect.getprototypeof: 1.0.4
+ reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
dev: true
- /jackspeak@2.3.6:
+ /jackspeak@3.4.3:
resolution:
{
- integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==,
+ integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==,
}
- engines: { node: '>=14' }
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
@@ -14847,10 +13651,10 @@ packages:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
chalk: 4.1.2
co: 4.6.0
- dedent: 1.5.1
+ dedent: 1.5.3
is-generator-fn: 2.1.0
jest-each: 29.7.0
jest-matcher-utils: 29.7.0
@@ -14860,7 +13664,7 @@ packages:
jest-util: 29.7.0
p-limit: 3.1.0
pretty-format: 29.7.0
- pure-rand: 6.0.2
+ pure-rand: 6.1.0
slash: 3.0.0
stack-utils: 2.0.6
transitivePeerDependencies:
@@ -14868,7 +13672,7 @@ packages:
- supports-color
dev: true
- /jest-cli@29.7.0(@types/node@20.3.1)(ts-node@10.9.2):
+ /jest-cli@29.7.0(@types/node@20.17.6)(ts-node@10.9.2):
resolution:
{
integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==,
@@ -14885,13 +13689,13 @@ packages:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.3.1)(ts-node@10.9.2)
+ create-jest: 29.7.0(@types/node@20.17.6)(ts-node@10.9.2)
exit: 0.1.2
- import-local: 3.1.0
- jest-config: 29.7.0(@types/node@20.3.1)(ts-node@10.9.2)
+ import-local: 3.2.0
+ jest-config: 29.7.0(@types/node@20.17.6)(ts-node@10.9.2)
jest-util: 29.7.0
jest-validate: 29.7.0
- yargs: 17.6.2
+ yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -14899,7 +13703,7 @@ packages:
- ts-node
dev: true
- /jest-config@29.7.0(@types/node@20.3.1)(ts-node@10.9.2):
+ /jest-config@29.7.0(@types/node@20.17.6)(ts-node@10.9.2):
resolution:
{
integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==,
@@ -14914,15 +13718,15 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.3.1
- babel-jest: 29.7.0(@babel/core@7.23.0)
+ '@types/node': 20.17.6
+ babel-jest: 29.7.0(@babel/core@7.26.0)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
- glob: 7.1.7
+ glob: 7.2.3
graceful-fs: 4.2.11
jest-circus: 29.7.0
jest-environment-node: 29.7.0
@@ -14937,25 +13741,12 @@ packages:
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.2(@swc/core@1.8.0)(@types/node@20.3.1)(typescript@5.6.3)
+ ts-node: 10.9.2(@swc/core@1.8.0)(@types/node@20.17.6)(typescript@5.6.3)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
dev: true
- /jest-diff@29.5.0:
- resolution:
- {
- integrity: sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- dependencies:
- chalk: 4.1.2
- diff-sequences: 29.6.3
- jest-get-type: 29.6.3
- pretty-format: 29.7.0
- dev: true
-
/jest-diff@29.7.0:
resolution:
{
@@ -15009,7 +13800,7 @@ packages:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
'@types/jsdom': 20.0.1
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
jest-mock: 29.7.0
jest-util: 29.7.0
jsdom: 20.0.3
@@ -15029,19 +13820,11 @@ packages:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
jest-mock: 29.7.0
jest-util: 29.7.0
dev: true
- /jest-get-type@29.4.3:
- resolution:
- {
- integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- dev: true
-
/jest-get-type@29.6.3:
resolution:
{
@@ -15058,8 +13841,8 @@ packages:
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
'@jest/types': 29.6.3
- '@types/graceful-fs': 4.1.5
- '@types/node': 20.3.1
+ '@types/graceful-fs': 4.1.9
+ '@types/node': 20.17.6
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -15083,19 +13866,6 @@ packages:
pretty-format: 29.7.0
dev: true
- /jest-matcher-utils@29.5.0:
- resolution:
- {
- integrity: sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- dependencies:
- chalk: 4.1.2
- jest-diff: 29.5.0
- jest-get-type: 29.4.3
- pretty-format: 29.7.0
- dev: true
-
/jest-matcher-utils@29.7.0:
resolution:
{
@@ -15109,24 +13879,6 @@ packages:
pretty-format: 29.7.0
dev: true
- /jest-message-util@29.5.0:
- resolution:
- {
- integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- dependencies:
- '@babel/code-frame': 7.22.13
- '@jest/types': 29.6.3
- '@types/stack-utils': 2.0.1
- chalk: 4.1.2
- graceful-fs: 4.2.11
- micromatch: 4.0.8
- pretty-format: 29.7.0
- slash: 3.0.0
- stack-utils: 2.0.6
- dev: true
-
/jest-message-util@29.7.0:
resolution:
{
@@ -15134,9 +13886,9 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.26.2
'@jest/types': 29.6.3
- '@types/stack-utils': 2.0.1
+ '@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.8
@@ -15153,7 +13905,7 @@ packages:
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
jest-util: 29.7.0
dev: true
@@ -15206,7 +13958,7 @@ packages:
jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0)
jest-util: 29.7.0
jest-validate: 29.7.0
- resolve: 1.22.6
+ resolve: 1.22.8
resolve.exports: 2.0.2
slash: 3.0.0
dev: true
@@ -15223,7 +13975,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -15257,11 +14009,11 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
chalk: 4.1.2
- cjs-module-lexer: 1.2.2
- collect-v8-coverage: 1.0.1
- glob: 7.1.7
+ cjs-module-lexer: 1.4.1
+ collect-v8-coverage: 1.0.2
+ glob: 7.2.3
graceful-fs: 4.2.11
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
@@ -15283,15 +14035,15 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
- '@babel/core': 7.23.0
- '@babel/generator': 7.23.0
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0)
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.2
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
'@babel/types': 7.26.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -15307,21 +14059,6 @@ packages:
- supports-color
dev: true
- /jest-util@29.5.0:
- resolution:
- {
- integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- dependencies:
- '@jest/types': 29.6.3
- '@types/node': 20.3.1
- chalk: 4.1.2
- ci-info: 3.9.0
- graceful-fs: 4.2.11
- picomatch: 2.3.1
- dev: true
-
/jest-util@29.7.0:
resolution:
{
@@ -15330,7 +14067,7 @@ packages:
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -15361,7 +14098,7 @@ packages:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -15376,13 +14113,13 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
- '@types/node': 20.3.1
+ '@types/node': 20.17.6
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jest@29.7.0(@types/node@20.3.1)(ts-node@10.9.2):
+ /jest@29.7.0(@types/node@20.17.6)(ts-node@10.9.2):
resolution:
{
integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==,
@@ -15397,8 +14134,8 @@ packages:
dependencies:
'@jest/core': 29.7.0(ts-node@10.9.2)
'@jest/types': 29.6.3
- import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@20.3.1)(ts-node@10.9.2)
+ import-local: 3.2.0
+ jest-cli: 29.7.0(@types/node@20.17.6)(ts-node@10.9.2)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -15467,7 +14204,6 @@ packages:
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- dev: true
/js-yaml@4.1.0:
resolution:
@@ -15496,25 +14232,25 @@ packages:
cssom: 0.5.0
cssstyle: 2.3.0
data-urls: 3.0.2
- decimal.js: 10.4.2
+ decimal.js: 10.4.3
domexception: 4.0.0
- escodegen: 2.0.0
- form-data: 4.0.0
+ escodegen: 2.1.0
+ form-data: 4.0.1
html-encoding-sniffer: 3.0.0
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.2
- parse5: 7.1.2
+ nwsapi: 2.2.13
+ parse5: 7.2.1
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 4.1.2
+ tough-cookie: 4.1.4
w3c-xmlserializer: 4.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.11.0
+ ws: 8.18.0
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -15530,21 +14266,19 @@ packages:
hasBin: true
dev: true
- /jsesc@2.5.2:
+ /jsesc@3.0.2:
resolution:
{
- integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
+ integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==,
}
- engines: { node: '>=4' }
+ engines: { node: '>=6' }
hasBin: true
- /jsesc@3.0.2:
+ /json-buffer@3.0.1:
resolution:
{
- integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==,
+ integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==,
}
- engines: { node: '>=6' }
- hasBin: true
/json-parse-even-better-errors@2.3.1:
resolution:
@@ -15553,10 +14287,10 @@ packages:
}
dev: true
- /json-parse-even-better-errors@3.0.0:
+ /json-parse-even-better-errors@3.0.2:
resolution:
{
- integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==,
+ integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==,
}
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
dev: true
@@ -15572,7 +14306,6 @@ packages:
{
integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==,
}
- dev: false
/json-stable-stringify-without-jsonify@1.0.1:
resolution:
@@ -15587,7 +14320,7 @@ packages:
}
hasBin: true
dependencies:
- minimist: 1.2.7
+ minimist: 1.2.8
dev: true
/json5@2.2.3:
@@ -15598,10 +14331,17 @@ packages:
engines: { node: '>=6' }
hasBin: true
- /jsonc-parser@3.2.0:
+ /jsonc-parser@2.3.1:
+ resolution:
+ {
+ integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==,
+ }
+ dev: true
+
+ /jsonc-parser@3.3.1:
resolution:
{
- integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==,
+ integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==,
}
dev: true
@@ -15611,33 +14351,38 @@ packages:
integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
}
dependencies:
- universalify: 2.0.0
+ universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
- /jsx-ast-utils@3.3.3:
+ /jsx-ast-utils@3.3.5:
resolution:
{
- integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==,
+ integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==,
}
engines: { node: '>=4.0' }
dependencies:
- array-includes: 3.1.5
- object.assign: 4.1.4
+ array-includes: 3.1.8
+ array.prototype.flat: 1.3.2
+ object.assign: 4.1.5
+ object.values: 1.2.0
dev: true
- /jsx-ast-utils@3.3.5:
+ /keyv@4.5.4:
resolution:
{
- integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==,
+ integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==,
}
- engines: { node: '>=4.0' }
dependencies:
- array-includes: 3.1.8
- array.prototype.flat: 1.3.2
- object.assign: 4.1.4
- object.values: 1.1.7
- dev: true
+ json-buffer: 3.0.1
+
+ /kind-of@6.0.3:
+ resolution:
+ {
+ integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==,
+ }
+ engines: { node: '>=0.10.0' }
+ dev: false
/kleur@3.0.3:
resolution:
@@ -15675,20 +14420,11 @@ packages:
}
dev: false
- /language-subtag-registry@0.3.22:
- resolution:
- {
- integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==,
- }
- dev: true
-
- /language-tags@1.0.5:
+ /language-subtag-registry@0.3.23:
resolution:
{
- integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==,
+ integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==,
}
- dependencies:
- language-subtag-registry: 0.3.22
dev: true
/language-tags@1.0.9:
@@ -15698,7 +14434,7 @@ packages:
}
engines: { node: '>=0.10' }
dependencies:
- language-subtag-registry: 0.3.22
+ language-subtag-registry: 0.3.23
dev: true
/launch-editor@2.9.1:
@@ -15729,17 +14465,6 @@ packages:
engines: { node: '>=6' }
dev: true
- /levn@0.3.0:
- resolution:
- {
- integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==,
- }
- engines: { node: '>= 0.8.0' }
- dependencies:
- prelude-ls: 1.1.2
- type-check: 0.3.2
- dev: true
-
/levn@0.4.1:
resolution:
{
@@ -15756,6 +14481,7 @@ packages:
integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==,
}
engines: { node: '>=10' }
+ dev: false
/lilconfig@3.1.2:
resolution:
@@ -15763,7 +14489,6 @@ packages:
integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==,
}
engines: { node: '>=14' }
- dev: false
/lines-and-columns@1.2.4:
resolution:
@@ -15783,16 +14508,16 @@ packages:
chalk: 5.2.0
cli-truncate: 3.1.0
commander: 10.0.1
- debug: 4.3.4
- execa: 7.1.1
+ debug: 4.3.7(supports-color@9.4.0)
+ execa: 7.2.0
lilconfig: 2.1.0
listr2: 5.0.8
- micromatch: 4.0.5
+ micromatch: 4.0.8
normalize-path: 3.0.0
- object-inspect: 1.12.3
+ object-inspect: 1.13.2
pidtree: 0.6.0
- string-argv: 0.3.1
- yaml: 2.3.1
+ string-argv: 0.3.2
+ yaml: 2.6.0
transitivePeerDependencies:
- enquirer
- supports-color
@@ -15838,37 +14563,42 @@ packages:
optional: true
dependencies:
cli-truncate: 2.1.0
- colorette: 2.0.19
+ colorette: 2.0.20
log-update: 4.0.0
p-map: 4.0.0
- rfdc: 1.3.0
+ rfdc: 1.4.1
rxjs: 7.8.1
through: 2.3.8
wrap-ansi: 7.0.0
dev: false
- /load-tsconfig@0.2.3:
+ /load-tsconfig@0.2.5:
resolution:
{
- integrity: sha512-iyT2MXws+dc2Wi6o3grCFtGXpeMvHmJqS27sMPGtV2eUu4PeFnG+33I8BlFK1t1NWMjOpcx9bridn5yxLDX2gQ==,
+ integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==,
}
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
dev: true
- /loader-utils@3.2.1:
+ /load-yaml-file@0.2.0:
resolution:
{
- integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==,
+ integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==,
}
- engines: { node: '>= 12.13.0' }
- dev: true
+ engines: { node: '>=6' }
+ dependencies:
+ graceful-fs: 4.2.11
+ js-yaml: 3.14.1
+ pify: 4.0.1
+ strip-bom: 3.0.0
+ dev: false
- /local-pkg@0.4.3:
+ /loader-utils@3.3.1:
resolution:
{
- integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==,
+ integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==,
}
- engines: { node: '>=14' }
+ engines: { node: '>= 12.13.0' }
dev: true
/local-pkg@0.5.0:
@@ -15880,7 +14610,6 @@ packages:
dependencies:
mlly: 1.7.2
pkg-types: 1.2.1
- dev: false
/locate-character@3.0.0:
resolution:
@@ -15896,7 +14625,6 @@ packages:
engines: { node: '>=8' }
dependencies:
p-locate: 4.1.0
- dev: true
/locate-path@6.0.0:
resolution:
@@ -15986,6 +14714,17 @@ packages:
is-unicode-supported: 0.1.0
dev: true
+ /log-symbols@6.0.0:
+ resolution:
+ {
+ integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==,
+ }
+ engines: { node: '>=18' }
+ dependencies:
+ chalk: 5.3.0
+ is-unicode-supported: 1.3.0
+ dev: false
+
/log-update@4.0.0:
resolution:
{
@@ -16004,7 +14743,6 @@ packages:
{
integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==,
}
- dev: true
/loose-envify@1.4.0:
resolution:
@@ -16029,16 +14767,6 @@ packages:
dependencies:
yallist: 3.1.1
- /lru-cache@6.0.0:
- resolution:
- {
- integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==,
- }
- engines: { node: '>=10' }
- dependencies:
- yallist: 4.0.0
- dev: true
-
/lru-cache@7.18.3:
resolution:
{
@@ -16065,16 +14793,6 @@ packages:
magic-string: 0.30.12
dev: false
- /magic-string@0.27.0:
- resolution:
- {
- integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==,
- }
- engines: { node: '>=12' }
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
- dev: false
-
/magic-string@0.30.12:
resolution:
{
@@ -16103,6 +14821,16 @@ packages:
dependencies:
semver: 6.3.1
+ /make-dir@4.0.0:
+ resolution:
+ {
+ integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==,
+ }
+ engines: { node: '>=10' }
+ dependencies:
+ semver: 7.6.3
+ dev: true
+
/make-error@1.3.6:
resolution:
{
@@ -16127,25 +14855,55 @@ packages:
engines: { node: '>=0.10.0' }
dev: true
+ /markdown-table@3.0.4:
+ resolution:
+ {
+ integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==,
+ }
+ dev: false
+
/mdast-util-definitions@5.1.2:
resolution:
{
integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==,
}
dependencies:
- '@types/mdast': 3.0.13
- '@types/unist': 2.0.8
+ '@types/mdast': 3.0.15
+ '@types/unist': 2.0.11
unist-util-visit: 4.1.2
dev: true
+ /mdast-util-definitions@6.0.0:
+ resolution:
+ {
+ integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ unist-util-visit: 5.0.0
+ dev: false
+
+ /mdast-util-find-and-replace@3.0.1:
+ resolution:
+ {
+ integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ escape-string-regexp: 5.0.0
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
+ dev: false
+
/mdast-util-from-markdown@1.3.1:
resolution:
{
integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==,
}
dependencies:
- '@types/mdast': 3.0.13
- '@types/unist': 2.0.8
+ '@types/mdast': 3.0.15
+ '@types/unist': 2.0.11
decode-named-character-reference: 1.0.2
mdast-util-to-string: 3.2.0
micromark: 3.2.0
@@ -16160,26 +14918,135 @@ packages:
- supports-color
dev: true
+ /mdast-util-from-markdown@2.0.2:
+ resolution:
+ {
+ integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ decode-named-character-reference: 1.0.2
+ devlop: 1.1.0
+ mdast-util-to-string: 4.0.0
+ micromark: 4.0.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-decode-string: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ unist-util-stringify-position: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/mdast-util-frontmatter@1.0.1:
resolution:
{
integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==,
}
dependencies:
- '@types/mdast': 3.0.13
+ '@types/mdast': 3.0.15
mdast-util-to-markdown: 1.5.0
micromark-extension-frontmatter: 1.1.1
dev: true
+ /mdast-util-gfm-autolink-literal@2.0.1:
+ resolution:
+ {
+ integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ ccount: 2.0.1
+ devlop: 1.1.0
+ mdast-util-find-and-replace: 3.0.1
+ micromark-util-character: 2.1.0
+ dev: false
+
+ /mdast-util-gfm-footnote@2.0.0:
+ resolution:
+ {
+ integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ micromark-util-normalize-identifier: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-gfm-strikethrough@2.0.0:
+ resolution:
+ {
+ integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-gfm-table@2.0.0:
+ resolution:
+ {
+ integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ markdown-table: 3.0.4
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-gfm-task-list-item@2.0.0:
+ resolution:
+ {
+ integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-gfm@3.0.0:
+ resolution:
+ {
+ integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==,
+ }
+ dependencies:
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-gfm-autolink-literal: 2.0.1
+ mdast-util-gfm-footnote: 2.0.0
+ mdast-util-gfm-strikethrough: 2.0.0
+ mdast-util-gfm-table: 2.0.0
+ mdast-util-gfm-task-list-item: 2.0.0
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/mdast-util-mdx-expression@1.3.2:
resolution:
{
integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==,
}
dependencies:
- '@types/estree-jsx': 1.0.1
- '@types/hast': 2.3.6
- '@types/mdast': 3.0.13
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 2.3.10
+ '@types/mdast': 3.0.15
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
@@ -16192,15 +15059,15 @@ packages:
integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==,
}
dependencies:
- '@types/estree-jsx': 1.0.1
- '@types/hast': 2.3.6
- '@types/mdast': 3.0.13
- '@types/unist': 2.0.8
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 2.3.10
+ '@types/mdast': 3.0.15
+ '@types/unist': 2.0.11
ccount: 2.0.1
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
parse-entities: 4.0.1
- stringify-entities: 4.0.3
+ stringify-entities: 4.0.4
unist-util-remove-position: 4.0.2
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
@@ -16229,9 +15096,9 @@ packages:
integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==,
}
dependencies:
- '@types/estree-jsx': 1.0.1
- '@types/hast': 2.3.6
- '@types/mdast': 3.0.13
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 2.3.10
+ '@types/mdast': 3.0.15
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
@@ -16244,18 +15111,28 @@ packages:
integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==,
}
dependencies:
- '@types/mdast': 3.0.13
+ '@types/mdast': 3.0.15
unist-util-is: 5.2.1
dev: true
+ /mdast-util-phrasing@4.1.0:
+ resolution:
+ {
+ integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ unist-util-is: 6.0.0
+ dev: false
+
/mdast-util-to-hast@12.3.0:
resolution:
{
integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==,
}
dependencies:
- '@types/hast': 2.3.6
- '@types/mdast': 3.0.13
+ '@types/hast': 2.3.10
+ '@types/mdast': 3.0.15
mdast-util-definitions: 5.1.2
micromark-util-sanitize-uri: 1.2.0
trim-lines: 3.0.1
@@ -16264,14 +15141,31 @@ packages:
unist-util-visit: 4.1.2
dev: true
+ /mdast-util-to-hast@13.2.0:
+ resolution:
+ {
+ integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@ungap/structured-clone': 1.2.0
+ devlop: 1.1.0
+ micromark-util-sanitize-uri: 2.0.0
+ trim-lines: 3.0.1
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+ dev: false
+
/mdast-util-to-markdown@1.5.0:
resolution:
{
integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==,
}
dependencies:
- '@types/mdast': 3.0.13
- '@types/unist': 2.0.8
+ '@types/mdast': 3.0.15
+ '@types/unist': 2.0.11
longest-streak: 3.1.0
mdast-util-phrasing: 3.0.1
mdast-util-to-string: 3.2.0
@@ -16280,15 +15174,41 @@ packages:
zwitch: 2.0.4
dev: true
+ /mdast-util-to-markdown@2.1.2:
+ resolution:
+ {
+ integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ longest-streak: 3.1.0
+ mdast-util-phrasing: 4.1.0
+ mdast-util-to-string: 4.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-decode-string: 2.0.0
+ unist-util-visit: 5.0.0
+ zwitch: 2.0.4
+ dev: false
+
/mdast-util-to-string@3.2.0:
resolution:
{
integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==,
}
dependencies:
- '@types/mdast': 3.0.13
+ '@types/mdast': 3.0.15
dev: true
+ /mdast-util-to-string@4.0.0:
+ resolution:
+ {
+ integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ dev: false
+
/mdn-data@2.0.28:
resolution:
{
@@ -16309,7 +15229,7 @@ packages:
integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==,
}
dependencies:
- '@babel/runtime': 7.23.1
+ '@babel/runtime': 7.26.0
dev: true
/media-typer@0.3.0:
@@ -16319,10 +15239,10 @@ packages:
}
engines: { node: '>= 0.6' }
- /merge-descriptors@1.0.1:
+ /merge-descriptors@1.0.3:
resolution:
{
- integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==,
+ integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==,
}
/merge-stream@2.0.0:
@@ -16369,6 +15289,30 @@ packages:
uvu: 0.5.6
dev: true
+ /micromark-core-commonmark@2.0.1:
+ resolution:
+ {
+ integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==,
+ }
+ dependencies:
+ decode-named-character-reference: 1.0.2
+ devlop: 1.1.0
+ micromark-factory-destination: 2.0.0
+ micromark-factory-label: 2.0.0
+ micromark-factory-space: 2.0.0
+ micromark-factory-title: 2.0.0
+ micromark-factory-whitespace: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-html-tag-name: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-subtokenize: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-extension-frontmatter@1.1.1:
resolution:
{
@@ -16381,6 +15325,99 @@ packages:
micromark-util-types: 1.1.0
dev: true
+ /micromark-extension-gfm-autolink-literal@2.1.0:
+ resolution:
+ {
+ integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==,
+ }
+ dependencies:
+ micromark-util-character: 2.1.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-footnote@2.1.0:
+ resolution:
+ {
+ integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==,
+ }
+ dependencies:
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-strikethrough@2.1.0:
+ resolution:
+ {
+ integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==,
+ }
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-table@2.1.0:
+ resolution:
+ {
+ integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==,
+ }
+ dependencies:
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-tagfilter@2.0.0:
+ resolution:
+ {
+ integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==,
+ }
+ dependencies:
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-task-list-item@2.1.0:
+ resolution:
+ {
+ integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==,
+ }
+ dependencies:
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm@3.0.0:
+ resolution:
+ {
+ integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==,
+ }
+ dependencies:
+ micromark-extension-gfm-autolink-literal: 2.1.0
+ micromark-extension-gfm-footnote: 2.1.0
+ micromark-extension-gfm-strikethrough: 2.1.0
+ micromark-extension-gfm-table: 2.1.0
+ micromark-extension-gfm-tagfilter: 2.0.0
+ micromark-extension-gfm-task-list-item: 2.1.0
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-extension-mdx-expression@1.0.8:
resolution:
{
@@ -16468,6 +15505,17 @@ packages:
micromark-util-types: 1.1.0
dev: true
+ /micromark-factory-destination@2.0.0:
+ resolution:
+ {
+ integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==,
+ }
+ dependencies:
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-factory-label@1.1.0:
resolution:
{
@@ -16480,6 +15528,18 @@ packages:
uvu: 0.5.6
dev: true
+ /micromark-factory-label@2.0.0:
+ resolution:
+ {
+ integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==,
+ }
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-factory-mdx-expression@1.0.9:
resolution:
{
@@ -16506,6 +15566,16 @@ packages:
micromark-util-types: 1.1.0
dev: true
+ /micromark-factory-space@2.0.0:
+ resolution:
+ {
+ integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==,
+ }
+ dependencies:
+ micromark-util-character: 2.1.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-factory-title@1.1.0:
resolution:
{
@@ -16518,6 +15588,18 @@ packages:
micromark-util-types: 1.1.0
dev: true
+ /micromark-factory-title@2.0.0:
+ resolution:
+ {
+ integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==,
+ }
+ dependencies:
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-factory-whitespace@1.1.0:
resolution:
{
@@ -16530,6 +15612,18 @@ packages:
micromark-util-types: 1.1.0
dev: true
+ /micromark-factory-whitespace@2.0.0:
+ resolution:
+ {
+ integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==,
+ }
+ dependencies:
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-util-character@1.2.0:
resolution:
{
@@ -16540,6 +15634,16 @@ packages:
micromark-util-types: 1.1.0
dev: true
+ /micromark-util-character@2.1.0:
+ resolution:
+ {
+ integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==,
+ }
+ dependencies:
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-util-chunked@1.1.0:
resolution:
{
@@ -16549,6 +15653,15 @@ packages:
micromark-util-symbol: 1.1.0
dev: true
+ /micromark-util-chunked@2.0.0:
+ resolution:
+ {
+ integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==,
+ }
+ dependencies:
+ micromark-util-symbol: 2.0.0
+ dev: false
+
/micromark-util-classify-character@1.1.0:
resolution:
{
@@ -16560,6 +15673,17 @@ packages:
micromark-util-types: 1.1.0
dev: true
+ /micromark-util-classify-character@2.0.0:
+ resolution:
+ {
+ integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==,
+ }
+ dependencies:
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-util-combine-extensions@1.1.0:
resolution:
{
@@ -16570,6 +15694,16 @@ packages:
micromark-util-types: 1.1.0
dev: true
+ /micromark-util-combine-extensions@2.0.0:
+ resolution:
+ {
+ integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==,
+ }
+ dependencies:
+ micromark-util-chunked: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-util-decode-numeric-character-reference@1.1.0:
resolution:
{
@@ -16579,6 +15713,15 @@ packages:
micromark-util-symbol: 1.1.0
dev: true
+ /micromark-util-decode-numeric-character-reference@2.0.1:
+ resolution:
+ {
+ integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==,
+ }
+ dependencies:
+ micromark-util-symbol: 2.0.0
+ dev: false
+
/micromark-util-decode-string@1.1.0:
resolution:
{
@@ -16591,6 +15734,18 @@ packages:
micromark-util-symbol: 1.1.0
dev: true
+ /micromark-util-decode-string@2.0.0:
+ resolution:
+ {
+ integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==,
+ }
+ dependencies:
+ decode-named-character-reference: 1.0.2
+ micromark-util-character: 2.1.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-symbol: 2.0.0
+ dev: false
+
/micromark-util-encode@1.1.0:
resolution:
{
@@ -16598,6 +15753,13 @@ packages:
}
dev: true
+ /micromark-util-encode@2.0.0:
+ resolution:
+ {
+ integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==,
+ }
+ dev: false
+
/micromark-util-events-to-acorn@1.2.3:
resolution:
{
@@ -16606,7 +15768,7 @@ packages:
dependencies:
'@types/acorn': 4.0.6
'@types/estree': 1.0.6
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
estree-util-visit: 1.2.1
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
@@ -16619,7 +15781,14 @@ packages:
{
integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==,
}
- dev: true
+ dev: true
+
+ /micromark-util-html-tag-name@2.0.0:
+ resolution:
+ {
+ integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==,
+ }
+ dev: false
/micromark-util-normalize-identifier@1.1.0:
resolution:
@@ -16630,6 +15799,15 @@ packages:
micromark-util-symbol: 1.1.0
dev: true
+ /micromark-util-normalize-identifier@2.0.0:
+ resolution:
+ {
+ integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==,
+ }
+ dependencies:
+ micromark-util-symbol: 2.0.0
+ dev: false
+
/micromark-util-resolve-all@1.1.0:
resolution:
{
@@ -16639,6 +15817,15 @@ packages:
micromark-util-types: 1.1.0
dev: true
+ /micromark-util-resolve-all@2.0.0:
+ resolution:
+ {
+ integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==,
+ }
+ dependencies:
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-util-sanitize-uri@1.2.0:
resolution:
{
@@ -16650,6 +15837,17 @@ packages:
micromark-util-symbol: 1.1.0
dev: true
+ /micromark-util-sanitize-uri@2.0.0:
+ resolution:
+ {
+ integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==,
+ }
+ dependencies:
+ micromark-util-character: 2.1.0
+ micromark-util-encode: 2.0.0
+ micromark-util-symbol: 2.0.0
+ dev: false
+
/micromark-util-subtokenize@1.1.0:
resolution:
{
@@ -16662,6 +15860,18 @@ packages:
uvu: 0.5.6
dev: true
+ /micromark-util-subtokenize@2.0.1:
+ resolution:
+ {
+ integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==,
+ }
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
/micromark-util-symbol@1.1.0:
resolution:
{
@@ -16669,6 +15879,13 @@ packages:
}
dev: true
+ /micromark-util-symbol@2.0.0:
+ resolution:
+ {
+ integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==,
+ }
+ dev: false
+
/micromark-util-types@1.1.0:
resolution:
{
@@ -16676,13 +15893,20 @@ packages:
}
dev: true
+ /micromark-util-types@2.0.0:
+ resolution:
+ {
+ integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==,
+ }
+ dev: false
+
/micromark@3.2.0:
resolution:
{
integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==,
}
dependencies:
- '@types/debug': 4.1.9
+ '@types/debug': 4.1.12
debug: 4.3.7(supports-color@9.4.0)
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
@@ -16703,15 +15927,31 @@ packages:
- supports-color
dev: true
- /micromatch@4.0.5:
+ /micromark@4.0.0:
resolution:
{
- integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==,
+ integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==,
}
- engines: { node: '>=8.6' }
dependencies:
- braces: 3.0.2
- picomatch: 2.3.1
+ '@types/debug': 4.1.12
+ debug: 4.3.7(supports-color@9.4.0)
+ decode-named-character-reference: 1.0.2
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-encode: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-subtokenize: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
/micromatch@4.0.8:
@@ -16731,6 +15971,13 @@ packages:
}
engines: { node: '>= 0.6' }
+ /mime-db@1.53.0:
+ resolution:
+ {
+ integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==,
+ }
+ engines: { node: '>= 0.6' }
+
/mime-types@2.1.35:
resolution:
{
@@ -16781,6 +16028,14 @@ packages:
engines: { node: '>=12' }
dev: false
+ /mimic-function@5.0.1:
+ resolution:
+ {
+ integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==,
+ }
+ engines: { node: '>=18' }
+ dev: false
+
/min-indent@1.0.1:
resolution:
{
@@ -16815,11 +16070,21 @@ packages:
engines: { node: '>=16 || 14 >=14.17' }
dependencies:
brace-expansion: 2.0.1
+ dev: true
+
+ /minimatch@9.0.5:
+ resolution:
+ {
+ integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==,
+ }
+ engines: { node: '>=16 || 14 >=14.17' }
+ dependencies:
+ brace-expansion: 2.0.1
- /minimist@1.2.7:
+ /minimist@1.2.8:
resolution:
{
- integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==,
+ integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==,
}
dev: true
@@ -16869,10 +16134,10 @@ packages:
}
engines: { node: '>=8' }
- /minipass@7.0.4:
+ /minipass@7.1.2:
resolution:
{
- integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==,
+ integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==,
}
engines: { node: '>=16 || 14 >=14.17' }
@@ -16919,6 +16184,13 @@ packages:
pkg-types: 1.2.1
ufo: 1.5.4
+ /modern-ahocorasick@1.0.1:
+ resolution:
+ {
+ integrity: sha512-yoe+JbhTClckZ67b2itRtistFKf8yPYelHLc7e5xAwtNAXxM6wJTUx2C7QeVSJFDzKT7bCIFyBVybPMKvmB9AA==,
+ }
+ dev: true
+
/morgan@1.10.0:
resolution:
{
@@ -16961,17 +16233,18 @@ packages:
integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==,
}
- /ms@2.1.2:
+ /ms@2.1.3:
resolution:
{
- integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
+ integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==,
}
- /ms@2.1.3:
+ /muggle-string@0.4.1:
resolution:
{
- integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==,
+ integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==,
}
+ dev: true
/mz@2.7.0:
resolution:
@@ -16984,14 +16257,6 @@ packages:
thenify-all: 1.6.0
dev: true
- /nanoid@3.3.6:
- resolution:
- {
- integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==,
- }
- engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
- hasBin: true
-
/nanoid@3.3.7:
resolution:
{
@@ -17043,47 +16308,12 @@ packages:
}
engines: { node: '>= 0.6' }
- /next@13.5.4(@babel/core@7.26.0)(react-dom@18.2.0)(react@18.2.0):
+ /negotiator@0.6.4:
resolution:
{
- integrity: sha512-+93un5S779gho8y9ASQhb/bTkQF17FNQOtXLKAj3lsNgltEcF0C5PMLLncDmH+8X1EnJH1kbqAERa29nRXqhjA==,
+ integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==,
}
- engines: { node: '>=16.14.0' }
- hasBin: true
- peerDependencies:
- '@opentelemetry/api': ^1.1.0
- react: ^18.2.0
- react-dom: ^18.2.0
- sass: ^1.3.0
- peerDependenciesMeta:
- '@opentelemetry/api':
- optional: true
- sass:
- optional: true
- dependencies:
- '@next/env': 13.5.4
- '@swc/helpers': 0.5.2
- busboy: 1.6.0
- caniuse-lite: 1.0.30001546
- postcss: 8.4.31
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- styled-jsx: 5.1.1(@babel/core@7.26.0)(react@18.2.0)
- watchpack: 2.4.0
- optionalDependencies:
- '@next/swc-darwin-arm64': 13.5.4
- '@next/swc-darwin-x64': 13.5.4
- '@next/swc-linux-arm64-gnu': 13.5.4
- '@next/swc-linux-arm64-musl': 13.5.4
- '@next/swc-linux-x64-gnu': 13.5.4
- '@next/swc-linux-x64-musl': 13.5.4
- '@next/swc-win32-arm64-msvc': 13.5.4
- '@next/swc-win32-ia32-msvc': 13.5.4
- '@next/swc-win32-x64-msvc': 13.5.4
- transitivePeerDependencies:
- - '@babel/core'
- - babel-plugin-macros
- dev: false
+ engines: { node: '>= 0.6' }
/next@14.1.0(@babel/core@7.26.0)(react-dom@18.2.0)(react@18.2.0):
resolution:
@@ -17106,7 +16336,7 @@ packages:
'@next/env': 14.1.0
'@swc/helpers': 0.5.2
busboy: 1.6.0
- caniuse-lite: 1.0.30001579
+ caniuse-lite: 1.0.30001677
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.2.0
@@ -17127,7 +16357,7 @@ packages:
- babel-plugin-macros
dev: false
- /next@15.0.1(@babel/core@7.23.0)(react-dom@19.0.0-rc-69d4b800-20241021)(react@19.0.0-rc-69d4b800-20241021):
+ /next@15.0.1(@babel/core@7.26.0)(react-dom@19.0.0-rc-69d4b800-20241021)(react@19.0.0-rc-69d4b800-20241021):
resolution:
{
integrity: sha512-PSkFkr/w7UnFWm+EP8y/QpHrJXMqpZzAXpergB/EqLPOh4SGPJXv1wj4mslr2hUZBAS9pX7/9YLIdxTv6fwytw==,
@@ -17155,11 +16385,11 @@ packages:
'@swc/counter': 0.1.3
'@swc/helpers': 0.5.13
busboy: 1.6.0
- caniuse-lite: 1.0.30001579
+ caniuse-lite: 1.0.30001677
postcss: 8.4.31
react: 19.0.0-rc-69d4b800-20241021
react-dom: 19.0.0-rc-69d4b800-20241021(react@19.0.0-rc-69d4b800-20241021)
- styled-jsx: 5.1.6(@babel/core@7.23.0)(react@19.0.0-rc-69d4b800-20241021)
+ styled-jsx: 5.1.6(@babel/core@7.26.0)(react@19.0.0-rc-69d4b800-20241021)
optionalDependencies:
'@next/swc-darwin-arm64': 15.0.1
'@next/swc-darwin-x64': 15.0.1
@@ -17175,10 +16405,10 @@ packages:
- babel-plugin-macros
dev: false
- /nitropack@2.10.2(typescript@5.6.3):
+ /nitropack@2.10.3(typescript@5.6.3):
resolution:
{
- integrity: sha512-DxmaAcT33CpeBGU6ppVfT9g1nbjxxkwa4ZEkMwFrbsvTrShAQ7mZf3bTkdAB18iZmthlSovBpY8ecE1FbNvtQw==,
+ integrity: sha512-7n+ITF7RbCMwZZzyacxJ9eMCnWuE60omGJEyLM5PQRKS4Vu5w6OOCvf4C6E3UC0UryFuUIwGbJ3M+tIP9Az9OQ==,
}
engines: { node: ^16.11.0 || >=17.0.0 }
hasBin: true
@@ -17199,7 +16429,7 @@ packages:
'@rollup/plugin-terser': 0.4.4(rollup@4.24.4)
'@rollup/pluginutils': 5.1.3(rollup@4.24.4)
'@types/http-proxy': 1.17.15
- '@vercel/nft': 0.27.5
+ '@vercel/nft': 0.27.6
archiver: 7.0.1
c12: 2.0.1(magicast@0.3.5)
chokidar: 3.6.0
@@ -17280,6 +16510,15 @@ packages:
- webpack-sources
dev: false
+ /nlcst-to-string@3.1.1:
+ resolution:
+ {
+ integrity: sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==,
+ }
+ dependencies:
+ '@types/nlcst': 1.0.4
+ dev: false
+
/node-addon-api@7.1.1:
resolution:
{
@@ -17330,12 +16569,6 @@ packages:
}
dev: true
- /node-releases@2.0.13:
- resolution:
- {
- integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==,
- }
-
/node-releases@2.0.18:
resolution:
{
@@ -17359,8 +16592,8 @@ packages:
}
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.6
- semver: 5.7.1
+ resolve: 1.22.8
+ semver: 5.7.2
validate-npm-package-license: 3.0.4
dev: true
@@ -17390,6 +16623,7 @@ packages:
integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==,
}
engines: { node: '>=0.10.0' }
+ dev: false
/npm-install-checks@6.3.0:
resolution:
@@ -17419,7 +16653,7 @@ packages:
hosted-git-info: 6.1.1
proc-log: 3.0.0
semver: 7.6.3
- validate-npm-package-name: 5.0.0
+ validate-npm-package-name: 5.0.1
dev: true
/npm-pick-manifest@8.0.2:
@@ -17444,10 +16678,10 @@ packages:
dependencies:
path-key: 3.1.1
- /npm-run-path@5.1.0:
+ /npm-run-path@5.3.0:
resolution:
{
- integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==,
+ integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==,
}
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
dependencies:
@@ -17535,7 +16769,7 @@ packages:
magic-string: 0.30.12
mlly: 1.7.2
nanotar: 0.1.1
- nitropack: 2.10.2(typescript@5.6.3)
+ nitropack: 2.10.3(typescript@5.6.3)
nuxi: 3.15.0
nypm: 0.3.12
ofetch: 1.4.1
@@ -17610,10 +16844,10 @@ packages:
- xml2js
dev: false
- /nwsapi@2.2.2:
+ /nwsapi@2.2.13:
resolution:
{
- integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==,
+ integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==,
}
dev: true
@@ -17640,13 +16874,6 @@ packages:
}
engines: { node: '>=0.10.0' }
- /object-inspect@1.12.3:
- resolution:
- {
- integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==,
- }
- dev: false
-
/object-inspect@1.13.2:
resolution:
{
@@ -17654,10 +16881,10 @@ packages:
}
engines: { node: '>= 0.4' }
- /object-is@1.1.5:
+ /object-is@1.1.6:
resolution:
{
- integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==,
+ integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==,
}
engines: { node: '>= 0.4' }
dependencies:
@@ -17673,19 +16900,6 @@ packages:
engines: { node: '>= 0.4' }
dev: true
- /object.assign@4.1.4:
- resolution:
- {
- integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- has-symbols: 1.0.3
- object-keys: 1.1.1
- dev: true
-
/object.assign@4.1.5:
resolution:
{
@@ -17699,18 +16913,6 @@ packages:
object-keys: 1.1.1
dev: true
- /object.entries@1.1.7:
- resolution:
- {
- integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.1
- es-abstract: 1.22.2
- dev: true
-
/object.entries@1.1.8:
resolution:
{
@@ -17723,18 +16925,6 @@ packages:
es-object-atoms: 1.0.0
dev: true
- /object.fromentries@2.0.7:
- resolution:
- {
- integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.1
- es-abstract: 1.22.2
- dev: true
-
/object.fromentries@2.0.8:
resolution:
{
@@ -17748,18 +16938,6 @@ packages:
es-object-atoms: 1.0.0
dev: true
- /object.groupby@1.0.1:
- resolution:
- {
- integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==,
- }
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.1
- es-abstract: 1.22.2
- get-intrinsic: 1.2.1
- dev: true
-
/object.groupby@1.0.3:
resolution:
{
@@ -17772,28 +16950,6 @@ packages:
es-abstract: 1.23.3
dev: true
- /object.hasown@1.1.3:
- resolution:
- {
- integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==,
- }
- dependencies:
- define-properties: 1.2.1
- es-abstract: 1.22.2
- dev: true
-
- /object.values@1.1.7:
- resolution:
- {
- integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.1
- es-abstract: 1.22.2
- dev: true
-
/object.values@1.2.0:
resolution:
{
@@ -17876,6 +17032,25 @@ packages:
mimic-fn: 4.0.0
dev: false
+ /onetime@7.0.0:
+ resolution:
+ {
+ integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==,
+ }
+ engines: { node: '>=18' }
+ dependencies:
+ mimic-function: 5.0.1
+ dev: false
+
+ /oniguruma-to-js@0.4.3:
+ resolution:
+ {
+ integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==,
+ }
+ dependencies:
+ regex: 4.4.0
+ dev: false
+
/open@10.1.0:
resolution:
{
@@ -17889,16 +17064,17 @@ packages:
is-wsl: 3.1.0
dev: false
- /open@8.4.0:
+ /open@8.4.2:
resolution:
{
- integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==,
+ integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==,
}
engines: { node: '>=12' }
dependencies:
define-lazy-prop: 2.0.0
is-docker: 2.2.1
is-wsl: 2.2.0
+ dev: false
/openapi-typescript@7.4.2(typescript@5.6.3):
resolution:
@@ -17920,36 +17096,6 @@ packages:
- encoding
dev: false
- /optionator@0.8.3:
- resolution:
- {
- integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==,
- }
- engines: { node: '>= 0.8.0' }
- dependencies:
- deep-is: 0.1.4
- fast-levenshtein: 2.0.6
- levn: 0.3.0
- prelude-ls: 1.1.2
- type-check: 0.3.2
- word-wrap: 1.2.3
- dev: true
-
- /optionator@0.9.3:
- resolution:
- {
- integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==,
- }
- engines: { node: '>= 0.8.0' }
- dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
- deep-is: 0.1.4
- fast-levenshtein: 2.0.6
- levn: 0.4.1
- prelude-ls: 1.2.1
- type-check: 0.4.0
- dev: true
-
/optionator@0.9.4:
resolution:
{
@@ -17974,7 +17120,7 @@ packages:
bl: 4.1.0
chalk: 4.1.2
cli-cursor: 3.1.0
- cli-spinners: 2.9.1
+ cli-spinners: 2.9.2
is-interactive: 1.0.0
is-unicode-supported: 0.1.0
log-symbols: 4.1.0
@@ -17982,6 +17128,24 @@ packages:
wcwidth: 1.0.1
dev: true
+ /ora@8.1.1:
+ resolution:
+ {
+ integrity: sha512-YWielGi1XzG1UTvOaCFaNgEnuhZVMSHYkW/FQ7UX8O26PtlpdM84c0f7wLPlkvx2RfiQmnzd61d/MGxmpQeJPw==,
+ }
+ engines: { node: '>=18' }
+ dependencies:
+ chalk: 5.3.0
+ cli-cursor: 5.0.0
+ cli-spinners: 2.9.2
+ is-interactive: 2.0.0
+ is-unicode-supported: 2.1.0
+ log-symbols: 6.0.0
+ stdin-discarder: 0.2.2
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
+ dev: false
+
/outdent@0.8.0:
resolution:
{
@@ -17997,7 +17161,6 @@ packages:
engines: { node: '>=6' }
dependencies:
p-try: 2.2.0
- dev: true
/p-limit@3.1.0:
resolution:
@@ -18008,6 +17171,16 @@ packages:
dependencies:
yocto-queue: 0.1.0
+ /p-limit@5.0.0:
+ resolution:
+ {
+ integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==,
+ }
+ engines: { node: '>=18' }
+ dependencies:
+ yocto-queue: 1.1.1
+ dev: false
+
/p-locate@4.1.0:
resolution:
{
@@ -18016,7 +17189,6 @@ packages:
engines: { node: '>=8' }
dependencies:
p-limit: 2.3.0
- dev: true
/p-locate@5.0.0:
resolution:
@@ -18036,13 +17208,37 @@ packages:
dependencies:
aggregate-error: 3.1.0
+ /p-queue@8.0.1:
+ resolution:
+ {
+ integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==,
+ }
+ engines: { node: '>=18' }
+ dependencies:
+ eventemitter3: 5.0.1
+ p-timeout: 6.1.3
+ dev: false
+
+ /p-timeout@6.1.3:
+ resolution:
+ {
+ integrity: sha512-UJUyfKbwvr/uZSV6btANfb+0t/mOhKV/KXcCUTp8FcQI+v/0d+wXqH4htrW0E4rR6WiEO/EPvUFiV9D5OI4vlw==,
+ }
+ engines: { node: '>=14.16' }
+ dev: false
+
/p-try@2.2.0:
resolution:
{
integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
}
engines: { node: '>=6' }
- dev: true
+
+ /package-json-from-dist@1.0.1:
+ resolution:
+ {
+ integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==,
+ }
/package-manager-detector@0.2.2:
resolution:
@@ -18073,7 +17269,7 @@ packages:
integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==,
}
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
character-entities: 2.0.2
character-entities-legacy: 3.0.0
character-reference-invalid: 2.0.1
@@ -18119,6 +17315,17 @@ packages:
type-fest: 4.26.1
dev: false
+ /parse-latin@5.0.1:
+ resolution:
+ {
+ integrity: sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==,
+ }
+ dependencies:
+ nlcst-to-string: 3.1.1
+ unist-util-modify-children: 3.1.1
+ unist-util-visit-children: 2.0.2
+ dev: false
+
/parse-ms@2.1.0:
resolution:
{
@@ -18145,14 +17352,13 @@ packages:
parse-path: 7.0.0
dev: false
- /parse5@7.1.2:
+ /parse5@7.2.1:
resolution:
{
- integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==,
+ integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==,
}
dependencies:
entities: 4.5.0
- dev: true
/parseurl@1.3.3:
resolution:
@@ -18161,6 +17367,13 @@ packages:
}
engines: { node: '>= 0.8' }
+ /path-browserify@1.0.1:
+ resolution:
+ {
+ integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==,
+ }
+ dev: true
+
/path-exists@4.0.0:
resolution:
{
@@ -18196,21 +17409,28 @@ packages:
integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
}
- /path-scurry@1.10.1:
+ /path-scurry@1.11.1:
resolution:
{
- integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==,
+ integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==,
}
- engines: { node: '>=16 || 14 >=14.17' }
+ engines: { node: '>=16 || 14 >=14.18' }
dependencies:
lru-cache: 10.4.3
- minipass: 7.0.4
+ minipass: 7.1.2
+
+ /path-to-regexp@0.1.10:
+ resolution:
+ {
+ integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==,
+ }
- /path-to-regexp@0.1.7:
+ /path-to-regexp@6.3.0:
resolution:
{
- integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==,
+ integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==,
}
+ dev: false
/path-type@4.0.0:
resolution:
@@ -18263,12 +17483,6 @@ packages:
is-reference: 3.0.2
dev: true
- /picocolors@1.0.0:
- resolution:
- {
- integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==,
- }
-
/picocolors@1.1.1:
resolution:
{
@@ -18297,10 +17511,18 @@ packages:
engines: { node: '>=0.10' }
hasBin: true
- /pirates@4.0.5:
+ /pify@4.0.1:
+ resolution:
+ {
+ integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==,
+ }
+ engines: { node: '>=6' }
+ dev: false
+
+ /pirates@4.0.6:
resolution:
{
- integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==,
+ integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==,
}
engines: { node: '>= 6' }
dev: true
@@ -18313,7 +17535,6 @@ packages:
engines: { node: '>=8' }
dependencies:
find-up: 4.1.0
- dev: true
/pkg-types@1.2.1:
resolution:
@@ -18405,7 +17626,7 @@ packages:
postcss-selector-parser: 6.1.2
dev: false
- /postcss-discard-duplicates@5.1.0(postcss@8.4.31):
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.47):
resolution:
{
integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==,
@@ -18414,7 +17635,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.47
dev: true
/postcss-discard-duplicates@7.0.1(postcss@8.4.47):
@@ -18453,10 +17674,10 @@ packages:
postcss: 8.4.47
dev: false
- /postcss-load-config@4.0.1(postcss@8.4.31)(ts-node@10.9.1):
+ /postcss-load-config@4.0.2(postcss@8.4.47):
resolution:
{
- integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==,
+ integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==,
}
engines: { node: '>= 14' }
peerDependencies:
@@ -18468,10 +17689,9 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 2.1.0
- postcss: 8.4.31
- ts-node: 10.9.1(@types/node@18.11.9)(typescript@5.2.2)
- yaml: 2.3.1
+ lilconfig: 3.1.2
+ postcss: 8.4.47
+ yaml: 2.6.0
dev: true
/postcss-merge-longhand@7.0.4(postcss@8.4.47):
@@ -18561,47 +17781,47 @@ packages:
postcss-selector-parser: 6.1.2
dev: false
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.31):
+ /postcss-modules-extract-imports@3.1.0(postcss@8.4.47):
resolution:
{
- integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==,
+ integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==,
}
engines: { node: ^10 || ^12 || >= 14 }
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.47
dev: true
- /postcss-modules-local-by-default@4.0.3(postcss@8.4.31):
+ /postcss-modules-local-by-default@4.0.5(postcss@8.4.47):
resolution:
{
- integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==,
+ integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==,
}
engines: { node: ^10 || ^12 || >= 14 }
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.31)
- postcss: 8.4.31
- postcss-selector-parser: 6.0.13
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
dev: true
- /postcss-modules-scope@3.0.0(postcss@8.4.31):
+ /postcss-modules-scope@3.2.0(postcss@8.4.47):
resolution:
{
- integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==,
+ integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==,
}
engines: { node: ^10 || ^12 || >= 14 }
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
dev: true
- /postcss-modules-values@4.0.0(postcss@8.4.31):
+ /postcss-modules-values@4.0.0(postcss@8.4.47):
resolution:
{
integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==,
@@ -18610,11 +17830,11 @@ packages:
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
dev: true
- /postcss-modules@6.0.0(postcss@8.4.31):
+ /postcss-modules@6.0.0(postcss@8.4.47):
resolution:
{
integrity: sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ==,
@@ -18623,13 +17843,13 @@ packages:
postcss: ^8.0.0
dependencies:
generic-names: 4.0.0
- icss-utils: 5.1.0(postcss@8.4.31)
+ icss-utils: 5.1.0(postcss@8.4.47)
lodash.camelcase: 4.3.0
- postcss: 8.4.31
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.31)
- postcss-modules-local-by-default: 4.0.3(postcss@8.4.31)
- postcss-modules-scope: 3.0.0(postcss@8.4.31)
- postcss-modules-values: 4.0.0(postcss@8.4.31)
+ postcss: 8.4.47
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.47)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.47)
+ postcss-modules-scope: 3.2.0(postcss@8.4.47)
+ postcss-modules-values: 4.0.0(postcss@8.4.47)
string-hash: 1.1.3
dev: true
@@ -18791,17 +18011,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-selector-parser@6.0.13:
- resolution:
- {
- integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==,
- }
- engines: { node: '>=4' }
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
- dev: true
-
/postcss-selector-parser@6.1.2:
resolution:
{
@@ -18811,7 +18020,6 @@ packages:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- dev: false
/postcss-svgo@7.0.1(postcss@8.4.47):
resolution:
@@ -18853,9 +18061,10 @@ packages:
}
engines: { node: ^10 || ^12 || >=14 }
dependencies:
- nanoid: 3.3.6
- picocolors: 1.0.0
- source-map-js: 1.0.2
+ nanoid: 3.3.7
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+ dev: false
/postcss@8.4.47:
resolution:
@@ -18868,13 +18077,18 @@ packages:
picocolors: 1.1.1
source-map-js: 1.2.1
- /prelude-ls@1.1.2:
+ /preferred-pm@3.1.4:
resolution:
{
- integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==,
+ integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==,
}
- engines: { node: '>= 0.8.0' }
- dev: true
+ engines: { node: '>=10' }
+ dependencies:
+ find-up: 5.0.0
+ find-yarn-workspace-root2: 1.2.16
+ path-exists: 4.0.0
+ which-pm: 2.2.0
+ dev: false
/prelude-ls@1.2.1:
resolution:
@@ -18883,10 +18097,10 @@ packages:
}
engines: { node: '>= 0.8.0' }
- /prettier-plugin-packagejson@2.4.6(prettier@2.8.8):
+ /prettier-plugin-packagejson@2.5.3(prettier@2.8.8):
resolution:
{
- integrity: sha512-5JGfzkJRL0DLNyhwmiAV9mV0hZLHDwddFCs2lc9CNxOChpoWUQVe8K4qTMktmevmDlMpok2uT10nvHUyU59sNw==,
+ integrity: sha512-ATMEEXr+ywls1kgrZEWl4SBPEm0uDdyDAjyNzUC0/Z8WZTD3RqbJcQDR+Dau+wYkW9KHK6zqQIsFyfn+9aduWg==,
}
peerDependencies:
prettier: '>= 1.16.0'
@@ -18895,18 +18109,20 @@ packages:
optional: true
dependencies:
prettier: 2.8.8
- sort-package-json: 2.6.0
- synckit: 0.8.5
+ sort-package-json: 2.10.1
+ synckit: 0.9.2
dev: true
- /prettier@2.7.1:
+ /prettier@2.8.7:
resolution:
{
- integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==,
+ integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==,
}
engines: { node: '>=10.13.0' }
hasBin: true
+ requiresBuild: true
dev: true
+ optional: true
/prettier@2.8.8:
resolution:
@@ -18937,18 +18153,6 @@ packages:
react-is: 17.0.2
dev: true
- /pretty-format@29.3.1:
- resolution:
- {
- integrity: sha512-FyLnmb1cYJV8biEIiRyzRFvs2lry7PPIvOqKVe1GCUEYg4YGmlx1qG9EJNMxArYm7piII4qb8UV1Pncq5dxmcg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- dependencies:
- '@jest/schemas': 29.4.3
- ansi-styles: 5.2.0
- react-is: 18.2.0
- dev: true
-
/pretty-format@29.7.0:
resolution:
{
@@ -18958,7 +18162,7 @@ packages:
dependencies:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
- react-is: 18.2.0
+ react-is: 18.3.1
dev: true
/pretty-ms@7.0.1:
@@ -18971,6 +18175,14 @@ packages:
parse-ms: 2.1.0
dev: true
+ /prismjs@1.29.0:
+ resolution:
+ {
+ integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==,
+ }
+ engines: { node: '>=6' }
+ dev: false
+
/proc-log@3.0.0:
resolution:
{
@@ -19037,12 +18249,11 @@ packages:
react-is: 16.13.1
dev: true
- /property-information@6.3.0:
+ /property-information@6.5.0:
resolution:
{
- integrity: sha512-gVNZ74nqhRMiIUYWGQdosYetaKc83x8oT41a0LlV3AAFCAZwCpg4vmGkq8t34+cUhp3cnM4XDiU/7xlgK7HGrg==,
+ integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==,
}
- dev: true
/protocols@2.0.1:
resolution:
@@ -19078,10 +18289,10 @@ packages:
once: 1.4.0
dev: true
- /pump@3.0.0:
+ /pump@3.0.2:
resolution:
{
- integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==,
+ integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==,
}
dependencies:
end-of-stream: 1.4.4
@@ -19099,24 +18310,24 @@ packages:
pump: 2.0.1
dev: true
- /punycode@2.1.1:
+ /punycode@2.3.1:
resolution:
{
- integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==,
+ integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==,
}
engines: { node: '>=6' }
- /pure-rand@6.0.2:
+ /pure-rand@6.1.0:
resolution:
{
- integrity: sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==,
+ integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==,
}
dev: true
- /qs@6.11.0:
+ /qs@6.13.0:
resolution:
{
- integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==,
+ integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==,
}
engines: { node: '>=0.6' }
dependencies:
@@ -19165,10 +18376,10 @@ packages:
}
engines: { node: '>= 0.6' }
- /raw-body@2.5.1:
+ /raw-body@2.5.2:
resolution:
{
- integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==,
+ integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==,
}
engines: { node: '>= 0.8' }
dependencies:
@@ -19197,7 +18408,7 @@ packages:
dependencies:
loose-envify: 1.4.0
react: 18.2.0
- scheduler: 0.23.0
+ scheduler: 0.23.2
/react-dom@19.0.0-rc-69d4b800-20241021(react@19.0.0-rc-69d4b800-20241021):
resolution:
@@ -19225,17 +18436,17 @@ packages:
}
dev: true
- /react-is@18.2.0:
+ /react-is@18.3.1:
resolution:
{
- integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==,
+ integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==,
}
dev: true
- /react-refresh@0.14.0:
+ /react-refresh@0.14.2:
resolution:
{
- integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==,
+ integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==,
}
engines: { node: '>=0.10.0' }
dev: true
@@ -19305,7 +18516,7 @@ packages:
}
engines: { node: '>=8' }
dependencies:
- '@types/normalize-package-data': 2.4.1
+ '@types/normalize-package-data': 2.4.4
normalize-package-data: 2.5.0
parse-json: 5.2.0
type-fest: 0.6.0
@@ -19404,34 +18615,35 @@ packages:
redis-errors: 1.2.0
dev: false
- /reflect.getprototypeof@1.0.4:
+ /reflect.getprototypeof@1.0.6:
resolution:
{
- integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==,
+ integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==,
}
engines: { node: '>= 0.4' }
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
get-intrinsic: 1.2.4
- globalthis: 1.0.3
- which-builtin-type: 1.1.3
+ globalthis: 1.0.4
+ which-builtin-type: 1.1.4
dev: true
- /regenerator-runtime@0.13.10:
+ /regenerator-runtime@0.14.1:
resolution:
{
- integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==,
+ integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==,
}
dev: true
- /regenerator-runtime@0.14.0:
+ /regex@4.4.0:
resolution:
{
- integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==,
+ integrity: sha512-uCUSuobNVeqUupowbdZub6ggI5/JZkYyJdDogddJr60L764oxC2pMZov1fQ3wM9bdyzUILDG+Sqx6NAKAz9rKQ==,
}
- dev: true
+ dev: false
/regexp-tree@0.1.27:
resolution:
@@ -19441,18 +18653,6 @@ packages:
hasBin: true
dev: true
- /regexp.prototype.flags@1.5.1:
- resolution:
- {
- integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- set-function-name: 2.0.2
- dev: true
-
/regexp.prototype.flags@1.5.3:
resolution:
{
@@ -19484,18 +18684,79 @@ packages:
jsesc: 0.5.0
dev: true
+ /rehype-parse@9.0.1:
+ resolution:
+ {
+ integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ hast-util-from-html: 2.0.3
+ unified: 11.0.5
+ dev: false
+
+ /rehype-raw@7.0.0:
+ resolution:
+ {
+ integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ hast-util-raw: 9.0.4
+ vfile: 6.0.3
+ dev: false
+
+ /rehype-stringify@10.0.1:
+ resolution:
+ {
+ integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ hast-util-to-html: 9.0.3
+ unified: 11.0.5
+ dev: false
+
+ /rehype@13.0.2:
+ resolution:
+ {
+ integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ rehype-parse: 9.0.1
+ rehype-stringify: 10.0.1
+ unified: 11.0.5
+ dev: false
+
/remark-frontmatter@4.0.1:
resolution:
{
integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==,
}
dependencies:
- '@types/mdast': 3.0.13
+ '@types/mdast': 3.0.15
mdast-util-frontmatter: 1.0.1
micromark-extension-frontmatter: 1.1.1
unified: 10.1.2
dev: true
+ /remark-gfm@4.0.0:
+ resolution:
+ {
+ integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-gfm: 3.0.0
+ micromark-extension-gfm: 3.0.0
+ remark-parse: 11.0.0
+ remark-stringify: 11.0.0
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/remark-mdx-frontmatter@1.1.1:
resolution:
{
@@ -19527,25 +18788,89 @@ packages:
integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==,
}
dependencies:
- '@types/mdast': 3.0.13
+ '@types/mdast': 3.0.15
mdast-util-from-markdown: 1.3.1
unified: 10.1.2
transitivePeerDependencies:
- supports-color
dev: true
+ /remark-parse@11.0.0:
+ resolution:
+ {
+ integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-from-markdown: 2.0.2
+ micromark-util-types: 2.0.0
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/remark-rehype@10.1.0:
resolution:
{
integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==,
}
dependencies:
- '@types/hast': 2.3.6
- '@types/mdast': 3.0.13
+ '@types/hast': 2.3.10
+ '@types/mdast': 3.0.15
mdast-util-to-hast: 12.3.0
unified: 10.1.2
dev: true
+ /remark-rehype@11.1.1:
+ resolution:
+ {
+ integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==,
+ }
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ mdast-util-to-hast: 13.2.0
+ unified: 11.0.5
+ vfile: 6.0.3
+ dev: false
+
+ /remark-smartypants@2.1.0:
+ resolution:
+ {
+ integrity: sha512-qoF6Vz3BjU2tP6OfZqHOvCU0ACmu/6jhGaINSQRI9mM7wCxNQTKB3JUAN4SVoN2ybElEDTxBIABRep7e569iJw==,
+ }
+ engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ dependencies:
+ retext: 8.1.0
+ retext-smartypants: 5.2.0
+ unist-util-visit: 5.0.0
+ dev: false
+
+ /remark-stringify@11.0.0:
+ resolution:
+ {
+ integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==,
+ }
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-to-markdown: 2.1.2
+ unified: 11.0.5
+ dev: false
+
+ /request-light@0.5.8:
+ resolution:
+ {
+ integrity: sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==,
+ }
+ dev: true
+
+ /request-light@0.7.0:
+ resolution:
+ {
+ integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==,
+ }
+ dev: true
+
/require-directory@2.1.1:
resolution:
{
@@ -19559,7 +18884,6 @@ packages:
integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==,
}
engines: { node: '>=0.10.0' }
- dev: false
/require-like@0.1.2:
resolution:
@@ -19632,28 +18956,16 @@ packages:
path-parse: 1.0.7
dev: true
- /resolve@1.22.6:
- resolution:
- {
- integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==,
- }
- hasBin: true
- dependencies:
- is-core-module: 2.13.0
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
-
- /resolve@2.0.0-next.4:
+ /resolve@1.22.8:
resolution:
{
- integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==,
+ integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==,
}
hasBin: true
dependencies:
- is-core-module: 2.11.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- dev: true
/resolve@2.0.0-next.5:
resolution:
@@ -19662,7 +18974,7 @@ packages:
}
hasBin: true
dependencies:
- is-core-module: 2.13.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
dev: true
@@ -19677,6 +18989,64 @@ packages:
onetime: 5.1.2
signal-exit: 3.0.7
+ /restore-cursor@5.1.0:
+ resolution:
+ {
+ integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==,
+ }
+ engines: { node: '>=18' }
+ dependencies:
+ onetime: 7.0.0
+ signal-exit: 4.1.0
+ dev: false
+
+ /retext-latin@3.1.0:
+ resolution:
+ {
+ integrity: sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==,
+ }
+ dependencies:
+ '@types/nlcst': 1.0.4
+ parse-latin: 5.0.1
+ unherit: 3.0.1
+ unified: 10.1.2
+ dev: false
+
+ /retext-smartypants@5.2.0:
+ resolution:
+ {
+ integrity: sha512-Do8oM+SsjrbzT2UNIKgheP0hgUQTDDQYyZaIY3kfq0pdFzoPk+ZClYJ+OERNXveog4xf1pZL4PfRxNoVL7a/jw==,
+ }
+ dependencies:
+ '@types/nlcst': 1.0.4
+ nlcst-to-string: 3.1.1
+ unified: 10.1.2
+ unist-util-visit: 4.1.2
+ dev: false
+
+ /retext-stringify@3.1.0:
+ resolution:
+ {
+ integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==,
+ }
+ dependencies:
+ '@types/nlcst': 1.0.4
+ nlcst-to-string: 3.1.1
+ unified: 10.1.2
+ dev: false
+
+ /retext@8.1.0:
+ resolution:
+ {
+ integrity: sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==,
+ }
+ dependencies:
+ '@types/nlcst': 1.0.4
+ retext-latin: 3.1.0
+ retext-stringify: 3.1.0
+ unified: 10.1.2
+ dev: false
+
/retry@0.12.0:
resolution:
{
@@ -19692,13 +19062,6 @@ packages:
}
engines: { iojs: '>=1.0.0', node: '>=0.10.0' }
- /rfdc@1.3.0:
- resolution:
- {
- integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==,
- }
- dev: false
-
/rfdc@1.4.1:
resolution:
{
@@ -19714,7 +19077,7 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
dependencies:
- glob: 7.1.7
+ glob: 7.2.3
/rollup-plugin-visualizer@5.12.0(rollup@4.24.4):
resolution:
@@ -19729,17 +19092,17 @@ packages:
rollup:
optional: true
dependencies:
- open: 8.4.0
+ open: 8.4.2
picomatch: 2.3.1
rollup: 4.24.4
source-map: 0.7.4
- yargs: 17.6.2
+ yargs: 17.7.2
dev: false
- /rollup@3.10.0:
+ /rollup@3.29.5:
resolution:
{
- integrity: sha512-JmRYz44NjC1MjVF2VKxc0M1a97vn+cDxeqWmnwyAF4FvpjK8YFdHpaqvQB+3IxCvX05vJxKZkoMDU8TShhmJVA==,
+ integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==,
}
engines: { node: '>=14.18.0', npm: '>=8.0.0' }
hasBin: true
@@ -19747,16 +19110,6 @@ packages:
fsevents: 2.3.3
dev: true
- /rollup@3.29.4:
- resolution:
- {
- integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==,
- }
- engines: { node: '>=14.18.0', npm: '>=8.0.0' }
- hasBin: true
- optionalDependencies:
- fsevents: 2.3.3
-
/rollup@4.24.4:
resolution:
{
@@ -19809,7 +19162,7 @@ packages:
integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==,
}
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
dev: false
/sade@1.8.1:
@@ -19821,19 +19174,6 @@ packages:
dependencies:
mri: 1.2.0
- /safe-array-concat@1.0.1:
- resolution:
- {
- integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==,
- }
- engines: { node: '>=0.4' }
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- isarray: 2.0.5
- dev: true
-
/safe-array-concat@1.1.2:
resolution:
{
@@ -19859,17 +19199,6 @@ packages:
integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==,
}
- /safe-regex-test@1.0.0:
- resolution:
- {
- integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==,
- }
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- is-regex: 1.1.4
- dev: true
-
/safe-regex-test@1.0.3:
resolution:
{
@@ -19898,10 +19227,10 @@ packages:
xmlchars: 2.2.0
dev: true
- /scheduler@0.23.0:
+ /scheduler@0.23.2:
resolution:
{
- integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==,
+ integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==,
}
dependencies:
loose-envify: 1.4.0
@@ -19920,63 +19249,39 @@ packages:
}
dev: false
- /semver@5.7.1:
- resolution:
- {
- integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==,
- }
- hasBin: true
- dev: true
-
- /semver@6.3.1:
+ /section-matter@1.0.0:
resolution:
{
- integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
+ integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==,
}
- hasBin: true
+ engines: { node: '>=4' }
+ dependencies:
+ extend-shallow: 2.0.1
+ kind-of: 6.0.3
+ dev: false
- /semver@7.5.4:
+ /semver@5.7.2:
resolution:
{
- integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==,
+ integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==,
}
- engines: { node: '>=10' }
hasBin: true
- dependencies:
- lru-cache: 6.0.0
dev: true
- /semver@7.6.3:
+ /semver@6.3.1:
resolution:
{
- integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==,
+ integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
}
- engines: { node: '>=10' }
hasBin: true
- requiresBuild: true
- /send@0.18.0:
+ /semver@7.6.3:
resolution:
{
- integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==,
+ integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==,
}
- engines: { node: '>= 0.8.0' }
- dependencies:
- debug: 2.6.9
- depd: 2.0.0
- destroy: 1.2.0
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 0.5.2
- http-errors: 2.0.0
- mime: 1.6.0
- ms: 2.1.3
- on-finished: 2.4.1
- range-parser: 1.2.1
- statuses: 2.0.1
- transitivePeerDependencies:
- - supports-color
+ engines: { node: '>=10' }
+ hasBin: true
/send@0.19.0:
resolution:
@@ -20000,7 +19305,6 @@ packages:
statuses: 2.0.1
transitivePeerDependencies:
- supports-color
- dev: false
/serialize-javascript@6.0.2:
resolution:
@@ -20020,20 +19324,6 @@ packages:
defu: 6.1.4
dev: false
- /serve-static@1.15.0:
- resolution:
- {
- integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==,
- }
- engines: { node: '>= 0.8.0' }
- dependencies:
- encodeurl: 1.0.2
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 0.18.0
- transitivePeerDependencies:
- - supports-color
-
/serve-static@1.16.2:
resolution:
{
@@ -20047,14 +19337,13 @@ packages:
send: 0.19.0
transitivePeerDependencies:
- supports-color
- dev: false
/server-only@0.0.1:
resolution:
{
integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==,
}
- dev: false
+ dev: true
/set-blocking@2.0.0:
resolution:
@@ -20062,18 +19351,11 @@ packages:
integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==,
}
- /set-cookie-parser@2.6.0:
- resolution:
- {
- integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==,
- }
-
/set-cookie-parser@2.7.1:
resolution:
{
integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==,
}
- dev: true
/set-function-length@1.2.2:
resolution:
@@ -20089,18 +19371,6 @@ packages:
gopd: 1.0.1
has-property-descriptors: 1.0.2
- /set-function-name@2.0.1:
- resolution:
- {
- integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- define-data-property: 1.1.4
- functions-have-names: 1.2.3
- has-property-descriptors: 1.0.2
- dev: true
-
/set-function-name@2.0.2:
resolution:
{
@@ -20177,16 +19447,19 @@ packages:
}
dev: false
- /side-channel@1.0.4:
+ /shiki@1.22.2:
resolution:
{
- integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==,
+ integrity: sha512-3IZau0NdGKXhH2bBlUk4w1IHNxPh6A5B2sUpyY+8utLu2j/h1QpFkAaUA1bAMxOWWGtTWcAh531vnS4NJKS/lA==,
}
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- object-inspect: 1.13.2
- dev: true
+ '@shikijs/core': 1.22.2
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+ dev: false
/side-channel@1.0.6:
resolution:
@@ -20231,7 +19504,6 @@ packages:
{
integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==,
}
- requiresBuild: true
dependencies:
is-arrayish: 0.3.2
dev: false
@@ -20259,7 +19531,6 @@ packages:
'@polka/url': 1.0.0-next.28
mrmime: 2.0.0
totalist: 3.0.1
- dev: true
/sisteransi@1.0.5:
resolution:
@@ -20340,10 +19611,10 @@ packages:
}
dev: true
- /sort-package-json@2.6.0:
+ /sort-package-json@2.10.1:
resolution:
{
- integrity: sha512-XSQ+lY9bAYA8ZsoChcEoPlgcSMaheziEp1beox1JVxy1SV4F2jSq9+h2rJ+3mC/Dhu9Ius1DLnInD5AWcsDXZw==,
+ integrity: sha512-d76wfhgUuGypKqY72Unm5LFnMpACbdxXsLPcL27pOsSrmVqH3PztFp1uq+Z22suk15h7vXmTesuh2aEjdCqb5w==,
}
hasBin: true
dependencies:
@@ -20351,18 +19622,12 @@ packages:
detect-newline: 4.0.1
get-stdin: 9.0.0
git-hooks-list: 3.1.0
- globby: 13.1.2
+ globby: 13.2.2
is-plain-obj: 4.1.0
+ semver: 7.6.3
sort-object-keys: 1.1.3
dev: true
- /source-map-js@1.0.2:
- resolution:
- {
- integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==,
- }
- engines: { node: '>=0.10.0' }
-
/source-map-js@1.2.1:
resolution:
{
@@ -20418,22 +19683,21 @@ packages:
{
integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==,
}
- dev: true
- /spdx-correct@3.1.1:
+ /spdx-correct@3.2.0:
resolution:
{
- integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==,
+ integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==,
}
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.12
+ spdx-license-ids: 3.0.20
dev: true
- /spdx-exceptions@2.3.0:
+ /spdx-exceptions@2.5.0:
resolution:
{
- integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==,
+ integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==,
}
dev: true
@@ -20443,14 +19707,14 @@ packages:
integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==,
}
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.12
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.20
dev: true
- /spdx-license-ids@3.0.12:
+ /spdx-license-ids@3.0.20:
resolution:
{
- integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==,
+ integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==,
}
dev: true
@@ -20467,16 +19731,15 @@ packages:
{
integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==,
}
- dev: true
- /ssri@10.0.5:
+ /ssri@10.0.6:
resolution:
{
- integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==,
+ integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==,
}
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.2
dev: true
/stack-utils@2.0.6:
@@ -20510,10 +19773,28 @@ packages:
}
dev: false
- /stream-shift@1.0.1:
+ /stdin-discarder@0.2.2:
+ resolution:
+ {
+ integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==,
+ }
+ engines: { node: '>=18' }
+ dev: false
+
+ /stop-iteration-iterator@1.0.0:
+ resolution:
+ {
+ integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==,
+ }
+ engines: { node: '>= 0.4' }
+ dependencies:
+ internal-slot: 1.0.7
+ dev: true
+
+ /stream-shift@1.0.3:
resolution:
{
- integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==,
+ integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==,
}
dev: true
@@ -20544,10 +19825,10 @@ packages:
bare-events: 2.5.0
dev: false
- /string-argv@0.3.1:
+ /string-argv@0.3.2:
resolution:
{
- integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==,
+ integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==,
}
engines: { node: '>=0.6.19' }
dev: false
@@ -20590,35 +19871,30 @@ packages:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.0.1
+ strip-ansi: 7.1.0
- /string.prototype.includes@2.0.1:
+ /string-width@7.2.0:
resolution:
{
- integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==,
+ integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==,
}
- engines: { node: '>= 0.4' }
+ engines: { node: '>=18' }
dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- dev: true
+ emoji-regex: 10.4.0
+ get-east-asian-width: 1.3.0
+ strip-ansi: 7.1.0
+ dev: false
- /string.prototype.matchall@4.0.10:
+ /string.prototype.includes@2.0.1:
resolution:
{
- integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==,
+ integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==,
}
+ engines: { node: '>= 0.4' }
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
- get-intrinsic: 1.2.1
- has-symbols: 1.0.3
- internal-slot: 1.0.5
- regexp.prototype.flags: 1.5.1
- set-function-name: 2.0.1
- side-channel: 1.0.4
+ es-abstract: 1.23.3
dev: true
/string.prototype.matchall@4.0.11:
@@ -20649,19 +19925,7 @@ packages:
}
dependencies:
define-properties: 1.2.1
- es-abstract: 1.22.2
- dev: true
-
- /string.prototype.trim@1.2.8:
- resolution:
- {
- integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.22.2
+ es-abstract: 1.23.3
dev: true
/string.prototype.trim@1.2.9:
@@ -20677,17 +19941,6 @@ packages:
es-object-atoms: 1.0.0
dev: true
- /string.prototype.trimend@1.0.7:
- resolution:
- {
- integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==,
- }
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.22.2
- dev: true
-
/string.prototype.trimend@1.0.8:
resolution:
{
@@ -20699,28 +19952,6 @@ packages:
es-object-atoms: 1.0.0
dev: true
- /string.prototype.trimstart@1.0.5:
- resolution:
- {
- integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==,
- }
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.22.2
- dev: true
-
- /string.prototype.trimstart@1.0.7:
- resolution:
- {
- integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==,
- }
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.22.2
- dev: true
-
/string.prototype.trimstart@1.0.8:
resolution:
{
@@ -20749,15 +19980,14 @@ packages:
dependencies:
safe-buffer: 5.2.1
- /stringify-entities@4.0.3:
+ /stringify-entities@4.0.4:
resolution:
{
- integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==,
+ integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==,
}
dependencies:
character-entities-html4: 2.1.0
character-entities-legacy: 3.0.0
- dev: true
/strip-ansi@6.0.1:
resolution:
@@ -20768,14 +19998,22 @@ packages:
dependencies:
ansi-regex: 5.0.1
- /strip-ansi@7.0.1:
+ /strip-ansi@7.1.0:
resolution:
{
- integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==,
+ integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==,
}
engines: { node: '>=12' }
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
+
+ /strip-bom-string@1.0.0:
+ resolution:
+ {
+ integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==,
+ }
+ engines: { node: '>=0.10.0' }
+ dev: false
/strip-bom@3.0.0:
resolution:
@@ -20783,7 +20021,6 @@ packages:
integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==,
}
engines: { node: '>=4' }
- dev: true
/strip-bom@4.0.0:
resolution:
@@ -20835,10 +20072,10 @@ packages:
js-tokens: 9.0.0
dev: false
- /style-to-object@0.4.2:
+ /style-to-object@0.4.4:
resolution:
{
- integrity: sha512-1JGpfPB3lo42ZX8cuPrheZbfQ6kqPPnPHlKMyeRYtfKD+0jG+QsXgXN57O/dvJlzlB2elI6dGmrPnl5VPQFPaA==,
+ integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==,
}
dependencies:
inline-style-parser: 0.1.1
@@ -20865,7 +20102,7 @@ packages:
react: 18.2.0
dev: false
- /styled-jsx@5.1.6(@babel/core@7.23.0)(react@19.0.0-rc-69d4b800-20241021):
+ /styled-jsx@5.1.6(@babel/core@7.26.0)(react@19.0.0-rc-69d4b800-20241021):
resolution:
{
integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==,
@@ -20881,7 +20118,7 @@ packages:
babel-plugin-macros:
optional: true
dependencies:
- '@babel/core': 7.23.0
+ '@babel/core': 7.26.0
client-only: 0.0.1
react: 19.0.0-rc-69d4b800-20241021
dev: false
@@ -20900,19 +20137,20 @@ packages:
postcss-selector-parser: 6.1.2
dev: false
- /sucrase@3.28.0:
+ /sucrase@3.35.0:
resolution:
{
- integrity: sha512-TK9600YInjuiIhVM3729rH4ZKPOsGeyXUwY+Ugu9eilNbdTFyHr6XcAGYbRVZPDgWj6tgI7bx95aaJjHnbffag==,
+ integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==,
}
- engines: { node: '>=8' }
+ engines: { node: '>=16 || 14 >=14.17' }
hasBin: true
dependencies:
+ '@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 7.1.6
+ glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
- pirates: 4.0.5
+ pirates: 4.0.6
ts-interface-checker: 0.1.13
dev: true
@@ -20926,15 +20164,6 @@ packages:
copy-anything: 3.0.5
dev: false
- /supports-color@5.5.0:
- resolution:
- {
- integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
- }
- engines: { node: '>=4' }
- dependencies:
- has-flag: 3.0.0
-
/supports-color@7.2.0:
resolution:
{
@@ -20968,7 +20197,7 @@ packages:
}
engines: { node: '>= 0.4' }
- /svelte-check@4.0.5(svelte@5.1.9)(typescript@5.6.3):
+ /svelte-check@4.0.5(svelte@5.1.10)(typescript@5.6.3):
resolution:
{
integrity: sha512-icBTBZ3ibBaywbXUat3cK6hB5Du+Kq9Z8CRuyLmm64XIe2/r+lQcbuBx/IQgsbrC+kT2jQ0weVpZSSRIPwB6jQ==,
@@ -20984,49 +20213,16 @@ packages:
fdir: 6.4.2(picomatch@4.0.2)
picocolors: 1.1.1
sade: 1.8.1
- svelte: 5.1.9
+ svelte: 5.1.10
typescript: 5.6.3
transitivePeerDependencies:
- picomatch
dev: true
- /svelte-hmr@0.15.3(svelte@5.0.0):
- resolution:
- {
- integrity: sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==,
- }
- engines: { node: ^12.20 || ^14.13.1 || >= 16 }
- peerDependencies:
- svelte: ^3.19.0 || ^4.0.0
- dependencies:
- svelte: 5.0.0
- dev: false
-
- /svelte@5.0.0:
- resolution:
- {
- integrity: sha512-jv2IvTtakG58DqZMo6fY3T6HFmGV4iDQH2lSUyfmCEYaoa+aCNcF+9rERbdDvT4XDF0nQBg6TEoJn0dirED8VQ==,
- }
- engines: { node: '>=18' }
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@jridgewell/sourcemap-codec': 1.5.0
- '@types/estree': 1.0.6
- acorn: 8.14.0
- acorn-typescript: 1.4.13(acorn@8.14.0)
- aria-query: 5.3.2
- axobject-query: 4.1.0
- esm-env: 1.1.4
- esrap: 1.2.2
- is-reference: 3.0.2
- locate-character: 3.0.0
- magic-string: 0.30.12
- zimmerframe: 1.1.2
-
- /svelte@5.1.9:
+ /svelte@5.1.10:
resolution:
{
- integrity: sha512-nzq+PPKGS2PoEWDjAcXSrKSbXmmmOAxd6dAz1IhRusUpVkFS6DMELWPyBPGwu6TpO/gsgtFXwX0M4+pAR5gzKw==,
+ integrity: sha512-lDR04z/5taV2qhqYt7UXQ3sVuv/FVfbHz4UBQpYP9Xlcv2OV0rw74hkZ7kbdZr3UKLgGdIGxG2UBxtRmgzB2Cg==,
}
engines: { node: '>=18' }
dependencies:
@@ -21043,7 +20239,6 @@ packages:
locate-character: 3.0.0
magic-string: 0.30.12
zimmerframe: 1.1.2
- dev: true
/svg-tags@1.0.0:
resolution:
@@ -21076,15 +20271,15 @@ packages:
}
dev: true
- /synckit@0.8.5:
+ /synckit@0.9.2:
resolution:
{
- integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==,
+ integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==,
}
engines: { node: ^14.18.0 || >=16.0.0 }
dependencies:
- '@pkgr/utils': 2.3.1
- tslib: 2.6.2
+ '@pkgr/core': 0.1.1
+ tslib: 2.8.1
dev: true
/system-architecture@0.1.0:
@@ -21110,7 +20305,7 @@ packages:
dependencies:
chownr: 1.1.4
mkdirp-classic: 0.5.3
- pump: 3.0.0
+ pump: 3.0.2
tar-stream: 2.2.0
dev: true
@@ -21139,10 +20334,10 @@ packages:
streamx: 2.20.1
dev: false
- /tar@6.2.0:
+ /tar@6.2.1:
resolution:
{
- integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==,
+ integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==,
}
engines: { node: '>=10' }
dependencies:
@@ -21175,7 +20370,7 @@ packages:
engines: { node: '>=8' }
dependencies:
'@istanbuljs/schema': 0.1.3
- glob: 7.1.7
+ glob: 7.2.3
minimatch: 3.1.2
dev: true
@@ -21262,13 +20457,6 @@ packages:
}
dev: true
- /to-fast-properties@2.0.0:
- resolution:
- {
- integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
- }
- engines: { node: '>=4' }
-
/to-regex-range@5.0.1:
resolution:
{
@@ -21299,15 +20487,15 @@ packages:
}
engines: { node: '>=6' }
- /tough-cookie@4.1.2:
+ /tough-cookie@4.1.4:
resolution:
{
- integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==,
+ integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==,
}
engines: { node: '>=6' }
dependencies:
psl: 1.9.0
- punycode: 2.1.1
+ punycode: 2.3.1
universalify: 0.2.0
url-parse: 1.5.10
dev: true
@@ -21324,7 +20512,7 @@ packages:
integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==,
}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
dev: true
/tr46@3.0.0:
@@ -21334,7 +20522,7 @@ packages:
}
engines: { node: '>=12' }
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
dev: true
/tree-kill@1.2.2:
@@ -21350,49 +20538,35 @@ packages:
{
integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==,
}
- dev: true
- /trough@2.1.0:
+ /trough@2.2.0:
resolution:
{
- integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==,
+ integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==,
}
- dev: true
- /ts-api-utils@1.0.3(typescript@5.1.3):
+ /ts-api-utils@1.4.0(typescript@5.1.3):
resolution:
{
- integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==,
+ integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==,
}
- engines: { node: '>=16.13.0' }
+ engines: { node: '>=16' }
peerDependencies:
typescript: '>=4.2.0'
dependencies:
typescript: 5.1.3
dev: true
- /ts-api-utils@1.0.3(typescript@5.1.6):
- resolution:
- {
- integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==,
- }
- engines: { node: '>=16.13.0' }
- peerDependencies:
- typescript: '>=4.2.0'
- dependencies:
- typescript: 5.1.6
- dev: true
-
- /ts-api-utils@1.0.3(typescript@5.2.2):
+ /ts-api-utils@1.4.0(typescript@5.6.3):
resolution:
{
- integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==,
+ integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==,
}
- engines: { node: '>=16.13.0' }
+ engines: { node: '>=16' }
peerDependencies:
typescript: '>=4.2.0'
dependencies:
- typescript: 5.2.2
+ typescript: 5.6.3
dev: true
/ts-interface-checker@0.1.13:
@@ -21402,10 +20576,10 @@ packages:
}
dev: true
- /ts-node@10.9.1(@types/node@18.11.9)(typescript@5.2.2):
+ /ts-node@10.9.2(@swc/core@1.8.0)(@types/node@20.17.6)(typescript@5.6.3):
resolution:
{
- integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==,
+ integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==,
}
hasBin: true
peerDependencies:
@@ -21420,68 +20594,38 @@ packages:
optional: true
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.9
+ '@swc/core': 1.8.0
+ '@tsconfig/node10': 1.0.11
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 18.11.9
- acorn: 8.10.0
- acorn-walk: 8.2.0
+ '@types/node': 20.17.6
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.2.2
+ typescript: 5.6.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
dev: true
- /ts-node@10.9.2(@swc/core@1.8.0)(@types/node@20.3.1)(typescript@5.6.3):
+ /tsconfck@3.1.4(typescript@5.6.3):
resolution:
{
- integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==,
+ integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==,
}
+ engines: { node: ^18 || >=20 }
hasBin: true
peerDependencies:
- '@swc/core': '>=1.2.50'
- '@swc/wasm': '>=1.2.50'
- '@types/node': '*'
- typescript: '>=2.7'
+ typescript: ^5.0.0
peerDependenciesMeta:
- '@swc/core':
- optional: true
- '@swc/wasm':
+ typescript:
optional: true
dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@swc/core': 1.8.0
- '@tsconfig/node10': 1.0.9
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 20.3.1
- acorn: 8.10.0
- acorn-walk: 8.2.0
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
typescript: 5.6.3
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- dev: true
-
- /tsconfig-paths@3.14.2:
- resolution:
- {
- integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==,
- }
- dependencies:
- '@types/json5': 0.0.29
- json5: 1.0.2
- minimist: 1.2.7
- strip-bom: 3.0.0
- dev: true
+ dev: false
/tsconfig-paths@3.15.0:
resolution:
@@ -21491,19 +20635,19 @@ packages:
dependencies:
'@types/json5': 0.0.29
json5: 1.0.2
- minimist: 1.2.7
+ minimist: 1.2.8
strip-bom: 3.0.0
dev: true
- /tsconfig-paths@4.1.0:
+ /tsconfig-paths@4.2.0:
resolution:
{
- integrity: sha512-AHx4Euop/dXFC+Vx589alFba8QItjF+8hf8LtmuiCwHyI4rHXQtOOENaM8kvYf5fR0dRChy3wzWIZ9WbB7FWow==,
+ integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==,
}
engines: { node: '>=6' }
dependencies:
json5: 2.2.3
- minimist: 1.2.7
+ minimist: 1.2.8
strip-bom: 3.0.0
dev: true
@@ -21514,22 +20658,13 @@ packages:
}
dev: true
- /tslib@2.6.2:
- resolution:
- {
- integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
- }
-
/tslib@2.8.1:
resolution:
{
integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==,
}
- requiresBuild: true
- dev: false
- optional: true
- /tsup@7.1.0(@swc/core@1.3.66)(typescript@5.1.6):
+ /tsup@7.1.0(@swc/core@1.8.0)(typescript@5.6.3):
resolution:
{
integrity: sha512-mazl/GRAk70j8S43/AbSYXGgvRP54oQeX8Un4iZxzATHt0roW0t6HYDVZIXMw0ZQIpvr1nFMniIVnN5186lW7w==,
@@ -21548,41 +20683,28 @@ packages:
typescript:
optional: true
dependencies:
- '@swc/core': 1.3.66
- bundle-require: 4.0.1(esbuild@0.18.10)
+ '@swc/core': 1.8.0
+ bundle-require: 4.2.1(esbuild@0.18.20)
cac: 6.7.14
- chokidar: 3.5.3
- debug: 4.3.4
- esbuild: 0.18.10
+ chokidar: 3.6.0
+ debug: 4.3.7(supports-color@9.4.0)
+ esbuild: 0.18.20
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss-load-config: 4.0.1(postcss@8.4.31)(ts-node@10.9.1)
+ postcss-load-config: 4.0.2(postcss@8.4.47)
resolve-from: 5.0.0
- rollup: 3.10.0
+ rollup: 3.29.5
source-map: 0.8.0-beta.0
- sucrase: 3.28.0
+ sucrase: 3.35.0
tree-kill: 1.2.2
- typescript: 5.1.6
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- - ts-node
- dev: true
-
- /tsutils@3.21.0(typescript@5.1.3):
- resolution:
- {
- integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==,
- }
- engines: { node: '>= 6' }
- peerDependencies:
- typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
- dependencies:
- tslib: 1.14.1
- typescript: 5.1.3
+ - ts-node
dev: true
- /tsutils@3.21.0(typescript@5.1.6):
+ /tsutils@3.21.0(typescript@5.1.3):
resolution:
{
integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==,
@@ -21592,10 +20714,10 @@ packages:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 5.1.6
+ typescript: 5.1.3
dev: true
- /tsutils@3.21.0(typescript@5.2.2):
+ /tsutils@3.21.0(typescript@5.6.3):
resolution:
{
integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==,
@@ -21605,17 +20727,7 @@ packages:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 5.2.2
- dev: true
-
- /type-check@0.3.2:
- resolution:
- {
- integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==,
- }
- engines: { node: '>= 0.8.0' }
- dependencies:
- prelude-ls: 1.1.2
+ typescript: 5.6.3
dev: true
/type-check@0.4.0:
@@ -21665,21 +20777,21 @@ packages:
engines: { node: '>=8' }
dev: true
- /type-fest@4.26.1:
+ /type-fest@2.19.0:
resolution:
{
- integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==,
+ integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==,
}
- engines: { node: '>=16' }
+ engines: { node: '>=12.20' }
dev: false
- /type-fest@4.4.0:
+ /type-fest@4.26.1:
resolution:
{
- integrity: sha512-HT3RRs7sTfY22KuPQJkD/XjbTbxgP2Je5HPt6H6JEGvcjHd5Lqru75EbrP3tb4FYjNJ+DjLp+MNQTFQU0mhXNw==,
+ integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==,
}
engines: { node: '>=16' }
- dev: true
+ dev: false
/type-is@1.6.18:
resolution:
@@ -21691,18 +20803,6 @@ packages:
media-typer: 0.3.0
mime-types: 2.1.35
- /typed-array-buffer@1.0.0:
- resolution:
- {
- integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- is-typed-array: 1.1.12
- dev: true
-
/typed-array-buffer@1.0.2:
resolution:
{
@@ -21715,19 +20815,6 @@ packages:
is-typed-array: 1.1.13
dev: true
- /typed-array-byte-length@1.0.0:
- resolution:
- {
- integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- call-bind: 1.0.7
- for-each: 0.3.3
- has-proto: 1.0.3
- is-typed-array: 1.1.12
- dev: true
-
/typed-array-byte-length@1.0.1:
resolution:
{
@@ -21742,20 +20829,6 @@ packages:
is-typed-array: 1.1.13
dev: true
- /typed-array-byte-offset@1.0.0:
- resolution:
- {
- integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==,
- }
- engines: { node: '>= 0.4' }
- dependencies:
- available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- for-each: 0.3.3
- has-proto: 1.0.3
- is-typed-array: 1.1.12
- dev: true
-
/typed-array-byte-offset@1.0.2:
resolution:
{
@@ -21771,17 +20844,6 @@ packages:
is-typed-array: 1.1.13
dev: true
- /typed-array-length@1.0.4:
- resolution:
- {
- integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==,
- }
- dependencies:
- call-bind: 1.0.7
- for-each: 0.3.3
- is-typed-array: 1.1.12
- dev: true
-
/typed-array-length@1.0.6:
resolution:
{
@@ -21815,30 +20877,30 @@ packages:
csstype: 3.1.3
dev: true
- /typescript@5.1.3:
+ /typesafe-path@0.2.2:
resolution:
{
- integrity: sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==,
+ integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==,
}
- engines: { node: '>=14.17' }
- hasBin: true
dev: true
- /typescript@5.1.6:
+ /typescript-auto-import-cache@0.3.5:
resolution:
{
- integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==,
+ integrity: sha512-fAIveQKsoYj55CozUiBoj4b/7WpN0i4o74wiGY5JVUEoD0XiqDk1tJqTEjgzL2/AizKQrXxyRosSebyDzBZKjw==,
}
- engines: { node: '>=14.17' }
- hasBin: true
+ dependencies:
+ semver: 7.6.3
+ dev: true
- /typescript@5.2.2:
+ /typescript@5.1.3:
resolution:
{
- integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==,
+ integrity: sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==,
}
engines: { node: '>=14.17' }
hasBin: true
+ dev: true
/typescript@5.6.3:
resolution:
@@ -21894,15 +20956,11 @@ packages:
- webpack-sources
dev: false
- /undici@5.14.0:
+ /undici-types@6.19.8:
resolution:
{
- integrity: sha512-yJlHYw6yXPPsuOH0x2Ib1Km61vu4hLiRRQoafs+WUgX1vO64vgnxiCEN9dpIrhZyHFsai3F0AEj4P9zy19enEQ==,
+ integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==,
}
- engines: { node: '>=12.18' }
- dependencies:
- busboy: 1.6.0
- dev: false
/unenv@1.10.0:
resolution:
@@ -21929,6 +20987,13 @@ packages:
hookable: 5.5.3
dev: false
+ /unherit@3.0.1:
+ resolution:
+ {
+ integrity: sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==,
+ }
+ dev: false
+
/unicorn-magic@0.1.0:
resolution:
{
@@ -21943,14 +21008,28 @@ packages:
integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==,
}
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
is-plain-obj: 4.1.0
- trough: 2.1.0
+ trough: 2.2.0
vfile: 5.3.7
- dev: true
+
+ /unified@11.0.5:
+ resolution:
+ {
+ integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ bail: 2.0.2
+ devlop: 1.1.0
+ extend: 3.0.2
+ is-plain-obj: 4.1.0
+ trough: 2.2.0
+ vfile: 6.0.3
+ dev: false
/unimport@3.13.1(rollup@4.24.4):
resolution:
@@ -21996,6 +21075,16 @@ packages:
imurmurhash: 0.1.4
dev: true
+ /unist-util-find-after@5.0.0:
+ resolution:
+ {
+ integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-is: 6.0.0
+ dev: false
+
/unist-util-generated@2.0.1:
resolution:
{
@@ -22009,8 +21098,26 @@ packages:
integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==,
}
dependencies:
- '@types/unist': 2.0.8
- dev: true
+ '@types/unist': 2.0.11
+
+ /unist-util-is@6.0.0:
+ resolution:
+ {
+ integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ dev: false
+
+ /unist-util-modify-children@3.1.1:
+ resolution:
+ {
+ integrity: sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==,
+ }
+ dependencies:
+ '@types/unist': 2.0.11
+ array-iterate: 2.0.1
+ dev: false
/unist-util-position-from-estree@1.1.2:
resolution:
@@ -22018,7 +21125,7 @@ packages:
integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==,
}
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
dev: true
/unist-util-position@4.0.4:
@@ -22027,27 +21134,63 @@ packages:
integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==,
}
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
dev: true
+ /unist-util-position@5.0.0:
+ resolution:
+ {
+ integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ dev: false
+
/unist-util-remove-position@4.0.2:
resolution:
{
integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==,
}
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
unist-util-visit: 4.1.2
dev: true
+ /unist-util-remove-position@5.0.0:
+ resolution:
+ {
+ integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-visit: 5.0.0
+ dev: false
+
/unist-util-stringify-position@3.0.3:
resolution:
{
integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==,
}
dependencies:
- '@types/unist': 2.0.8
- dev: true
+ '@types/unist': 2.0.11
+
+ /unist-util-stringify-position@4.0.0:
+ resolution:
+ {
+ integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ dev: false
+
+ /unist-util-visit-children@2.0.2:
+ resolution:
+ {
+ integrity: sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==,
+ }
+ dependencies:
+ '@types/unist': 2.0.11
+ dev: false
/unist-util-visit-parents@5.1.3:
resolution:
@@ -22055,9 +21198,18 @@ packages:
integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==,
}
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
- dev: true
+
+ /unist-util-visit-parents@6.0.1:
+ resolution:
+ {
+ integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-is: 6.0.0
+ dev: false
/unist-util-visit@4.1.2:
resolution:
@@ -22065,10 +21217,20 @@ packages:
integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==,
}
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
- dev: true
+
+ /unist-util-visit@5.0.0:
+ resolution:
+ {
+ integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
+ dev: false
/universalify@0.2.0:
resolution:
@@ -22078,10 +21240,10 @@ packages:
engines: { node: '>= 4.0.0' }
dev: true
- /universalify@2.0.0:
+ /universalify@2.0.1:
resolution:
{
- integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==,
+ integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==,
}
engines: { node: '>= 10.0.0' }
@@ -22246,19 +21408,6 @@ packages:
- webpack-sources
dev: false
- /update-browserslist-db@1.0.13(browserslist@4.22.1):
- resolution:
- {
- integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==,
- }
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.22.1
- escalade: 3.1.1
- picocolors: 1.1.1
-
/update-browserslist-db@1.1.1(browserslist@4.24.2):
resolution:
{
@@ -22292,7 +21441,7 @@ packages:
integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==,
}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
/url-parse@1.5.10:
resolution:
@@ -22326,7 +21475,7 @@ packages:
inherits: 2.0.4
is-arguments: 1.1.1
is-generator-function: 1.0.10
- is-typed-array: 1.1.12
+ is-typed-array: 1.1.13
which-typed-array: 1.1.15
/utils-merge@1.0.1:
@@ -22345,7 +21494,7 @@ packages:
hasBin: true
dependencies:
dequal: 2.0.3
- diff: 5.1.0
+ diff: 5.2.0
kleur: 4.1.5
sade: 1.8.1
dev: true
@@ -22357,16 +21506,16 @@ packages:
}
dev: true
- /v8-to-istanbul@9.0.1:
+ /v8-to-istanbul@9.3.0:
resolution:
{
- integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==,
+ integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==,
}
engines: { node: '>=10.12.0' }
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- '@types/istanbul-lib-coverage': 2.0.4
- convert-source-map: 1.9.0
+ '@types/istanbul-lib-coverage': 2.0.6
+ convert-source-map: 2.0.0
dev: true
/validate-npm-package-license@3.0.4:
@@ -22375,18 +21524,16 @@ packages:
integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==,
}
dependencies:
- spdx-correct: 3.1.1
+ spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
dev: true
- /validate-npm-package-name@5.0.0:
+ /validate-npm-package-name@5.0.1:
resolution:
{
- integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==,
+ integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==,
}
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
- dependencies:
- builtins: 5.0.1
dev: true
/vary@1.1.2:
@@ -22396,15 +21543,34 @@ packages:
}
engines: { node: '>= 0.8' }
+ /vfile-location@5.0.3:
+ resolution:
+ {
+ integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ vfile: 6.0.3
+ dev: false
+
/vfile-message@3.1.4:
resolution:
{
integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==,
}
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
unist-util-stringify-position: 3.0.3
- dev: true
+
+ /vfile-message@4.0.2:
+ resolution:
+ {
+ integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-stringify-position: 4.0.0
+ dev: false
/vfile@5.3.7:
resolution:
@@ -22412,11 +21578,20 @@ packages:
integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==,
}
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
is-buffer: 2.0.5
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
- dev: true
+
+ /vfile@6.0.3:
+ resolution:
+ {
+ integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==,
+ }
+ dependencies:
+ '@types/unist': 3.0.3
+ vfile-message: 4.0.2
+ dev: false
/vite-hot-client@0.2.3(vite@5.4.10):
resolution:
@@ -22426,30 +21601,28 @@ packages:
peerDependencies:
vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0
dependencies:
- vite: 5.4.10
+ vite: 5.4.10(@types/node@20.17.6)
dev: false
- /vite-node@0.28.5(@types/node@18.11.9):
+ /vite-node@1.6.0:
resolution:
{
- integrity: sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA==,
+ integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==,
}
- engines: { node: '>=v14.16.0' }
+ engines: { node: ^18.0.0 || >=20.0.0 }
hasBin: true
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@9.4.0)
- mlly: 1.7.2
pathe: 1.1.2
picocolors: 1.1.1
- source-map: 0.6.1
- source-map-support: 0.5.21
- vite: 4.5.5(@types/node@18.11.9)
+ vite: 5.4.10(@types/node@20.17.6)
transitivePeerDependencies:
- '@types/node'
- less
- lightningcss
- sass
+ - sass-embedded
- stylus
- sugarss
- supports-color
@@ -22467,7 +21640,7 @@ packages:
cac: 6.7.14
debug: 4.3.7(supports-color@9.4.0)
pathe: 1.1.2
- vite: 5.4.10
+ vite: 5.4.10(@types/node@20.17.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -22529,7 +21702,7 @@ packages:
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
typescript: 5.6.3
- vite: 5.4.10
+ vite: 5.4.10(@types/node@20.17.6)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.12
@@ -22559,7 +21732,7 @@ packages:
perfect-debounce: 1.0.0
picocolors: 1.1.1
sirv: 2.0.4
- vite: 5.4.10
+ vite: 5.4.10(@types/node@20.17.6)
transitivePeerDependencies:
- rollup
- supports-color
@@ -22573,99 +21746,21 @@ packages:
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.26.0)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
- '@vue/compiler-dom': 3.5.12
- kolorist: 1.8.0
- magic-string: 0.30.12
- vite: 5.4.10
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /vite@4.5.5(@types/node@18.11.9):
- resolution:
- {
- integrity: sha512-ifW3Lb2sMdX+WU91s3R0FyQlAyLxOzCSCP37ujw0+r5POeHPwe6udWVIElKQq8gk3t7b8rkmvqC6IHBpCff4GQ==,
- }
- engines: { node: ^14.18.0 || >=16.0.0 }
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 18.11.9
- esbuild: 0.18.20
- postcss: 8.4.47
- rollup: 3.29.4
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
-
- /vite@4.5.5(@types/node@20.3.1):
- resolution:
- {
- integrity: sha512-ifW3Lb2sMdX+WU91s3R0FyQlAyLxOzCSCP37ujw0+r5POeHPwe6udWVIElKQq8gk3t7b8rkmvqC6IHBpCff4GQ==,
- }
- engines: { node: ^14.18.0 || >=16.0.0 }
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 20.3.1
- esbuild: 0.18.20
- postcss: 8.4.47
- rollup: 3.29.4
- optionalDependencies:
- fsevents: 2.3.3
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
+ '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
+ '@vue/compiler-dom': 3.5.12
+ kolorist: 1.8.0
+ magic-string: 0.30.12
+ vite: 5.4.10(@types/node@20.17.6)
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /vite@5.4.10:
+ /vite@5.4.10(@types/node@20.17.6):
resolution:
{
integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==,
@@ -22699,13 +21794,14 @@ packages:
terser:
optional: true
dependencies:
+ '@types/node': 20.17.6
esbuild: 0.21.5
postcss: 8.4.47
rollup: 4.24.4
optionalDependencies:
fsevents: 2.3.3
- /vitefu@0.2.5(vite@4.5.5):
+ /vitefu@0.2.5(vite@5.4.10):
resolution:
{
integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==,
@@ -22716,7 +21812,7 @@ packages:
vite:
optional: true
dependencies:
- vite: 4.5.5(@types/node@20.3.1)
+ vite: 5.4.10(@types/node@20.17.6)
dev: false
/vitefu@1.0.3(vite@5.4.10):
@@ -22730,7 +21826,166 @@ packages:
vite:
optional: true
dependencies:
- vite: 5.4.10
+ vite: 5.4.10(@types/node@20.17.6)
+
+ /volar-service-css@0.0.62(@volar/language-service@2.4.8):
+ resolution:
+ {
+ integrity: sha512-JwNyKsH3F8PuzZYuqPf+2e+4CTU8YoyUHEHVnoXNlrLe7wy9U3biomZ56llN69Ris7TTy/+DEX41yVxQpM4qvg==,
+ }
+ peerDependencies:
+ '@volar/language-service': ~2.4.0
+ peerDependenciesMeta:
+ '@volar/language-service':
+ optional: true
+ dependencies:
+ '@volar/language-service': 2.4.8
+ vscode-css-languageservice: 6.3.1
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-uri: 3.0.8
+ dev: true
+
+ /volar-service-emmet@0.0.62(@volar/language-service@2.4.8):
+ resolution:
+ {
+ integrity: sha512-U4dxWDBWz7Pi4plpbXf4J4Z/ss6kBO3TYrACxWNsE29abu75QzVS0paxDDhI6bhqpbDFXlpsDhZ9aXVFpnfGRQ==,
+ }
+ peerDependencies:
+ '@volar/language-service': ~2.4.0
+ peerDependenciesMeta:
+ '@volar/language-service':
+ optional: true
+ dependencies:
+ '@emmetio/css-parser': 0.4.0
+ '@emmetio/html-matcher': 1.3.0
+ '@volar/language-service': 2.4.8
+ '@vscode/emmet-helper': 2.9.3
+ vscode-uri: 3.0.8
+ dev: true
+
+ /volar-service-html@0.0.62(@volar/language-service@2.4.8):
+ resolution:
+ {
+ integrity: sha512-Zw01aJsZRh4GTGUjveyfEzEqpULQUdQH79KNEiKVYHZyuGtdBRYCHlrus1sueSNMxwwkuF5WnOHfvBzafs8yyQ==,
+ }
+ peerDependencies:
+ '@volar/language-service': ~2.4.0
+ peerDependenciesMeta:
+ '@volar/language-service':
+ optional: true
+ dependencies:
+ '@volar/language-service': 2.4.8
+ vscode-html-languageservice: 5.3.1
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-uri: 3.0.8
+ dev: true
+
+ /volar-service-prettier@0.0.62(@volar/language-service@2.4.8)(prettier@2.8.8):
+ resolution:
+ {
+ integrity: sha512-h2yk1RqRTE+vkYZaI9KYuwpDfOQRrTEMvoHol0yW4GFKc75wWQRrb5n/5abDrzMPrkQbSip8JH2AXbvrRtYh4w==,
+ }
+ peerDependencies:
+ '@volar/language-service': ~2.4.0
+ prettier: ^2.2 || ^3.0
+ peerDependenciesMeta:
+ '@volar/language-service':
+ optional: true
+ prettier:
+ optional: true
+ dependencies:
+ '@volar/language-service': 2.4.8
+ prettier: 2.8.8
+ vscode-uri: 3.0.8
+ dev: true
+
+ /volar-service-typescript-twoslash-queries@0.0.62(@volar/language-service@2.4.8):
+ resolution:
+ {
+ integrity: sha512-KxFt4zydyJYYI0kFAcWPTh4u0Ha36TASPZkAnNY784GtgajerUqM80nX/W1d0wVhmcOFfAxkVsf/Ed+tiYU7ng==,
+ }
+ peerDependencies:
+ '@volar/language-service': ~2.4.0
+ peerDependenciesMeta:
+ '@volar/language-service':
+ optional: true
+ dependencies:
+ '@volar/language-service': 2.4.8
+ vscode-uri: 3.0.8
+ dev: true
+
+ /volar-service-typescript@0.0.62(@volar/language-service@2.4.8):
+ resolution:
+ {
+ integrity: sha512-p7MPi71q7KOsH0eAbZwPBiKPp9B2+qrdHAd6VY5oTo9BUXatsOAdakTm9Yf0DUj6uWBAaOT01BSeVOPwucMV1g==,
+ }
+ peerDependencies:
+ '@volar/language-service': ~2.4.0
+ peerDependenciesMeta:
+ '@volar/language-service':
+ optional: true
+ dependencies:
+ '@volar/language-service': 2.4.8
+ path-browserify: 1.0.1
+ semver: 7.6.3
+ typescript-auto-import-cache: 0.3.5
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-nls: 5.2.0
+ vscode-uri: 3.0.8
+ dev: true
+
+ /volar-service-yaml@0.0.62(@volar/language-service@2.4.8):
+ resolution:
+ {
+ integrity: sha512-k7gvv7sk3wa+nGll3MaSKyjwQsJjIGCHFjVkl3wjaSP2nouKyn9aokGmqjrl39mi88Oy49giog2GkZH526wjig==,
+ }
+ peerDependencies:
+ '@volar/language-service': ~2.4.0
+ peerDependenciesMeta:
+ '@volar/language-service':
+ optional: true
+ dependencies:
+ '@volar/language-service': 2.4.8
+ vscode-uri: 3.0.8
+ yaml-language-server: 1.15.0
+ dev: true
+
+ /vscode-css-languageservice@6.3.1:
+ resolution:
+ {
+ integrity: sha512-1BzTBuJfwMc3A0uX4JBdJgoxp74cjj4q2mDJdp49yD/GuAq4X0k5WtK6fNcMYr+FfJ9nqgR6lpfCSZDkARJ5qQ==,
+ }
+ dependencies:
+ '@vscode/l10n': 0.0.18
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-languageserver-types: 3.17.5
+ vscode-uri: 3.0.8
+ dev: true
+
+ /vscode-html-languageservice@5.3.1:
+ resolution:
+ {
+ integrity: sha512-ysUh4hFeW/WOWz/TO9gm08xigiSsV/FOAZ+DolgJfeLftna54YdmZ4A+lIn46RbdO3/Qv5QHTn1ZGqmrXQhZyA==,
+ }
+ dependencies:
+ '@vscode/l10n': 0.0.18
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-languageserver-types: 3.17.5
+ vscode-uri: 3.0.8
+ dev: true
+
+ /vscode-json-languageservice@4.1.8:
+ resolution:
+ {
+ integrity: sha512-0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg==,
+ }
+ engines: { npm: '>=7.0.0' }
+ dependencies:
+ jsonc-parser: 3.3.1
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-languageserver-types: 3.17.5
+ vscode-nls: 5.2.0
+ vscode-uri: 3.0.8
dev: true
/vscode-jsonrpc@6.0.0:
@@ -22739,7 +21994,14 @@ packages:
integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==,
}
engines: { node: '>=8.0.0 || >=10.0.0' }
- dev: false
+
+ /vscode-jsonrpc@8.2.0:
+ resolution:
+ {
+ integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==,
+ }
+ engines: { node: '>=14.0.0' }
+ dev: true
/vscode-languageclient@7.0.0:
resolution:
@@ -22761,21 +22023,35 @@ packages:
dependencies:
vscode-jsonrpc: 6.0.0
vscode-languageserver-types: 3.16.0
- dev: false
+
+ /vscode-languageserver-protocol@3.17.5:
+ resolution:
+ {
+ integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==,
+ }
+ dependencies:
+ vscode-jsonrpc: 8.2.0
+ vscode-languageserver-types: 3.17.5
+ dev: true
/vscode-languageserver-textdocument@1.0.12:
resolution:
{
integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==,
}
- dev: false
/vscode-languageserver-types@3.16.0:
resolution:
{
integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==,
}
- dev: false
+
+ /vscode-languageserver-types@3.17.5:
+ resolution:
+ {
+ integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==,
+ }
+ dev: true
/vscode-languageserver@7.0.0:
resolution:
@@ -22785,14 +22061,36 @@ packages:
hasBin: true
dependencies:
vscode-languageserver-protocol: 3.16.0
- dev: false
+
+ /vscode-languageserver@9.0.1:
+ resolution:
+ {
+ integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==,
+ }
+ hasBin: true
+ dependencies:
+ vscode-languageserver-protocol: 3.17.5
+ dev: true
+
+ /vscode-nls@5.2.0:
+ resolution:
+ {
+ integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==,
+ }
+ dev: true
+
+ /vscode-uri@2.1.2:
+ resolution:
+ {
+ integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==,
+ }
+ dev: true
/vscode-uri@3.0.8:
resolution:
{
integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==,
}
- dev: false
/vue-bundle-renderer@2.1.1:
resolution:
@@ -22821,24 +22119,6 @@ packages:
'@vue/devtools-api': 6.6.4
vue: 3.5.12(typescript@5.6.3)
- /vue@3.5.12(typescript@5.1.6):
- resolution:
- {
- integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==,
- }
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@vue/compiler-dom': 3.5.12
- '@vue/compiler-sfc': 3.5.12
- '@vue/runtime-dom': 3.5.12
- '@vue/server-renderer': 3.5.12(vue@3.5.12)
- '@vue/shared': 3.5.12
- typescript: 5.1.6
-
/vue@3.5.12(typescript@5.6.3):
resolution:
{
@@ -22876,17 +22156,6 @@ packages:
makeerror: 1.0.12
dev: true
- /watchpack@2.4.0:
- resolution:
- {
- integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==,
- }
- engines: { node: '>=10.13.0' }
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
- dev: false
-
/wcwidth@1.0.1:
resolution:
{
@@ -22906,10 +22175,17 @@ packages:
optionalDependencies:
'@zxing/text-encoding': 0.9.0
- /web-streams-polyfill@3.2.1:
+ /web-namespaces@2.0.1:
+ resolution:
+ {
+ integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==,
+ }
+ dev: false
+
+ /web-streams-polyfill@3.3.3:
resolution:
{
- integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==,
+ integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==,
}
engines: { node: '>= 8' }
@@ -23003,14 +22279,14 @@ packages:
is-symbol: 1.0.4
dev: true
- /which-builtin-type@1.1.3:
+ /which-builtin-type@1.1.4:
resolution:
{
- integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==,
+ integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==,
}
engines: { node: '>= 0.4' }
dependencies:
- function.prototype.name: 1.1.5
+ function.prototype.name: 1.1.6
has-tostringtag: 1.0.2
is-async-function: 2.0.0
is-date-object: 1.0.5
@@ -23020,35 +22296,41 @@ packages:
is-weakref: 1.0.2
isarray: 2.0.5
which-boxed-primitive: 1.0.2
- which-collection: 1.0.1
+ which-collection: 1.0.2
which-typed-array: 1.1.15
dev: true
- /which-collection@1.0.1:
+ /which-collection@1.0.2:
resolution:
{
- integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==,
+ integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==,
}
+ engines: { node: '>= 0.4' }
dependencies:
- is-map: 2.0.2
- is-set: 2.0.2
- is-weakmap: 2.0.1
- is-weakset: 2.0.2
+ is-map: 2.0.3
+ is-set: 2.0.3
+ is-weakmap: 2.0.2
+ is-weakset: 2.0.3
dev: true
- /which-typed-array@1.1.11:
+ /which-pm-runs@1.1.0:
resolution:
{
- integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==,
+ integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==,
}
- engines: { node: '>= 0.4' }
+ engines: { node: '>=4' }
+ dev: false
+
+ /which-pm@2.2.0:
+ resolution:
+ {
+ integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==,
+ }
+ engines: { node: '>=8.15' }
dependencies:
- available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.2
- dev: true
+ load-yaml-file: 0.2.0
+ path-exists: 4.0.0
+ dev: false
/which-typed-array@1.1.15:
resolution:
@@ -23091,13 +22373,15 @@ packages:
dependencies:
string-width: 4.2.3
- /word-wrap@1.2.3:
+ /widest-line@4.0.1:
resolution:
{
- integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==,
+ integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==,
}
- engines: { node: '>=0.10.0' }
- dev: true
+ engines: { node: '>=12' }
+ dependencies:
+ string-width: 5.1.2
+ dev: false
/word-wrap@1.2.5:
resolution:
@@ -23138,7 +22422,7 @@ packages:
dependencies:
ansi-styles: 6.2.1
string-width: 5.1.2
- strip-ansi: 7.0.1
+ strip-ansi: 7.1.0
/wrappy@1.0.2:
resolution:
@@ -23157,10 +22441,10 @@ packages:
signal-exit: 3.0.7
dev: true
- /ws@7.5.9:
+ /ws@7.5.10:
resolution:
{
- integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==,
+ integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==,
}
engines: { node: '>=8.3.0' }
peerDependencies:
@@ -23173,22 +22457,6 @@ packages:
optional: true
dev: true
- /ws@8.11.0:
- resolution:
- {
- integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==,
- }
- engines: { node: '>=10.0.0' }
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: true
-
/ws@8.18.0:
resolution:
{
@@ -23203,7 +22471,6 @@ packages:
optional: true
utf-8-validate:
optional: true
- dev: false
/xml-name-validator@4.0.0:
resolution:
@@ -23254,12 +22521,34 @@ packages:
}
dev: false
- /yaml@2.3.1:
+ /yaml-language-server@1.15.0:
+ resolution:
+ {
+ integrity: sha512-N47AqBDCMQmh6mBLmI6oqxryHRzi33aPFPsJhYy3VTUGCdLHYjGh4FZzpUjRlphaADBBkDmnkM/++KNIOHi5Rw==,
+ }
+ hasBin: true
+ dependencies:
+ ajv: 8.17.1
+ lodash: 4.17.21
+ request-light: 0.5.8
+ vscode-json-languageservice: 4.1.8
+ vscode-languageserver: 7.0.0
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-languageserver-types: 3.17.5
+ vscode-nls: 5.2.0
+ vscode-uri: 3.0.8
+ yaml: 2.2.2
+ optionalDependencies:
+ prettier: 2.8.7
+ dev: true
+
+ /yaml@2.2.2:
resolution:
{
- integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==,
+ integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==,
}
engines: { node: '>= 14' }
+ dev: true
/yaml@2.6.0:
resolution:
@@ -23268,7 +22557,6 @@ packages:
}
engines: { node: '>= 14' }
hasBin: true
- dev: false
/yargs-parser@21.1.1:
resolution:
@@ -23277,15 +22565,15 @@ packages:
}
engines: { node: '>=12' }
- /yargs@17.6.2:
+ /yargs@17.7.2:
resolution:
{
- integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==,
+ integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==,
}
engines: { node: '>=12' }
dependencies:
cliui: 8.0.1
- escalade: 3.1.1
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -23307,6 +22595,14 @@ packages:
}
engines: { node: '>=10' }
+ /yocto-queue@1.1.1:
+ resolution:
+ {
+ integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==,
+ }
+ engines: { node: '>=12.20' }
+ dev: false
+
/zhead@2.2.4:
resolution:
{
@@ -23332,9 +22628,26 @@ packages:
readable-stream: 4.5.2
dev: false
+ /zod-to-json-schema@3.23.5(zod@3.23.8):
+ resolution:
+ {
+ integrity: sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==,
+ }
+ peerDependencies:
+ zod: ^3.23.3
+ dependencies:
+ zod: 3.23.8
+ dev: false
+
+ /zod@3.23.8:
+ resolution:
+ {
+ integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==,
+ }
+ dev: false
+
/zwitch@2.0.4:
resolution:
{
integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==,
}
- dev: true