diff --git a/packages/lucide-figma/package.json b/packages/lucide-figma/package.json
index 0026b677a5d..8fc26e60bff 100644
--- a/packages/lucide-figma/package.json
+++ b/packages/lucide-figma/package.json
@@ -23,8 +23,7 @@
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react": "^1.0.0",
"typescript": "^4.3.2",
- "vite": "^4.4.12",
- "vitest": "^0.32.2",
+ "vite": "5.0.10",
"vite-plugin-singlefile": "^0.5.1"
}
}
diff --git a/packages/lucide-preact/package.json b/packages/lucide-preact/package.json
index b3bae25bf53..10ce43d8096 100644
--- a/packages/lucide-preact/package.json
+++ b/packages/lucide-preact/package.json
@@ -12,7 +12,7 @@
},
"keywords": [
"Lucide",
- "Angular",
+ "Preact",
"Feather",
"Icons",
"Icon",
@@ -33,11 +33,10 @@
],
"sideEffects": false,
"scripts": {
- "build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:bundles && pnpm build:types",
+ "build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:bundles",
"copy:license": "cp ../../LICENSE ./LICENSE",
"clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.js",
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mjs --renderUniqueKey --withAliases --aliasesFileExtension=.ts --iconFileExtension=.ts --exportFileName=index.ts",
- "build:types": "node ./scripts/buildTypes.mjs",
"build:bundles": "rollup -c ./rollup.config.mjs",
"test": "vitest run",
"version": "pnpm version --git-tag-version=false"
@@ -47,12 +46,14 @@
"@lucide/rollup-plugins": "workspace:*",
"@preact/preset-vite": "^2.7.0",
"@testing-library/jest-dom": "^6.1.4",
- "@testing-library/preact": "^2.0.1",
+ "@testing-library/preact": "^3.2.3",
+ "jest-serializer-html": "^7.1.0",
"preact": "^10.19.2",
- "rollup": "^3.29.4",
- "typescript": "^4.9.5",
- "vite": "^4.4.12",
- "vitest": "^0.32.4"
+ "rollup": "^4.9.2",
+ "rollup-plugin-dts": "^6.1.0",
+ "typescript": "^5.3.3",
+ "vite": "5.0.10",
+ "vitest": "^1.1.1"
},
"peerDependencies": {
"preact": "^10.5.13"
diff --git a/packages/lucide-preact/rollup.config.mjs b/packages/lucide-preact/rollup.config.mjs
index 6d75afcff5a..9d82bbbfa83 100644
--- a/packages/lucide-preact/rollup.config.mjs
+++ b/packages/lucide-preact/rollup.config.mjs
@@ -1,4 +1,5 @@
import plugins, { replace } from '@lucide/rollup-plugins';
+import dts from "rollup-plugin-dts";
import pkg from './package.json' assert { type: "json" };
const packageName = 'LucidePreact';
@@ -49,7 +50,7 @@ const configs = bundles
),
...plugins(pkg, minify)
],
- external: ['preact', 'prop-types'],
+ external: ['preact'],
output: {
name: packageName,
...(preserveModules
@@ -64,11 +65,20 @@ const configs = bundles
sourcemap: true,
globals: {
preact: 'preact',
- 'prop-types': 'PropTypes',
},
},
})),
)
.flat();
-export default configs;
+ export default [
+ {
+ input: inputs[0],
+ output: [{
+ file: `dist/${outputFileName}.d.ts`, format: "es"
+ }],
+ plugins: [dts()],
+ },
+ ...configs
+ ];
+
diff --git a/packages/lucide-preact/scripts/buildTypes.mjs b/packages/lucide-preact/scripts/buildTypes.mjs
deleted file mode 100644
index 767807d80b4..00000000000
--- a/packages/lucide-preact/scripts/buildTypes.mjs
+++ /dev/null
@@ -1,92 +0,0 @@
-import path from 'path';
-// eslint-disable-next-line import/no-extraneous-dependencies
-import { getAliases } from '@lucide/build-icons';
-import {
- writeFile,
- readSvgDirectory,
- resetFile,
- toPascalCase,
- getCurrentDirPath,
-} from '../../../scripts/helpers.mjs';
-
-const currentDir = getCurrentDirPath(import.meta.url);
-const srcDirectory = path.join(currentDir, '../dist');
-
-const writeDeclarationFile = (typesFile, directory, content) => {
- resetFile(typesFile, directory);
- writeFile(content, typesFile, directory);
-};
-
-const ICONS_DIR = path.resolve(currentDir, '../../../icons');
-const TYPES_FILE = 'lucide-preact.d.ts';
-
-// Declare type definitions
-let declarationFileContent = `\
-///
-import { JSX, RefObject } from 'preact'
-
-interface LucideProps extends Partial> {
- key?: string | number;
- ref?: string | ((component: any) => any) | RefObject;
- color?: string
- size?: string | number
- strokeWidth?: string | number
- absoluteStrokeWidth?: boolean
-}
-
-export type LucideIcon = (props: LucideProps) => JSX.Element;
-
-export type IconNode = [elementName: keyof ReactSVG, attrs: Record][]
-
-export declare const createLucideIcon: (iconName: string, iconNode: IconNode) => LucideIcon;
-
-// Generated icons
-`;
-
-const svgFiles = readSvgDirectory(ICONS_DIR);
-
-svgFiles.forEach((svgFile) => {
- const iconName = path.basename(svgFile, '.svg');
- const componentName = toPascalCase(iconName);
-
- declarationFileContent += `export declare const ${componentName}: LucideIcon;\n`;
-});
-
-const aliases = await getAliases(ICONS_DIR);
-
-declarationFileContent += `
-// Generated icon aliases
-
-`;
-
-let aliasesCount = 0;
-
-svgFiles.forEach((svgFile) => {
- const iconName = path.basename(svgFile, '.svg');
- const componentName = toPascalCase(iconName);
- const iconAliases = aliases[iconName]?.aliases;
-
- declarationFileContent += `// ${componentName} aliases\n`;
- declarationFileContent += `export declare const ${componentName}Icon: LucideIcon;\n`;
- declarationFileContent += `export declare const Lucide${componentName}: LucideIcon;\n`;
- aliasesCount += 1;
- if (iconAliases != null && Array.isArray(iconAliases)) {
- iconAliases.forEach((alias) => {
- const componentNameAlias = toPascalCase(alias);
- declarationFileContent += `export declare const ${componentNameAlias}: LucideIcon;\n`;
-
- aliasesCount += 1;
- });
- }
-
- declarationFileContent += '\n';
-});
-
-writeDeclarationFile(TYPES_FILE, srcDirectory, declarationFileContent);
-console.log(
- `Generated ${TYPES_FILE} file with`,
- svgFiles.length,
- 'icons and with',
- aliasesCount,
- 'aliases',
-);
diff --git a/packages/lucide-preact/src/createLucideIcon.ts b/packages/lucide-preact/src/createLucideIcon.ts
index 8101577d4e6..b4238c95d88 100644
--- a/packages/lucide-preact/src/createLucideIcon.ts
+++ b/packages/lucide-preact/src/createLucideIcon.ts
@@ -1,15 +1,17 @@
-import { ComponentType, FunctionComponent, h, JSX, RefObject, toChildArray } from 'preact';
+import { type FunctionComponent, h, type JSX, toChildArray } from 'preact';
import defaultAttributes from './defaultAttributes';
-type IconNode = [elementName: keyof JSX.IntrinsicElements, attrs: Record][]
+export type IconNode = [elementName: keyof JSX.IntrinsicElements, attrs: Record][]
-interface LucideProps extends Partial> {
+export interface LucideProps extends Partial> {
color?: string
size?: string | number
strokeWidth?: string | number
absoluteStrokeWidth?: boolean
}
+export type LucideIcon = FunctionComponent
+
/**
* Converts string to KebabCase
* Copied from scripts/helper. If anyone knows how to properly import it here
@@ -20,7 +22,7 @@ interface LucideProps extends Partial> {
*/
export const toKebabCase = (string: string) => string.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase();
-const createLucideIcon = (iconName: string, iconNode: IconNode): FunctionComponent => {
+const createLucideIcon = (iconName: string, iconNode: IconNode): LucideIcon => {
const Component = (
{ color = 'currentColor', size = 24, strokeWidth = 2, absoluteStrokeWidth, children, class: classes = '', ...rest }: LucideProps
) =>
diff --git a/packages/lucide-preact/tests/__snapshots__/lucide-preact.spec.tsx.snap b/packages/lucide-preact/tests/__snapshots__/lucide-preact.spec.tsx.snap
index d6403b7c717..6df3af2c0ff 100644
--- a/packages/lucide-preact/tests/__snapshots__/lucide-preact.spec.tsx.snap
+++ b/packages/lucide-preact/tests/__snapshots__/lucide-preact.spec.tsx.snap
@@ -1,7 +1,93 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
-exports[`Using lucide icon components > should adjust the size, stroke color and stroke width 1`] = `""`;
+exports[`Using lucide icon components > should adjust the size, stroke color and stroke width 1`] = `
+
+`;
-exports[`Using lucide icon components > should not scale the strokeWidth when absoluteStrokeWidth is set 1`] = `""`;
+exports[`Using lucide icon components > should not scale the strokeWidth when absoluteStrokeWidth is set 1`] = `
+
+`;
-exports[`Using lucide icon components > should render an component 1`] = `""`;
+exports[`Using lucide icon components > should render an component 1`] = `
+
+`;
diff --git a/packages/lucide-preact/tests/setupVitest.js b/packages/lucide-preact/tests/setupVitest.js
index 7b0828bfa80..7dfeb1c3b3f 100644
--- a/packages/lucide-preact/tests/setupVitest.js
+++ b/packages/lucide-preact/tests/setupVitest.js
@@ -1 +1,5 @@
+import { expect } from 'vitest'
import '@testing-library/jest-dom';
+import htmlSerializer from 'jest-serializer-html'
+
+expect.addSnapshotSerializer(htmlSerializer)
diff --git a/packages/lucide-preact/vitest.config.ts b/packages/lucide-preact/vitest.config.mts
similarity index 76%
rename from packages/lucide-preact/vitest.config.ts
rename to packages/lucide-preact/vitest.config.mts
index c701acc5c2c..e198befe2ed 100644
--- a/packages/lucide-preact/vitest.config.ts
+++ b/packages/lucide-preact/vitest.config.mts
@@ -6,12 +6,7 @@ export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
- transformMode: {
- web: [/\.jsx?$/],
- },
setupFiles: './tests/setupVitest.js',
- threads: false,
- isolate: false,
},
resolve: {
mainFields: ['module'],
diff --git a/packages/lucide-react-native/package.json b/packages/lucide-react-native/package.json
index 889930d759c..a0106913ad2 100644
--- a/packages/lucide-react-native/package.json
+++ b/packages/lucide-react-native/package.json
@@ -12,7 +12,7 @@
},
"keywords": [
"Lucide",
- "Angular",
+ "React Native",
"Feather",
"Icons",
"Icon",
@@ -34,11 +34,10 @@
"dist"
],
"scripts": {
- "build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:bundles && pnpm build:types",
+ "build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:bundles",
"copy:license": "cp ../../LICENSE ./LICENSE",
"clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.js",
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mjs --renderUniqueKey --iconFileExtension=.ts --exportFileName=index.ts --withAliases --aliasesFileExtension=.ts",
- "build:types": "node ./scripts/buildTypes.mjs",
"build:bundles": "rollup -c ./rollup.config.mjs",
"test": "vitest run",
"version": "pnpm version --git-tag-version=false"
@@ -46,23 +45,23 @@
"devDependencies": {
"@lucide/rollup-plugins": "workspace:*",
"@lucide/build-icons": "workspace:*",
- "@testing-library/jest-dom": "^5.16.5",
- "@testing-library/react": "^13.4.0",
+ "@testing-library/jest-dom": "^6.1.6",
+ "@testing-library/react": "^14.1.2",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.21",
- "@vitejs/plugin-react": "^2.1.0",
- "prop-types": "^15.7.2",
+ "@vitejs/plugin-react": "^4.2.1",
+ "jest-serializer-html": "^7.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
- "react-native": "^0.69.0",
- "react-native-svg": "^14.0.0",
- "rollup": "^3.5.1",
+ "react-native": "^0.73.1",
+ "react-native-svg": "^14.1.0",
+ "rollup": "^4.9.2",
+ "rollup-plugin-dts": "^6.1.0",
"typescript": "^4.8.4",
- "vite": "^4.4.12",
- "vitest": "^0.32.2"
+ "vite": "5.0.10",
+ "vitest": "^1.1.1"
},
"peerDependencies": {
- "prop-types": "^15.7.2",
"react": "^16.5.1 || ^17.0.0 || ^18.0.0",
"react-native": "*",
"react-native-svg": "^12.0.0 || ^13.0.0 || ^14.0.0"
diff --git a/packages/lucide-react-native/rollup.config.mjs b/packages/lucide-react-native/rollup.config.mjs
index 792428902ef..948b21ae65d 100644
--- a/packages/lucide-react-native/rollup.config.mjs
+++ b/packages/lucide-react-native/rollup.config.mjs
@@ -1,4 +1,5 @@
import plugins from '@lucide/rollup-plugins';
+import dts from "rollup-plugin-dts";
import pkg from './package.json' assert { type: 'json' };
const packageName = 'LucideReact';
@@ -25,7 +26,7 @@ const configs = bundles
inputs.map(input => ({
input,
plugins: plugins(pkg, minify),
- external: ['react', 'prop-types', 'react-native-svg'],
+ external: ['react', 'react-native-svg'],
output: {
name: packageName,
...(preserveModules
@@ -42,11 +43,19 @@ const configs = bundles
globals: {
react: 'react',
'react-native-svg': 'react-native-svg',
- 'prop-types': 'PropTypes',
},
},
})),
)
.flat();
-export default configs;
+ export default [
+ {
+ input: inputs[0],
+ output: [{
+ file: `dist/${outputFileName}.d.ts`, format: "es"
+ }],
+ plugins: [dts()],
+ },
+ ...configs
+ ];
diff --git a/packages/lucide-react-native/scripts/buildTypes.mjs b/packages/lucide-react-native/scripts/buildTypes.mjs
deleted file mode 100644
index 27e5cbc1a9f..00000000000
--- a/packages/lucide-react-native/scripts/buildTypes.mjs
+++ /dev/null
@@ -1,92 +0,0 @@
-import path from 'path';
-// eslint-disable-next-line import/no-extraneous-dependencies
-import { getAliases } from '@lucide/build-icons';
-import {
- readSvgDirectory,
- resetFile,
- toPascalCase,
- writeFile,
- getCurrentDirPath,
-} from '../../../scripts/helpers.mjs';
-
-const currentDir = getCurrentDirPath(import.meta.url);
-const srcDirectory = path.join(currentDir, '../dist');
-
-const writeDeclarationFile = (typesFile, directory, content) => {
- resetFile(typesFile, directory);
- writeFile(content, typesFile, directory);
-};
-
-const ICONS_DIR = path.resolve(currentDir, '../../../icons');
-const TYPES_FILE = 'lucide-react-native.d.ts';
-
-let declarationFileContent = `\
-///
-import { ReactSVG, FC, SVGProps } from 'react'
-
-declare module 'lucide-react-native'
-
-// Create interface extending SVGProps
-export interface LucideProps extends Partial> {
- size?: string | number
- absoluteStrokeWidth?: boolean
-}
-
-export type LucideIcon = (props: LucideProps) => JSX.Element;
-
-export type IconNode = [elementName: keyof ReactSVG, attrs: Record][]
-
-export declare const createLucideIcon: (iconName: string, iconNode: IconNode) => LucideIcon;
-
-export type Icon = FC;
-
-// Generated icon
-`;
-
-const svgFiles = readSvgDirectory(ICONS_DIR);
-
-svgFiles.forEach((svgFile) => {
- const iconName = path.basename(svgFile, '.svg');
- const componentName = toPascalCase(iconName);
-
- declarationFileContent += `export declare const ${componentName}: LucideIcon;\n`;
-});
-
-const aliases = await getAliases(ICONS_DIR);
-
-declarationFileContent += `\n
-
-// Generated icon aliases
-`;
-
-let aliasesCount = 0;
-
-svgFiles.forEach((svgFile) => {
- const iconName = path.basename(svgFile, '.svg');
- const componentName = toPascalCase(iconName);
- const iconAliases = aliases[iconName]?.aliases;
-
- declarationFileContent += `// ${componentName} aliases\n`;
- declarationFileContent += `export declare const ${componentName}Icon: LucideIcon;\n`;
- declarationFileContent += `export declare const Lucide${componentName}: LucideIcon;\n`;
- aliasesCount += 1;
- if (iconAliases != null && Array.isArray(iconAliases)) {
- iconAliases.forEach((alias) => {
- const componentNameAlias = toPascalCase(alias);
- declarationFileContent += `export declare const ${componentNameAlias}: LucideIcon;\n`;
-
- aliasesCount += 1;
- });
- }
-
- declarationFileContent += '\n';
-});
-
-writeDeclarationFile(TYPES_FILE, srcDirectory, declarationFileContent);
-console.log(
- `Generated ${TYPES_FILE} file with`,
- svgFiles.length,
- 'icons and with',
- aliasesCount,
- 'aliases',
-);
diff --git a/packages/lucide-react-native/src/createLucideIcon.ts b/packages/lucide-react-native/src/createLucideIcon.ts
index af7d7993508..69e64f887e5 100644
--- a/packages/lucide-react-native/src/createLucideIcon.ts
+++ b/packages/lucide-react-native/src/createLucideIcon.ts
@@ -1,10 +1,9 @@
-import { forwardRef, createElement, ReactSVG, ReactNode, FunctionComponent } from 'react';
-import PropTypes from 'prop-types';
+import { forwardRef, createElement, ReactSVG, FunctionComponent, ForwardRefExoticComponent } from 'react';
import * as NativeSvg from 'react-native-svg';
import defaultAttributes, { childDefaultAttributes } from './defaultAttributes';
import type { SvgProps } from 'react-native-svg';
-type IconNode = [elementName: keyof ReactSVG, attrs: Record][]
+type IconNode = [elementName: keyof ReactSVG, attrs: Record][]
export interface LucideProps extends SvgProps {
size?: string | number
@@ -12,7 +11,9 @@ export interface LucideProps extends SvgProps {
'data-testid'?: string
}
-const createLucideIcon = (iconName: string, iconNode: IconNode) => {
+export type LucideIcon = ForwardRefExoticComponent;
+
+const createLucideIcon = (iconName: string, iconNode: IconNode): LucideIcon => {
const Component = forwardRef(
({ color = 'currentColor', size = 24, strokeWidth = 2, absoluteStrokeWidth, children, 'data-testid': dataTestId, ...rest }: LucideProps, ref) => {
const customAttrs = {
@@ -37,8 +38,8 @@ const createLucideIcon = (iconName: string, iconNode: IconNode) => {
tag.slice(1)) as keyof typeof NativeSvg;
// duplicating the attributes here because generating the OTA update bundles don't inherit the SVG properties from parent (codepush, expo-updates)
return createElement(
- NativeSvg[upperCasedTag] as FunctionComponent>,
- { ...childDefaultAttributes, ...customAttrs, ...attrs },
+ NativeSvg[upperCasedTag] as FunctionComponent,
+ { ...childDefaultAttributes, ...customAttrs, ...attrs } as LucideProps,
);
}),
...(
@@ -49,12 +50,6 @@ const createLucideIcon = (iconName: string, iconNode: IconNode) => {
}
);
- Component.propTypes = {
- color: PropTypes.string,
- size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
- strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
- };
-
Component.displayName = `${iconName}`;
return Component;
diff --git a/packages/lucide-react-native/tests/__snapshots__/lucide-react-native.spec.tsx.snap b/packages/lucide-react-native/tests/__snapshots__/lucide-react-native.spec.tsx.snap
index bacef291e2e..90dca01ac4f 100644
--- a/packages/lucide-react-native/tests/__snapshots__/lucide-react-native.spec.tsx.snap
+++ b/packages/lucide-react-native/tests/__snapshots__/lucide-react-native.spec.tsx.snap
@@ -1,13 +1,522 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
-exports[`Using lucide icon components > should adjust the size, stroke color and stroke width 1`] = `""`;
+exports[`Using lucide icon components > should adjust the size, stroke color and stroke width 1`] = `
+
+`;
-exports[`Using lucide icon components > should duplicate properties to children components 1`] = `""`;
+exports[`Using lucide icon components > should duplicate properties to children components 1`] = `
+
+`;
-exports[`Using lucide icon components > should not scale the strokeWidth when absoluteStrokeWidth is set 1`] = `""`;
+exports[`Using lucide icon components > should not scale the strokeWidth when absoluteStrokeWidth is set 1`] = `
+
+`;
-exports[`Using lucide icon components > should render an component 1`] = `""`;
+exports[`Using lucide icon components > should render an component 1`] = `
+
+`;
-exports[`Using lucide icon components > should work with a single child component 1`] = `""`;
+exports[`Using lucide icon components > should work with a single child component 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`;
-exports[`Using lucide icon components > should work with several children components 1`] = `""`;
+exports[`Using lucide icon components > should work with several children components 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`;
diff --git a/packages/lucide-react-native/tests/setupVitest.js b/packages/lucide-react-native/tests/setupVitest.js
index 7b0828bfa80..4c913f79850 100644
--- a/packages/lucide-react-native/tests/setupVitest.js
+++ b/packages/lucide-react-native/tests/setupVitest.js
@@ -1 +1,11 @@
import '@testing-library/jest-dom';
+import { expect, afterEach } from 'vitest';
+import { cleanup } from '@testing-library/react';
+import '@testing-library/jest-dom/vitest';
+import htmlSerializer from 'jest-serializer-html'
+
+expect.addSnapshotSerializer(htmlSerializer)
+
+afterEach(() => {
+ cleanup();
+});
diff --git a/packages/lucide-react-native/vitest.config.ts b/packages/lucide-react-native/vitest.config.mts
similarity index 73%
rename from packages/lucide-react-native/vitest.config.ts
rename to packages/lucide-react-native/vitest.config.mts
index bd52773777f..2e3f5642079 100644
--- a/packages/lucide-react-native/vitest.config.ts
+++ b/packages/lucide-react-native/vitest.config.mts
@@ -8,12 +8,7 @@ export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
- transformMode: {
- web: [/\.jsx?$/],
- },
setupFiles: './tests/setupVitest.js',
- // threads: false,
- // isolate: false,
mockReset: true,
},
});
diff --git a/packages/lucide-react/package.json b/packages/lucide-react/package.json
index 3100f933124..aa5649a4bab 100644
--- a/packages/lucide-react/package.json
+++ b/packages/lucide-react/package.json
@@ -12,7 +12,7 @@
},
"keywords": [
"Lucide",
- "Angular",
+ "React",
"Feather",
"Icons",
"Icon",
@@ -51,18 +51,18 @@
"devDependencies": {
"@lucide/build-icons": "workspace:*",
"@lucide/rollup-plugins": "workspace:*",
- "@testing-library/jest-dom": "^6.1.4",
- "@testing-library/react": "^11.2.7",
- "@types/prop-types": "^15.7.10",
+ "@testing-library/jest-dom": "^6.1.6",
+ "@testing-library/react": "^14.1.2",
"@types/react": "^18.2.37",
- "@vitejs/plugin-react": "^2.2.0",
- "react": "17.0.2",
- "react-dom": "17.0.2",
- "rollup": "^3.29.4",
- "rollup-plugin-dts": "^5.3.1",
+ "@vitejs/plugin-react": "^4.2.1",
+ "jest-serializer-html": "^7.1.0",
+ "react": "18.2.0",
+ "react-dom": "18.2.0",
+ "rollup": "^4.9.2",
+ "rollup-plugin-dts": "^6.1.0",
"typescript": "^4.9.5",
- "vite": "^4.4.12",
- "vitest": "^0.32.4"
+ "vite": "5.0.10",
+ "vitest": "^1.1.1"
},
"peerDependencies": {
"react": "^16.5.1 || ^17.0.0 || ^18.0.0"
diff --git a/packages/lucide-react/tests/__snapshots__/lucide-react.spec.tsx.snap b/packages/lucide-react/tests/__snapshots__/lucide-react.spec.tsx.snap
index 6fd214c6432..31ab33829f7 100644
--- a/packages/lucide-react/tests/__snapshots__/lucide-react.spec.tsx.snap
+++ b/packages/lucide-react/tests/__snapshots__/lucide-react.spec.tsx.snap
@@ -1,9 +1,128 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
-exports[`Using lucide icon components > should adjust the size, stroke color and stroke width 1`] = `""`;
+exports[`Using lucide icon components > should adjust the size, stroke color and stroke width 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+`;
-exports[`Using lucide icon components > should not scale the strokeWidth when absoluteStrokeWidth is set 1`] = `""`;
+exports[`Using lucide icon components > should not scale the strokeWidth when absoluteStrokeWidth is set 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+`;
-exports[`Using lucide icon components > should render an component 1`] = `""`;
+exports[`Using lucide icon components > should render an component 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+`;
-exports[`Using lucide icon components > should render icons dynamically by using the dynamicIconImports module 1`] = `""`;
+exports[`Using lucide icon components > should render icons dynamically by using the dynamicIconImports module 1`] = `
+
+
+
+
+
+
+
+
+
+
+`;
diff --git a/packages/lucide-react/tests/setupVitest.js b/packages/lucide-react/tests/setupVitest.js
index 7b0828bfa80..24cc3a9bc01 100644
--- a/packages/lucide-react/tests/setupVitest.js
+++ b/packages/lucide-react/tests/setupVitest.js
@@ -1 +1,10 @@
-import '@testing-library/jest-dom';
+import { expect, afterEach } from 'vitest';
+import { cleanup } from '@testing-library/react';
+import '@testing-library/jest-dom/vitest';
+import htmlSerializer from 'jest-serializer-html'
+
+expect.addSnapshotSerializer(htmlSerializer)
+
+afterEach(() => {
+ cleanup();
+});
diff --git a/packages/lucide-react/vitest.config.ts b/packages/lucide-react/vitest.config.mts
similarity index 61%
rename from packages/lucide-react/vitest.config.ts
rename to packages/lucide-react/vitest.config.mts
index 12c1356a019..66f0b6b9523 100644
--- a/packages/lucide-react/vitest.config.ts
+++ b/packages/lucide-react/vitest.config.mts
@@ -6,14 +6,6 @@ export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
- transformMode: {
- web: [/\.jsx?$/],
- },
setupFiles: './tests/setupVitest.js',
- threads: false,
- isolate: false,
- },
- resolve: {
- conditions: ['development', 'browser'],
},
});
diff --git a/packages/lucide-solid/package.json b/packages/lucide-solid/package.json
index e5f96e47d4e..46de9cea95e 100644
--- a/packages/lucide-solid/package.json
+++ b/packages/lucide-solid/package.json
@@ -12,7 +12,8 @@
},
"keywords": [
"Lucide",
- "Angular",
+ "Solid",
+ "SolidJS",
"Feather",
"Icons",
"Icon",
@@ -54,18 +55,18 @@
"devDependencies": {
"@atomico/rollup-plugin-sizes": "^1.1.4",
"@lucide/build-icons": "workspace:*",
- "@solidjs/testing-library": "^0.8.4",
+ "@solidjs/testing-library": "^0.8.5",
"@testing-library/jest-dom": "^6.1.4",
- "babel-preset-solid": "^1.5.4",
+ "jest-serializer-html": "^7.1.0",
"jsdom": "^23.0.1",
- "rollup": "^3.5.1",
+ "rollup": "^4.9.2",
"rollup-plugin-license": "^3.0.1",
"rollup-preset-solid": "^2.0.1",
- "solid-js": "^1.7.7",
+ "solid-js": "^1.8.7",
"typescript": "^4.9.4",
- "vite": "^4.4.12",
+ "vite": "5.0.10",
"vite-plugin-solid": "^2.8.0",
- "vitest": "^1.0.4"
+ "vitest": "0.34.2"
},
"peerDependencies": {
"solid-js": "^1.4.7"
diff --git a/packages/lucide-solid/tests/__snapshots__/lucide-solid.spec.tsx.snap b/packages/lucide-solid/tests/__snapshots__/lucide-solid.spec.tsx.snap
index 90f4ef7843c..f1229f8ea4c 100644
--- a/packages/lucide-solid/tests/__snapshots__/lucide-solid.spec.tsx.snap
+++ b/packages/lucide-solid/tests/__snapshots__/lucide-solid.spec.tsx.snap
@@ -1,7 +1,120 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
-exports[`Using lucide icon components > should adjust the size, stroke color and stroke width 1`] = `""`;
+exports[`Using lucide icon components > should adjust the size, stroke color and stroke width 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+`;
-exports[`Using lucide icon components > should not scale the strokeWidth when absoluteStrokeWidth is set 1`] = `""`;
+exports[`Using lucide icon components > should not scale the strokeWidth when absoluteStrokeWidth is set 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+`;
-exports[`Using lucide icon components > should render an component 1`] = `""`;
+exports[`Using lucide icon components > should render a component 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+`;
diff --git a/packages/lucide-solid/tests/lucide-solid.spec.tsx b/packages/lucide-solid/tests/lucide-solid.spec.tsx
index 775b1b035a7..8e26bb5d1cf 100644
--- a/packages/lucide-solid/tests/lucide-solid.spec.tsx
+++ b/packages/lucide-solid/tests/lucide-solid.spec.tsx
@@ -1,13 +1,12 @@
import { describe, it, expect } from 'vitest';
-import { cleanup, render } from '@solidjs/testing-library'
+import { render, cleanup } from '@solidjs/testing-library'
import { Edit2, Grid, Pen, Droplet } from '../src/lucide-solid'
describe('Using lucide icon components', () => {
- it('should render an component', () => {
+ it('should render a component', () => {
const { container } = render(() => );
- expect( container.innerHTML ).toMatchSnapshot();
- cleanup()
+ expect(container.innerHTML).toMatchSnapshot();
});
it('should adjust the size, stroke color and stroke width', async () => {
@@ -27,7 +26,6 @@ describe('Using lucide icon components', () => {
expect(attributes.height.value).toBe('48');
expect(attributes['stroke-width'].value).toBe('4');
expect( container.innerHTML ).toMatchSnapshot();
- cleanup()
});
it('should render the alias icon', () => {
@@ -55,7 +53,6 @@ describe('Using lucide icon components', () => {
);
expect(PenIconRenderedHTML).toBe(Edit2Container.innerHTML)
- cleanup()
});
@@ -77,7 +74,6 @@ describe('Using lucide icon components', () => {
expect(attributes['stroke-width'].value).toBe('1');
expect( container.innerHTML ).toMatchSnapshot();
- cleanup()
});
it('should add all classes to the element', () => {
diff --git a/packages/lucide-solid/tests/setupVitest.js b/packages/lucide-solid/tests/setupVitest.js
index 7b0828bfa80..f04cb95cea0 100644
--- a/packages/lucide-solid/tests/setupVitest.js
+++ b/packages/lucide-solid/tests/setupVitest.js
@@ -1 +1,10 @@
-import '@testing-library/jest-dom';
+import { expect, afterEach } from 'vitest';
+import { cleanup } from '@solidjs/testing-library';
+import '@testing-library/jest-dom/vitest';
+import htmlSerializer from 'jest-serializer-html'
+
+expect.addSnapshotSerializer(htmlSerializer)
+
+afterEach(() => {
+ cleanup();
+});
diff --git a/packages/lucide-solid/vitest.config.ts b/packages/lucide-solid/vitest.config.mts
similarity index 61%
rename from packages/lucide-solid/vitest.config.ts
rename to packages/lucide-solid/vitest.config.mts
index ff61037c082..18ca8e5eb1f 100644
--- a/packages/lucide-solid/vitest.config.ts
+++ b/packages/lucide-solid/vitest.config.mts
@@ -2,16 +2,12 @@ import { defineConfig } from 'vitest/config'
import solidPlugin from 'vite-plugin-solid';
export default defineConfig({
+ // TODO: Remove this when Solid testing library has support for Vitest 1.0, see: https://github.com/solidjs/solid-testing-library/issues/52
+ // @ts-ignore
plugins: [solidPlugin()],
test: {
globals: true,
environment: 'jsdom',
- transformMode: {
- web: [/\.[jt]sx?$/]
- },
setupFiles: './tests/setupVitest.js',
},
- resolve: {
- conditions: ['development', 'browser'],
- },
});
diff --git a/packages/lucide-static/package.json b/packages/lucide-static/package.json
index 2995b73144f..6723e5325e3 100644
--- a/packages/lucide-static/package.json
+++ b/packages/lucide-static/package.json
@@ -11,7 +11,9 @@
},
"keywords": [
"Lucide",
- "Angular",
+ "Static",
+ "Sprite",
+ "NodeJS",
"Feather",
"Icons",
"Icon",
diff --git a/packages/lucide-svelte/package.json b/packages/lucide-svelte/package.json
index a3a5dd68cdf..40beec86aec 100644
--- a/packages/lucide-svelte/package.json
+++ b/packages/lucide-svelte/package.json
@@ -12,7 +12,7 @@
},
"keywords": [
"Lucide",
- "Angular",
+ "Svelte",
"Feather",
"Icons",
"Icon",
@@ -61,13 +61,14 @@
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/svelte": "^4.0.2",
"@tsconfig/svelte": "^5.0.0",
+ "jest-serializer-html": "^7.1.0",
"jsdom": "^20.0.3",
"svelte": "^4.0.1",
"svelte-check": "^3.4.4",
"svelte-preprocess": "^5.0.4",
"typescript": "^5.1.6",
- "vite": "^4.4.12",
- "vitest": "^0.32.2"
+ "vite": "5.0.10",
+ "vitest": "^1.1.1"
},
"peerDependencies": {
"svelte": ">=3 <5"
diff --git a/packages/lucide-svelte/tests/__snapshots__/lucide-svelte.spec.ts.snap b/packages/lucide-svelte/tests/__snapshots__/lucide-svelte.spec.ts.snap
index 05ceb32707e..5c44a60e5b7 100644
--- a/packages/lucide-svelte/tests/__snapshots__/lucide-svelte.spec.ts.snap
+++ b/packages/lucide-svelte/tests/__snapshots__/lucide-svelte.spec.ts.snap
@@ -86,7 +86,42 @@ exports[`Using lucide icon components > should adjust the size, stroke color and
diff --git a/packages/lucide-svelte/tests/setupVitest.ts b/packages/lucide-svelte/tests/setupVitest.ts
index 7b0828bfa80..fe9e03b670e 100644
--- a/packages/lucide-svelte/tests/setupVitest.ts
+++ b/packages/lucide-svelte/tests/setupVitest.ts
@@ -1 +1,5 @@
-import '@testing-library/jest-dom';
+import { expect } from 'vitest';
+import '@testing-library/jest-dom/vitest';
+import htmlSerializer from 'jest-serializer-html'
+
+expect.addSnapshotSerializer(htmlSerializer)
diff --git a/packages/lucide-vue-next/package.json b/packages/lucide-vue-next/package.json
index 7c3bcf9346d..8df3300648e 100644
--- a/packages/lucide-vue-next/package.json
+++ b/packages/lucide-vue-next/package.json
@@ -13,7 +13,7 @@
},
"keywords": [
"Lucide",
- "Angular",
+ "Vue",
"Feather",
"Icons",
"Icon",
@@ -35,28 +35,26 @@
"nuxt.js"
],
"scripts": {
- "build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:bundles && pnpm build:types",
+ "build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:bundles",
"copy:license": "cp ../../LICENSE ./LICENSE",
"clean": "rm -rf dist && rm -rf ./src/icons/*.ts",
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mjs --renderUniqueKey --withAliases --aliasesFileExtension=.ts --iconFileExtension=.ts --exportFileName=index.ts",
- "build:types": "node ./scripts/buildTypes.mjs",
"build:bundles": "rollup -c ./rollup.config.mjs",
"test": "vitest run",
"version": "pnpm version --git-tag-version=false"
},
"devDependencies": {
- "@lucide/rollup-plugins": "workspace:*",
"@lucide/build-icons": "workspace:*",
- "@testing-library/jest-dom": "^6.1.4",
- "@testing-library/vue": "^6.6.1",
- "@vue/compiler-sfc": "3.2.45",
- "@vue/test-utils": "2.2.4",
- "@vitejs/plugin-vue": "^3.2.0",
- "rollup": "^3.5.1",
- "vite": "^4.4.12",
- "vitest": "^0.32.2",
- "vue": "3.2.45",
- "jsdom": "^20.0.3"
+ "@lucide/rollup-plugins": "workspace:*",
+ "@testing-library/jest-dom": "^6.1.6",
+ "@testing-library/vue": "^8.0.1",
+ "@vitejs/plugin-vue": "^4.6.2",
+ "@vue/test-utils": "2.4.3",
+ "rollup": "^4.9.2",
+ "rollup-plugin-dts": "^6.1.0",
+ "vite": "5.0.10",
+ "vitest": "^1.1.1",
+ "vue": "^3.0.1"
},
"peerDependencies": {
"vue": ">=3.0.1"
diff --git a/packages/lucide-vue-next/rollup.config.mjs b/packages/lucide-vue-next/rollup.config.mjs
index c1a63208244..d1b236944b1 100644
--- a/packages/lucide-vue-next/rollup.config.mjs
+++ b/packages/lucide-vue-next/rollup.config.mjs
@@ -1,5 +1,6 @@
import plugins, { replace } from '@lucide/rollup-plugins';
import pkg from './package.json' assert { type: 'json' };
+import dts from "rollup-plugin-dts";
const packageName = 'LucideVueNext';
const outputFileName = 'lucide-vue-next';
@@ -71,4 +72,20 @@ const configs = bundles
)
.flat();
-export default configs;
+ export default [
+ {
+ input: inputs[0],
+ output: [{
+ file: `dist/${outputFileName}.d.ts`, format: "es"
+ }],
+ plugins: [
+ dts({
+ compilerOptions: {
+ preserveSymlinks: false
+ }
+ })
+ ],
+ },
+ ...configs
+ ];
+
diff --git a/packages/lucide-vue-next/scripts/buildTypes.mjs b/packages/lucide-vue-next/scripts/buildTypes.mjs
deleted file mode 100644
index 028f7d29ed2..00000000000
--- a/packages/lucide-vue-next/scripts/buildTypes.mjs
+++ /dev/null
@@ -1,89 +0,0 @@
-import path from 'path';
-// eslint-disable-next-line import/no-extraneous-dependencies
-import { getAliases } from '@lucide/build-icons';
-import {
- readSvgDirectory,
- resetFile,
- writeFile,
- toPascalCase,
- getCurrentDirPath,
-} from '../../../scripts/helpers.mjs';
-
-const currentDir = getCurrentDirPath(import.meta.url);
-const targetDirectory = path.join(currentDir, '../dist');
-
-const writeDeclarationFile = (typesFile, directory, content) => {
- resetFile(typesFile, directory);
- writeFile(content, typesFile, directory);
-};
-
-const getComponentImport = (componentName) => `export declare const ${componentName}: Icon;\n`;
-
-const ICONS_DIR = path.resolve(currentDir, '../../../icons');
-const TYPES_FILE = 'lucide-vue-next.d.ts';
-
-// Generates header of d.ts file include some types and functions
-let declarationFileContent = `\
-import { SVGAttributes, DefineComponent } from 'vue';
-declare module 'lucide-vue-next'
-
-// Create interface extending SVGAttributes
-export interface SVGProps extends Partial {
- size?: 24 | number
- strokeWidth?: number | string
- absoluteStrokeWidth?: boolean
-}
-
-export type Icon = DefineComponent
-
-// Generated icons
-`;
-
-const svgFiles = readSvgDirectory(ICONS_DIR);
-
-svgFiles.forEach((svgFile) => {
- const nameSvg = path.basename(svgFile, '.svg');
- const componentName = toPascalCase(nameSvg);
-
- declarationFileContent += getComponentImport(componentName);
-});
-
-const aliases = await getAliases(ICONS_DIR);
-
-declarationFileContent += `\n
-
-// Generated icon aliases
-`;
-
-let aliasesCount = 0;
-
-svgFiles.forEach((svgFile) => {
- const iconName = path.basename(svgFile, '.svg');
- const componentName = toPascalCase(iconName);
- const iconAliases = aliases[iconName]?.aliases;
-
- declarationFileContent += `// ${componentName} aliases\n`;
- declarationFileContent += getComponentImport(`${componentName}Icon`);
- declarationFileContent += getComponentImport(`Lucide${componentName}`);
-
- aliasesCount += 1;
- if (iconAliases != null && Array.isArray(iconAliases)) {
- iconAliases.forEach((alias) => {
- const componentNameAlias = toPascalCase(alias);
- declarationFileContent += getComponentImport(componentNameAlias);
-
- aliasesCount += 1;
- });
- }
-
- declarationFileContent += '\n';
-});
-
-writeDeclarationFile(TYPES_FILE, targetDirectory, declarationFileContent);
-console.log(
- `Generated ${TYPES_FILE} file with`,
- svgFiles.length,
- 'icons and with',
- aliasesCount,
- 'aliases',
-);
diff --git a/packages/lucide-vue-next/src/createLucideIcon.ts b/packages/lucide-vue-next/src/createLucideIcon.ts
index 45b1220de11..13bbf3e92bb 100644
--- a/packages/lucide-vue-next/src/createLucideIcon.ts
+++ b/packages/lucide-vue-next/src/createLucideIcon.ts
@@ -1,5 +1,5 @@
import { h } from 'vue';
-import type { SVGAttributes, FunctionalComponent } from 'vue';
+import type { SVGAttributes, FunctionalComponent, DefineComponent } from 'vue';
import defaultAttributes from './defaultAttributes';
// Create interface extending SVGAttributes
@@ -10,8 +10,8 @@ export interface SVGProps extends Partial {
}
-type IconNode = [elementName: string, attrs: Record][]
-
+export type IconNode = [elementName: string, attrs: Record][]
+export type Icon = FunctionalComponent
/**
* Converts string to KebabCase
* Copied from scripts/helper. If anyone knows how to properly import it here
@@ -22,7 +22,7 @@ type IconNode = [elementName: string, attrs: Record][]
*/
export const toKebabCase = (string: string) => string.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase();
-const createLucideIcon = (iconName: string, iconNode: IconNode): FunctionalComponent => (
+const createLucideIcon = (iconName: string, iconNode: IconNode): Icon => (
{ size, strokeWidth = 2, absoluteStrokeWidth, color, class: classes, ...props }, // props
{ attrs, slots } // context
) => {
diff --git a/packages/lucide-vue-next/tests/lucide-vue-next.spec.ts b/packages/lucide-vue-next/tests/lucide-vue-next.spec.ts
index f002775ed6b..483965a6122 100644
--- a/packages/lucide-vue-next/tests/lucide-vue-next.spec.ts
+++ b/packages/lucide-vue-next/tests/lucide-vue-next.spec.ts
@@ -113,8 +113,6 @@ describe('Using lucide icon components', () => {
}
})
- console.log(PenIconRenderedHTML, Edit2Container.innerHTML)
-
expect(PenIconRenderedHTML).toBe(Edit2Container.innerHTML)
})
diff --git a/packages/lucide-vue-next/tsconfig.json b/packages/lucide-vue-next/tsconfig.json
index 6e5311e0412..e605a4cde5b 100644
--- a/packages/lucide-vue-next/tsconfig.json
+++ b/packages/lucide-vue-next/tsconfig.json
@@ -12,7 +12,5 @@
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"noEmit": true,
- "types": ["vitest/globals"]
- },
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
+ }
}
diff --git a/packages/lucide-vue-next/vitest.config.ts b/packages/lucide-vue-next/vitest.config.mts
similarity index 100%
rename from packages/lucide-vue-next/vitest.config.ts
rename to packages/lucide-vue-next/vitest.config.mts
diff --git a/packages/lucide-vue/package.json b/packages/lucide-vue/package.json
index 3a91cc62660..2c9431a02d9 100644
--- a/packages/lucide-vue/package.json
+++ b/packages/lucide-vue/package.json
@@ -13,7 +13,7 @@
},
"keywords": [
"Lucide",
- "Angular",
+ "Vue",
"Feather",
"Icons",
"Icon",
@@ -51,7 +51,7 @@
"@vue/test-utils": "1.3.0",
"rollup": "^3.23.0",
"typescript": "^4.9.5",
- "vite": "^4.4.12",
+ "vite": "5.0.10",
"vitest": "^0.32.2",
"vue": "2.7.14",
"vue-template-compiler": "2.7.14"
diff --git a/packages/lucide/package.json b/packages/lucide/package.json
index 48e1a82fb3b..689c0801338 100644
--- a/packages/lucide/package.json
+++ b/packages/lucide/package.json
@@ -12,7 +12,7 @@
},
"keywords": [
"Lucide",
- "Angular",
+ "HTML",
"Feather",
"Icons",
"Icon",
@@ -37,20 +37,20 @@
"copy:license": "cp ../../LICENSE ./LICENSE",
"clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.ts",
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mjs --iconFileExtension=.ts --withAliases --aliasNamesOnly --aliasesFileExtension=.ts --exportFileName=index.ts",
- "build:types": "node ./scripts/buildTypes.mjs",
"build:bundles": "rollup -c rollup.config.mjs",
"test": "vitest run",
"version": "pnpm version --git-tag-version=false"
},
"devDependencies": {
- "@lucide/rollup-plugins": "workspace:*",
"@lucide/build-icons": "workspace:*",
- "@rollup/plugin-replace": "^5.0.1",
- "@testing-library/jest-dom": "^5.16.5",
- "rollup": "^3.5.1",
- "rollup-plugin-dts": "^5.0.0",
+ "@lucide/rollup-plugins": "workspace:*",
+ "@rollup/plugin-replace": "^5.0.5",
+ "@testing-library/jest-dom": "^6.1.6",
+ "jest-serializer-html": "^7.1.0",
+ "rollup": "^4.9.2",
+ "rollup-plugin-dts": "^6.1.0",
"typescript": "^4.9.3",
- "vite": "^4.4.12",
- "vitest": "^0.32.2"
+ "vite": "5.0.10",
+ "vitest": "^1.1.1"
}
}
diff --git a/packages/lucide/scripts/buildTypes.mjs b/packages/lucide/scripts/buildTypes.mjs
deleted file mode 100644
index 239043f323e..00000000000
--- a/packages/lucide/scripts/buildTypes.mjs
+++ /dev/null
@@ -1,86 +0,0 @@
-import path from 'path';
-
-import {
- readSvgDirectory,
- appendFile,
- writeFile,
- toPascalCase,
- getCurrentDirPath,
-} from '../../../scripts/helpers.mjs';
-
-const currentDir = getCurrentDirPath(import.meta.url);
-
-const defaultAttributes = {
- xmlns: 'http://www.w3.org/2000/svg',
- width: 24,
- height: 24,
- viewBox: '0 0 24 24',
- fill: 'none',
- stroke: 'currentColor',
- 'stroke-width': 2,
- 'stroke-linecap': 'round',
- 'stroke-linejoin': 'round',
-};
-
-const TARGET_DIR = path.join(currentDir, '../dist');
-const ICONS_DIR = path.resolve(currentDir, '../../../icons');
-const TYPES_FILE_NAME = 'lucide.d.ts';
-
-// Generates header of d.ts file include some types and functions
-const typeDefinitions = `\
-declare module 'lucide'
-
-export interface SVGProps extends Partial ${JSON.stringify(defaultAttributes, null, 2)}
-
-export declare type IconNodeChild = readonly [string, object];
-export declare type IconNode = readonly [tag: string, attrs: SVGProps, children?: IconNodeChild[]];
-export declare type CustomAttrs = { [attr:string]: any }
-export type Icons = { [key: string]: IconNode }
-
-export interface CreateIconsOptions {
- /**
- * List of icons you want to replace
- *
- * For example: \`{ Menu, Circle}\`.
- *
- * For replace all icons in lucide library, import \`icons\` and use it.
- */
- icons: Icons;
-
- /**
- * Search HTML emelemt by \`nameAttr\` property.
- *
- * For example if define \`\`, fill by \`data-lucide\`.
- *
- * @default 'data-lucide'
- */
- nameAttr?: string;
-
- /**
- * Change defult attribute for show like color, fill, width , ...
- *
- * @default undefined
- */
- attrs?: CustomAttrs;
-}
-
-export function createElement(icon: IconNode): SVGSVGElement;
-export function createIcons(options: CreateIconsOptions): void;
-
-export declare const icons: Icons;
-
-// Generated icons
-`;
-
-writeFile(typeDefinitions, TYPES_FILE_NAME, TARGET_DIR);
-
-const svgFiles = readSvgDirectory(ICONS_DIR);
-
-svgFiles.forEach((svgFile) => {
- const nameSvg = path.basename(svgFile, '.svg');
- const namePascal = toPascalCase(nameSvg);
-
- appendFile(`export declare const ${namePascal}: IconNode;\n`, TYPES_FILE_NAME, TARGET_DIR);
-});
-
-console.log(`Generated ${TYPES_FILE_NAME} file with`, svgFiles.length, 'icons');
diff --git a/packages/lucide/tests/__snapshots__/lucide.spec.js.snap b/packages/lucide/tests/__snapshots__/lucide.spec.js.snap
index 2cb27d149da..f1d2b50acf5 100644
--- a/packages/lucide/tests/__snapshots__/lucide.spec.js.snap
+++ b/packages/lucide/tests/__snapshots__/lucide.spec.js.snap
@@ -1,7 +1,76 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
-exports[`createIcons > should add custom attributes 1`] = `""`;
+exports[`createIcons > should add custom attributes 1`] = `
+
+
+
+
+
+
+
+
+`;
-exports[`createIcons > should read elements from DOM and replace icon with alias name 1`] = `""`;
+exports[`createIcons > should read elements from DOM and replace icon with alias name 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+`;
-exports[`createIcons > should read elements from DOM and replace it with icons 1`] = `""`;
+exports[`createIcons > should read elements from DOM and replace it with icons 1`] = `
+
+
+
+
+
+
+
+
+`;
diff --git a/packages/lucide/tests/setupVitest.js b/packages/lucide/tests/setupVitest.js
index 7b0828bfa80..b407e0fd20a 100644
--- a/packages/lucide/tests/setupVitest.js
+++ b/packages/lucide/tests/setupVitest.js
@@ -1 +1,6 @@
-import '@testing-library/jest-dom';
+import { expect } from 'vitest'
+import '@testing-library/jest-dom/vitest';
+import htmlSerializer from 'jest-serializer-html'
+
+
+expect.addSnapshotSerializer(htmlSerializer)
diff --git a/packages/lucide/vitest.config.ts b/packages/lucide/vitest.config.mts
similarity index 52%
rename from packages/lucide/vitest.config.ts
rename to packages/lucide/vitest.config.mts
index e128a096ca2..295f35b093f 100644
--- a/packages/lucide/vitest.config.ts
+++ b/packages/lucide/vitest.config.mts
@@ -4,14 +4,6 @@ export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
- transformMode: {
- web: [/\.jsx?$/],
- },
setupFiles: './tests/setupVitest.js',
- threads: false,
- isolate: false,
- },
- resolve: {
- conditions: ['development', 'browser'],
- },
+ }
});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index aa36efe661f..71775bf475f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -90,19 +90,19 @@ importers:
dependencies:
'@floating-ui/vue':
specifier: ^1.0.1
- version: 1.0.2(vue@3.3.4)
+ version: 1.0.2(vue@3.4.3)
'@headlessui/vue':
specifier: ^1.7.13
- version: 1.7.15(vue@3.3.4)
+ version: 1.7.15(vue@3.4.3)
'@resvg/resvg-wasm':
specifier: ^2.4.1
version: 2.4.1
'@vueuse/components':
specifier: ^10.1.0
- version: 10.3.0(vue@3.3.4)
+ version: 10.3.0(vue@3.4.3)
'@vueuse/core':
specifier: ^10.1.0
- version: 10.3.0(vue@3.3.4)
+ version: 10.6.1(vue@3.4.3)
element-to-path:
specifier: ^1.2.1
version: 1.2.1
@@ -135,16 +135,16 @@ importers:
version: 18.2.0(react@18.2.0)
sandpack-vue3:
specifier: ^3.1.6
- version: 3.1.7(@lezer/common@1.1.2)(vue@3.3.4)
+ version: 3.1.7(@lezer/common@1.2.0)(vue@3.4.3)
semver:
specifier: ^7.5.2
- version: 7.5.2
+ version: 7.5.4
shikiji:
specifier: ^0.7.4
version: 0.7.4
simple-git:
specifier: ^3.18.0
- version: 3.19.1
+ version: 3.21.0
sitemap:
specifier: ^7.1.1
version: 7.1.1
@@ -156,23 +156,23 @@ importers:
version: 5.3.1
vue:
specifier: ^3.2.47
- version: 3.3.4
+ version: 3.4.3(typescript@4.9.5)
devDependencies:
'@rollup/plugin-replace':
specifier: ^5.0.2
- version: 5.0.2(rollup@3.27.0)
+ version: 5.0.5(rollup@4.9.2)
'@types/semver':
specifier: ^7.5.3
- version: 7.5.3
+ version: 7.5.6
h3:
specifier: ^1.8.0
- version: 1.8.0
+ version: 1.9.0
nitropack:
specifier: npm:nitropack-edge@latest
version: /nitropack-edge@2.7.0-28295243.3e9302a
node-fetch:
specifier: '2'
- version: 2.6.12
+ version: 2.7.0
rollup-plugin-copy:
specifier: ^3.4.0
version: 3.4.0
@@ -189,26 +189,29 @@ importers:
specifier: workspace:*
version: link:../../tools/rollup-plugins
'@rollup/plugin-replace':
- specifier: ^5.0.1
- version: 5.0.2(rollup@3.27.0)
+ specifier: ^5.0.5
+ version: 5.0.5(rollup@4.9.2)
'@testing-library/jest-dom':
- specifier: ^5.16.5
- version: 5.17.0
+ specifier: ^6.1.6
+ version: 6.1.6(vitest@1.1.1)
+ jest-serializer-html:
+ specifier: ^7.1.0
+ version: 7.1.0
rollup:
- specifier: ^3.5.1
- version: 3.27.0
+ specifier: ^4.9.2
+ version: 4.9.2
rollup-plugin-dts:
- specifier: ^5.0.0
- version: 5.3.1(rollup@3.27.0)(typescript@4.9.5)
+ specifier: ^6.1.0
+ version: 6.1.0(rollup@4.9.2)(typescript@4.9.5)
typescript:
specifier: ^4.9.3
version: 4.9.5
vite:
- specifier: ^4.4.12
- version: 4.5.0(@types/node@20.9.2)
+ specifier: 5.0.10
+ version: 5.0.10
vitest:
- specifier: ^0.32.2
- version: 0.32.4(jsdom@20.0.3)
+ specifier: ^1.1.1
+ version: 1.1.1(jsdom@20.0.3)
packages/lucide-angular:
devDependencies:
@@ -217,19 +220,19 @@ importers:
version: 13.3.11(@angular/compiler-cli@13.3.12)(karma@6.3.20)(ng-packagr@13.3.1)(protractor@7.0.0)(typescript@4.6.4)
'@angular-eslint/builder':
specifier: ~13.0.0
- version: 13.0.1(eslint@8.46.0)(typescript@4.6.4)
+ version: 13.0.1(eslint@8.56.0)(typescript@4.6.4)
'@angular-eslint/eslint-plugin':
specifier: ~13.0.0
- version: 13.0.1(eslint@8.46.0)(typescript@4.6.4)
+ version: 13.0.1(eslint@8.56.0)(typescript@4.6.4)
'@angular-eslint/eslint-plugin-template':
specifier: ~13.0.0
- version: 13.0.1(eslint@8.46.0)(typescript@4.6.4)
+ version: 13.0.1(eslint@8.56.0)(typescript@4.6.4)
'@angular-eslint/schematics':
specifier: ~13.0.0
- version: 13.0.1(@angular/cli@13.3.11)(eslint@8.46.0)(typescript@4.6.4)
+ version: 13.0.1(@angular/cli@13.3.11)(eslint@8.56.0)(typescript@4.6.4)
'@angular-eslint/template-parser':
specifier: ~13.0.0
- version: 13.0.1(eslint@8.46.0)(typescript@4.6.4)
+ version: 13.0.1(eslint@8.56.0)(typescript@4.6.4)
'@angular/cli':
specifier: ~13.3.11
version: 13.3.11
@@ -262,19 +265,19 @@ importers:
version: 12.20.55
'@typescript-eslint/eslint-plugin':
specifier: 5.48.2
- version: 5.48.2(@typescript-eslint/parser@5.48.2)(eslint@8.46.0)(typescript@4.6.4)
+ version: 5.48.2(@typescript-eslint/parser@5.48.2)(eslint@8.56.0)(typescript@4.6.4)
'@typescript-eslint/parser':
specifier: 5.48.2
- version: 5.48.2(eslint@8.46.0)(typescript@4.6.4)
+ version: 5.48.2(eslint@8.56.0)(typescript@4.6.4)
eslint:
specifier: ^8.33.0
- version: 8.46.0
+ version: 8.56.0
eslint-config-prettier:
specifier: ^8.5.0
- version: 8.9.0(eslint@8.46.0)
+ version: 8.10.0(eslint@8.56.0)
eslint-plugin-prettier:
specifier: ^4.2.1
- version: 4.2.1(eslint-config-prettier@8.9.0)(eslint@8.46.0)(prettier@2.8.8)
+ version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.56.0)(prettier@2.8.8)
jasmine-core:
specifier: ~4.0.0
version: 4.0.1
@@ -353,14 +356,11 @@ importers:
specifier: ^4.3.2
version: 4.9.5
vite:
- specifier: ^4.4.12
- version: 4.5.0(@types/node@20.9.2)
+ specifier: 5.0.10
+ version: 5.0.10
vite-plugin-singlefile:
specifier: ^0.5.1
- version: 0.5.1(vite@4.5.0)
- vitest:
- specifier: ^0.32.2
- version: 0.32.4(jsdom@20.0.3)
+ version: 0.5.1(vite@5.0.10)
packages/lucide-preact:
devDependencies:
@@ -372,28 +372,34 @@ importers:
version: link:../../tools/rollup-plugins
'@preact/preset-vite':
specifier: ^2.7.0
- version: 2.7.0(preact@10.19.2)(vite@4.5.0)
+ version: 2.7.0(preact@10.19.2)(vite@5.0.10)
'@testing-library/jest-dom':
specifier: ^6.1.4
- version: 6.1.4(vitest@0.32.4)
+ version: 6.1.6(vitest@1.1.1)
'@testing-library/preact':
- specifier: ^2.0.1
- version: 2.0.1(preact@10.19.2)
+ specifier: ^3.2.3
+ version: 3.2.3(preact@10.19.2)
+ jest-serializer-html:
+ specifier: ^7.1.0
+ version: 7.1.0
preact:
specifier: ^10.19.2
version: 10.19.2
rollup:
- specifier: ^3.29.4
- version: 3.29.4
+ specifier: ^4.9.2
+ version: 4.9.2
+ rollup-plugin-dts:
+ specifier: ^6.1.0
+ version: 6.1.0(rollup@4.9.2)(typescript@5.3.3)
typescript:
- specifier: ^4.9.5
- version: 4.9.5
+ specifier: ^5.3.3
+ version: 5.3.3
vite:
- specifier: ^4.4.12
- version: 4.5.0(@types/node@20.9.2)
+ specifier: 5.0.10
+ version: 5.0.10
vitest:
- specifier: ^0.32.4
- version: 0.32.4(jsdom@20.0.3)
+ specifier: ^1.1.1
+ version: 1.1.1(jsdom@20.0.3)
packages/lucide-react:
devDependencies:
@@ -404,41 +410,41 @@ importers:
specifier: workspace:*
version: link:../../tools/rollup-plugins
'@testing-library/jest-dom':
- specifier: ^6.1.4
- version: 6.1.4(vitest@0.32.4)
+ specifier: ^6.1.6
+ version: 6.1.6(vitest@1.1.1)
'@testing-library/react':
- specifier: ^11.2.7
- version: 11.2.7(react-dom@17.0.2)(react@17.0.2)
- '@types/prop-types':
- specifier: ^15.7.10
- version: 15.7.10
+ specifier: ^14.1.2
+ version: 14.1.2(react-dom@18.2.0)(react@18.2.0)
'@types/react':
specifier: ^18.2.37
version: 18.2.37
'@vitejs/plugin-react':
- specifier: ^2.2.0
- version: 2.2.0(vite@4.5.0)
+ specifier: ^4.2.1
+ version: 4.2.1(vite@5.0.10)
+ jest-serializer-html:
+ specifier: ^7.1.0
+ version: 7.1.0
react:
- specifier: 17.0.2
- version: 17.0.2
+ specifier: 18.2.0
+ version: 18.2.0
react-dom:
- specifier: 17.0.2
- version: 17.0.2(react@17.0.2)
+ specifier: 18.2.0
+ version: 18.2.0(react@18.2.0)
rollup:
- specifier: ^3.29.4
- version: 3.29.4
+ specifier: ^4.9.2
+ version: 4.9.2
rollup-plugin-dts:
- specifier: ^5.3.1
- version: 5.3.1(rollup@3.29.4)(typescript@4.9.5)
+ specifier: ^6.1.0
+ version: 6.1.0(rollup@4.9.2)(typescript@4.9.5)
typescript:
specifier: ^4.9.5
version: 4.9.5
vite:
- specifier: ^4.4.12
- version: 4.5.0(@types/node@20.9.2)
+ specifier: 5.0.10
+ version: 5.0.10
vitest:
- specifier: ^0.32.4
- version: 0.32.4(jsdom@20.0.3)
+ specifier: ^1.1.1
+ version: 1.1.1(jsdom@20.0.3)
packages/lucide-react-native:
devDependencies:
@@ -449,23 +455,23 @@ importers:
specifier: workspace:*
version: link:../../tools/rollup-plugins
'@testing-library/jest-dom':
- specifier: ^5.16.5
- version: 5.17.0
+ specifier: ^6.1.6
+ version: 6.1.6(vitest@1.1.1)
'@testing-library/react':
- specifier: ^13.4.0
- version: 13.4.0(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^14.1.2
+ version: 14.1.2(react-dom@18.2.0)(react@18.2.0)
'@types/prop-types':
specifier: ^15.7.5
- version: 15.7.5
+ version: 15.7.10
'@types/react':
specifier: ^18.0.21
- version: 18.2.17
+ version: 18.2.37
'@vitejs/plugin-react':
- specifier: ^2.1.0
- version: 2.2.0(vite@4.5.0)
- prop-types:
- specifier: ^15.7.2
- version: 15.8.1
+ specifier: ^4.2.1
+ version: 4.2.1(vite@5.0.10)
+ jest-serializer-html:
+ specifier: ^7.1.0
+ version: 7.1.0
react:
specifier: ^18.0.0
version: 18.2.0
@@ -473,74 +479,77 @@ importers:
specifier: ^18.0.0
version: 18.2.0(react@18.2.0)
react-native:
- specifier: ^0.69.0
- version: 0.69.12(react@18.2.0)
+ specifier: ^0.73.1
+ version: 0.73.1(react@18.2.0)
react-native-svg:
- specifier: ^14.0.0
- version: 14.1.0(react-native@0.69.12)(react@18.2.0)
+ specifier: ^14.1.0
+ version: 14.1.0(react-native@0.73.1)(react@18.2.0)
rollup:
- specifier: ^3.5.1
- version: 3.27.0
+ specifier: ^4.9.2
+ version: 4.9.2
+ rollup-plugin-dts:
+ specifier: ^6.1.0
+ version: 6.1.0(rollup@4.9.2)(typescript@4.9.5)
typescript:
specifier: ^4.8.4
version: 4.9.5
vite:
- specifier: ^4.4.12
- version: 4.5.0(@types/node@20.9.2)
+ specifier: 5.0.10
+ version: 5.0.10
vitest:
- specifier: ^0.32.2
- version: 0.32.4(jsdom@20.0.3)
+ specifier: ^1.1.1
+ version: 1.1.1(jsdom@20.0.3)
packages/lucide-solid:
devDependencies:
'@atomico/rollup-plugin-sizes':
specifier: ^1.1.4
- version: 1.1.4(rollup@3.27.0)
+ version: 1.1.4(rollup@4.9.2)
'@lucide/build-icons':
specifier: workspace:*
version: link:../../tools/build-icons
'@solidjs/testing-library':
- specifier: ^0.8.4
- version: 0.8.4(@solidjs/router@0.10.3)(solid-js@1.7.8)
+ specifier: ^0.8.5
+ version: 0.8.5(@solidjs/router@0.10.5)(solid-js@1.8.7)
'@testing-library/jest-dom':
specifier: ^6.1.4
- version: 6.1.4(vitest@1.0.4)
- babel-preset-solid:
- specifier: ^1.5.4
- version: 1.7.7
+ version: 6.1.6(vitest@0.34.2)
+ jest-serializer-html:
+ specifier: ^7.1.0
+ version: 7.1.0
jsdom:
specifier: ^23.0.1
version: 23.0.1
rollup:
- specifier: ^3.5.1
- version: 3.27.0
+ specifier: ^4.9.2
+ version: 4.9.2
rollup-plugin-license:
specifier: ^3.0.1
- version: 3.0.1(rollup@3.27.0)
+ version: 3.2.0(rollup@4.9.2)
rollup-preset-solid:
specifier: ^2.0.1
version: 2.0.1
solid-js:
- specifier: ^1.7.7
- version: 1.7.8
+ specifier: ^1.8.7
+ version: 1.8.7
typescript:
specifier: ^4.9.4
version: 4.9.5
vite:
- specifier: ^4.4.12
- version: 4.5.0(@types/node@20.9.2)
+ specifier: 5.0.10
+ version: 5.0.10
vite-plugin-solid:
specifier: ^2.8.0
- version: 2.8.0(solid-js@1.7.8)(vite@4.5.0)
+ version: 2.8.0(solid-js@1.8.7)(vite@5.0.10)
vitest:
- specifier: ^1.0.4
- version: 1.0.4(jsdom@23.0.1)
+ specifier: 0.34.2
+ version: 0.34.2(jsdom@23.0.1)
packages/lucide-static:
devDependencies:
prettier:
specifier: ^2.3.2
- version: 2.7.1
+ version: 2.8.8
svgson:
specifier: ^5.2.1
version: 5.3.1
@@ -552,19 +561,22 @@ importers:
version: link:../../tools/build-icons
'@sveltejs/package':
specifier: ^2.2.3
- version: 2.2.3(svelte@4.1.2)(typescript@5.1.6)
+ version: 2.2.3(svelte@4.1.2)(typescript@5.3.3)
'@sveltejs/vite-plugin-svelte':
specifier: ^2.4.2
- version: 2.4.3(svelte@4.1.2)(vite@4.5.0)
+ version: 2.4.3(svelte@4.1.2)(vite@5.0.10)
'@testing-library/jest-dom':
specifier: ^6.1.4
- version: 6.1.4(vitest@0.32.4)
+ version: 6.1.6(vitest@1.1.1)
'@testing-library/svelte':
specifier: ^4.0.2
version: 4.0.3(svelte@4.1.2)
'@tsconfig/svelte':
specifier: ^5.0.0
version: 5.0.0
+ jest-serializer-html:
+ specifier: ^7.1.0
+ version: 7.1.0
jsdom:
specifier: ^20.0.3
version: 20.0.3
@@ -576,16 +588,16 @@ importers:
version: 3.4.6(svelte@4.1.2)
svelte-preprocess:
specifier: ^5.0.4
- version: 5.0.4(svelte@4.1.2)(typescript@5.1.6)
+ version: 5.0.4(svelte@4.1.2)(typescript@5.3.3)
typescript:
specifier: ^5.1.6
- version: 5.1.6
+ version: 5.3.3
vite:
- specifier: ^4.4.12
- version: 4.5.0(@types/node@20.9.2)
+ specifier: 5.0.10
+ version: 5.0.10
vitest:
- specifier: ^0.32.2
- version: 0.32.4(jsdom@20.0.3)
+ specifier: ^1.1.1
+ version: 1.1.1(jsdom@20.0.3)
packages/lucide-vue:
devDependencies:
@@ -597,28 +609,28 @@ importers:
version: link:../../tools/rollup-plugins
'@testing-library/jest-dom':
specifier: ^6.1.4
- version: 6.1.4(vitest@0.32.4)
+ version: 6.1.6(vitest@0.32.4)
'@testing-library/vue':
specifier: ^5.9.0
version: 5.9.0(vue-template-compiler@2.7.14)(vue@2.7.14)
'@vitejs/plugin-vue2':
specifier: 2.2.0
- version: 2.2.0(vite@4.5.0)(vue@2.7.14)
+ version: 2.2.0(vite@5.0.10)(vue@2.7.14)
'@vue/test-utils':
specifier: 1.3.0
version: 1.3.0(vue-template-compiler@2.7.14)(vue@2.7.14)
rollup:
specifier: ^3.23.0
- version: 3.27.0
+ version: 3.29.4
typescript:
specifier: ^4.9.5
version: 4.9.5
vite:
- specifier: ^4.4.12
- version: 4.5.0(@types/node@20.9.2)
+ specifier: 5.0.10
+ version: 5.0.10
vitest:
specifier: ^0.32.2
- version: 0.32.4(jsdom@20.0.3)
+ version: 0.32.4
vue:
specifier: 2.7.14
version: 2.7.14
@@ -635,41 +647,38 @@ importers:
specifier: workspace:*
version: link:../../tools/rollup-plugins
'@testing-library/jest-dom':
- specifier: ^6.1.4
- version: 6.1.4(vitest@0.32.4)
+ specifier: ^6.1.6
+ version: 6.1.6(vitest@1.1.1)
'@testing-library/vue':
- specifier: ^6.6.1
- version: 6.6.1(@vue/compiler-sfc@3.2.45)(vue@3.2.45)
+ specifier: ^8.0.1
+ version: 8.0.1(@vue/compiler-sfc@3.4.3)(vue@3.4.3)
'@vitejs/plugin-vue':
- specifier: ^3.2.0
- version: 3.2.0(vite@4.5.0)(vue@3.2.45)
- '@vue/compiler-sfc':
- specifier: 3.2.45
- version: 3.2.45
+ specifier: ^4.6.2
+ version: 4.6.2(vite@5.0.10)(vue@3.4.3)
'@vue/test-utils':
- specifier: 2.2.4
- version: 2.2.4(vue@3.2.45)
- jsdom:
- specifier: ^20.0.3
- version: 20.0.3
+ specifier: 2.4.3
+ version: 2.4.3(vue@3.4.3)
rollup:
- specifier: ^3.5.1
- version: 3.27.0
+ specifier: ^4.9.2
+ version: 4.9.2
+ rollup-plugin-dts:
+ specifier: ^6.1.0
+ version: 6.1.0(rollup@4.9.2)(typescript@4.9.5)
vite:
- specifier: ^4.4.12
- version: 4.5.0(@types/node@20.9.2)
+ specifier: 5.0.10
+ version: 5.0.10
vitest:
- specifier: ^0.32.2
- version: 0.32.4(jsdom@20.0.3)
+ specifier: ^1.1.1
+ version: 1.1.1(jsdom@20.0.3)
vue:
- specifier: 3.2.45
- version: 3.2.45
+ specifier: ^3.0.1
+ version: 3.4.3(typescript@4.9.5)
tools/build-font:
dependencies:
fs-extra:
specifier: ^11.1.1
- version: 11.1.1
+ version: 11.2.0
minimist:
specifier: ^1.2.8
version: 1.2.8
@@ -690,7 +699,7 @@ importers:
version: 2.7.1
svgo:
specifier: ^3.0.0
- version: 3.0.2
+ version: 3.1.0
svgson:
specifier: ^5.2.1
version: 5.3.1
@@ -708,25 +717,25 @@ importers:
dependencies:
'@atomico/rollup-plugin-sizes':
specifier: ^1.1.4
- version: 1.1.4(rollup@3.29.4)
+ version: 1.1.4(rollup@4.9.2)
'@rollup/plugin-replace':
specifier: ^5.0.5
- version: 5.0.5(rollup@3.29.4)
+ version: 5.0.5(rollup@4.9.2)
esbuild:
- specifier: ^0.15.18
- version: 0.15.18
+ specifier: ^0.19.11
+ version: 0.19.11
rollup:
- specifier: ^3.29.4
- version: 3.29.4
+ specifier: ^4.9.2
+ version: 4.9.2
rollup-plugin-esbuild:
- specifier: ^4.10.3
- version: 4.10.3(esbuild@0.15.18)(rollup@3.29.4)
+ specifier: ^6.1.0
+ version: 6.1.0(esbuild@0.19.11)(rollup@4.9.2)
rollup-plugin-license:
specifier: ^3.2.0
- version: 3.2.0(rollup@3.29.4)
+ version: 3.2.0(rollup@4.9.2)
rollup-plugin-visualizer:
- specifier: ^5.9.2
- version: 5.9.2(rollup@3.29.4)
+ specifier: ^5.12.0
+ version: 5.12.0(rollup@4.9.2)
packages:
@@ -735,12 +744,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /@adobe/css-tools@4.2.0:
- resolution: {integrity: sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==}
- dev: true
-
- /@adobe/css-tools@4.3.1:
- resolution: {integrity: sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==}
+ /@adobe/css-tools@4.3.2:
+ resolution: {integrity: sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==}
dev: true
/@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.19.1)(search-insights@2.13.0):
@@ -983,7 +988,7 @@ packages:
ansi-colors: 4.1.1
babel-loader: 8.2.5(@babel/core@7.16.12)(webpack@5.76.1)
babel-plugin-istanbul: 6.1.1
- browserslist: 4.21.10
+ browserslist: 4.22.2
cacache: 15.3.0
circular-dependency-plugin: 5.2.2(webpack@5.76.1)
copy-webpack-plugin: 10.2.1(webpack@5.76.1)
@@ -1096,14 +1101,14 @@ packages:
- chokidar
dev: true
- /@angular-eslint/builder@13.0.1(eslint@8.46.0)(typescript@4.6.4):
+ /@angular-eslint/builder@13.0.1(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-z43jUpA4xm767ze/yWwvoy5PdvSe57DAvXHlHywv0iYxXl1OhytPIA0CdOA3ZWkbSWWVmWmFzELeYfGnE3+igg==}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
dependencies:
'@nrwl/devkit': 13.1.3
- eslint: 8.46.0
+ eslint: 8.56.0
typescript: 4.6.4
transitivePeerDependencies:
- '@swc-node/register'
@@ -1115,43 +1120,43 @@ packages:
resolution: {integrity: sha512-Eih9Kh0hxHO4+3in9mgjksQecym0p+3p+287y3LLihIc7gCkAO4xZeHGVGiC8qUX72PNUXkDlyskI9oHjK9Axw==}
dev: true
- /@angular-eslint/eslint-plugin-template@13.0.1(eslint@8.46.0)(typescript@4.6.4):
+ /@angular-eslint/eslint-plugin-template@13.0.1(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-8FclNMjEzb87CtE3TdsXXWk1SRCp/tSSHI0cYVv6YpU7f/9Mnej+ZY3MdvqI/amD8zJueTMdnjNRP/jiwX2XhQ==}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
dependencies:
'@angular-eslint/bundled-angular-compiler': 13.0.1
- '@typescript-eslint/experimental-utils': 5.3.0(eslint@8.46.0)(typescript@4.6.4)
+ '@typescript-eslint/experimental-utils': 5.3.0(eslint@8.56.0)(typescript@4.6.4)
aria-query: 4.2.2
axobject-query: 2.2.0
- eslint: 8.46.0
+ eslint: 8.56.0
typescript: 4.6.4
transitivePeerDependencies:
- supports-color
dev: true
- /@angular-eslint/eslint-plugin@13.0.1(eslint@8.46.0)(typescript@4.6.4):
+ /@angular-eslint/eslint-plugin@13.0.1(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-WxqgMLTfE45dqjzg/Nq0dOEDwzpdB+zYOWrA41MT3jt0UbukFEx8+FMrAgBLIeDaHzwWomiAEV5Tm5mQAKA4VA==}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
dependencies:
- '@angular-eslint/utils': 13.0.1(eslint@8.46.0)(typescript@4.6.4)
- '@typescript-eslint/experimental-utils': 5.3.0(eslint@8.46.0)(typescript@4.6.4)
- eslint: 8.46.0
+ '@angular-eslint/utils': 13.0.1(eslint@8.56.0)(typescript@4.6.4)
+ '@typescript-eslint/experimental-utils': 5.3.0(eslint@8.56.0)(typescript@4.6.4)
+ eslint: 8.56.0
typescript: 4.6.4
transitivePeerDependencies:
- supports-color
dev: true
- /@angular-eslint/schematics@13.0.1(@angular/cli@13.3.11)(eslint@8.46.0)(typescript@4.6.4):
+ /@angular-eslint/schematics@13.0.1(@angular/cli@13.3.11)(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-LiPUVff6fexQNa6Ttgb+yhIoQc9oXc1qb34kmntvQDw59xBeEyrUojG2P2I5VS+1ZoVUWNY86cqEaxkFJVkY7w==}
peerDependencies:
'@angular/cli': '>= 13.0.0 < 14.0.0'
dependencies:
- '@angular-eslint/eslint-plugin': 13.0.1(eslint@8.46.0)(typescript@4.6.4)
- '@angular-eslint/eslint-plugin-template': 13.0.1(eslint@8.46.0)(typescript@4.6.4)
+ '@angular-eslint/eslint-plugin': 13.0.1(eslint@8.56.0)(typescript@4.6.4)
+ '@angular-eslint/eslint-plugin-template': 13.0.1(eslint@8.56.0)(typescript@4.6.4)
'@angular/cli': 13.3.11
ignore: 5.1.9
strip-json-comments: 3.1.1
@@ -1162,27 +1167,27 @@ packages:
- typescript
dev: true
- /@angular-eslint/template-parser@13.0.1(eslint@8.46.0)(typescript@4.6.4):
+ /@angular-eslint/template-parser@13.0.1(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-GEJzVLS4Sb4UdurqaPD1/ucGhagGAQCp17CIgjpcXRwzxBZ9OLqbO/rx8diRbADp+1rceVq4BhADsg3VdsOsuw==}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
dependencies:
'@angular-eslint/bundled-angular-compiler': 13.0.1
- eslint: 8.46.0
+ eslint: 8.56.0
eslint-scope: 5.1.1
typescript: 4.6.4
dev: true
- /@angular-eslint/utils@13.0.1(eslint@8.46.0)(typescript@4.6.4):
+ /@angular-eslint/utils@13.0.1(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-makSpu8kr5yHIz0c6WaWwix+tk5DN5Uix9vQulVisZWchTmSqEovJih/UC+4XspM9kQbjcbWHohYKiBbBEQpbA==}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
dependencies:
'@angular-eslint/bundled-angular-compiler': 13.0.1
- '@typescript-eslint/experimental-utils': 5.3.0(eslint@8.46.0)(typescript@4.6.4)
- eslint: 8.46.0
+ '@typescript-eslint/experimental-utils': 5.3.0(eslint@8.56.0)(typescript@4.6.4)
+ eslint: 8.56.0
typescript: 4.6.4
transitivePeerDependencies:
- supports-color
@@ -1240,7 +1245,7 @@ packages:
typescript: '>=4.4.2 <4.7'
dependencies:
'@angular/compiler': 13.3.12
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
chokidar: 3.5.3
convert-source-map: 1.9.0
dependency-graph: 0.11.0
@@ -1309,43 +1314,15 @@ packages:
/@assemblyscript/loader@0.10.1:
resolution: {integrity: sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==}
- /@atomico/rollup-plugin-sizes@1.1.4(rollup@3.27.0):
- resolution: {integrity: sha512-ilxLw9hT+kWXIx8mYoAFLA2eIVfLrsnabPCaGo5Mkrj8qxhEkZvFddcnH2HTp/hDKFEIJRpZVpXecsPp3FOdRw==}
- peerDependencies:
- rollup: 1.x || 2.x
- dependencies:
- brotli-size: 4.0.0
- gzip-size: 5.1.1
- rollup: 3.27.0
- simple-string-table: 1.0.0
- dev: true
-
- /@atomico/rollup-plugin-sizes@1.1.4(rollup@3.29.4):
+ /@atomico/rollup-plugin-sizes@1.1.4(rollup@4.9.2):
resolution: {integrity: sha512-ilxLw9hT+kWXIx8mYoAFLA2eIVfLrsnabPCaGo5Mkrj8qxhEkZvFddcnH2HTp/hDKFEIJRpZVpXecsPp3FOdRw==}
peerDependencies:
rollup: 1.x || 2.x
dependencies:
brotli-size: 4.0.0
gzip-size: 5.1.1
- rollup: 3.29.4
+ rollup: 4.9.2
simple-string-table: 1.0.0
- dev: false
-
- /@babel/code-frame@7.22.13:
- resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': 7.22.13
- chalk: 2.4.2
- dev: true
-
- /@babel/code-frame@7.23.4:
- resolution: {integrity: sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': 7.23.4
- chalk: 2.4.2
- dev: true
/@babel/code-frame@7.23.5:
resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
@@ -1355,13 +1332,8 @@ packages:
chalk: 2.4.2
dev: true
- /@babel/compat-data@7.22.9:
- resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
- engines: {node: '>=6.9.0'}
- dev: true
-
- /@babel/compat-data@7.23.3:
- resolution: {integrity: sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==}
+ /@babel/compat-data@7.23.5:
+ resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
engines: {node: '>=6.9.0'}
dev: true
@@ -1370,14 +1342,14 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.4
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/generator': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-module-transforms': 7.23.3(@babel/core@7.16.12)
- '@babel/helpers': 7.23.4
- '@babel/parser': 7.23.4
+ '@babel/helpers': 7.23.7
+ '@babel/parser': 7.23.6
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.4
- '@babel/types': 7.23.4
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -1388,43 +1360,20 @@ packages:
- supports-color
dev: true
- /@babel/core@7.22.9:
- resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
- '@babel/helpers': 7.22.6
- '@babel/parser': 7.22.7
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.8
- '@babel/types': 7.22.5
- convert-source-map: 1.9.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/core@7.23.3:
- resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==}
+ /@babel/core@7.23.7:
+ resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.23.4
- '@babel/generator': 7.23.4
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
- '@babel/helpers': 7.23.4
- '@babel/parser': 7.23.4
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/helpers': 7.23.7
+ '@babel/parser': 7.23.6
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.4
- '@babel/types': 7.23.4
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -1438,26 +1387,16 @@ packages:
resolution: {integrity: sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
jsesc: 2.5.2
source-map: 0.5.7
dev: true
- /@babel/generator@7.22.9:
- resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==}
+ /@babel/generator@7.23.6:
+ resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.20
- jsesc: 2.5.2
- dev: true
-
- /@babel/generator@7.23.4:
- resolution: {integrity: sha512-esuS49Cga3HcThFNebGhlgsrVLkvhqvYDTzgjfFFlHJcIfLe5jFmRRfCQ1KuBfc4Jrtn3ndLgKWAKjBE+IraYQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.20
jsesc: 2.5.2
@@ -1467,53 +1406,36 @@ packages:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
/@babel/helper-annotate-as-pure@7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.5:
resolution: {integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
- dev: true
-
- /@babel/helper-compilation-targets@7.22.15:
- resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/helper-validator-option': 7.22.15
- browserslist: 4.22.1
- lru-cache: 5.1.1
- semver: 6.3.1
+ '@babel/types': 7.23.6
dev: true
- /@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==}
+ /@babel/helper-compilation-targets@7.23.6:
+ resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-validator-option': 7.22.15
- browserslist: 4.21.10
+ '@babel/compat-data': 7.23.5
+ '@babel/helper-validator-option': 7.23.5
+ browserslist: 4.22.2
lru-cache: 5.1.1
semver: 6.3.1
dev: true
- /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.16.12):
- resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==}
+ /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.16.12):
+ resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1525,57 +1447,15 @@ packages:
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.16.12)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
- dev: true
-
- /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
- dev: true
-
- /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.23.3):
- resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.3)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.16.12)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
dev: true
- /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.3):
+ /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.7):
resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1584,13 +1464,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
@@ -1611,22 +1491,7 @@ packages:
semver: 6.3.1
dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- regexpu-core: 5.3.2
- semver: 6.3.1
- dev: true
-
- /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.23.3):
+ /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.23.7):
resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1635,7 +1500,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
@@ -1650,7 +1515,7 @@ packages:
optional: true
dependencies:
'@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -1660,25 +1525,7 @@ packages:
- supports-color
dev: true
- /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.9):
- resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.23.3):
+ /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.23.7):
resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -1686,8 +1533,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/core': 7.23.7
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -1701,84 +1548,40 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-environment-visitor@7.22.5:
- resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
- engines: {node: '>=6.9.0'}
- dev: true
-
- /@babel/helper-function-name@7.22.5:
- resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.23.4
- dev: true
-
/@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.23.4
+ '@babel/types': 7.23.6
dev: true
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
- dev: true
-
- /@babel/helper-member-expression-to-functions@7.22.5:
- resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
/@babel/helper-member-expression-to-functions@7.23.0:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
/@babel/helper-module-imports@7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
/@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.23.4
- dev: true
-
- /@babel/helper-module-imports@7.22.5:
- resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.4
- dev: true
-
- /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.15
+ '@babel/types': 7.23.6
dev: true
/@babel/helper-module-transforms@7.23.3(@babel/core@7.16.12):
@@ -1798,24 +1601,7 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
dev: true
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
- dev: true
-
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.3):
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1824,7 +1610,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -1836,7 +1622,7 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
/@babel/helper-plugin-utils@7.22.5:
@@ -1859,22 +1645,7 @@ packages:
'@babel/helper-wrap-function': 7.22.9
dev: true
- /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-wrap-function': 7.22.9
- dev: true
-
- /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.23.3):
+ /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.23.7):
resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1883,30 +1654,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.9
dev: true
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.3):
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.16.12):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- dev: true
-
- /@babel/helper-replace-supers@7.22.9(@babel/core@7.16.12):
- resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
- engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
peerDependenciesMeta:
@@ -1915,27 +1671,12 @@ packages:
dependencies:
'@babel/core': 7.16.12
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
- dev: true
-
- /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
dev: true
- /@babel/helper-replace-supers@7.22.9(@babel/core@7.23.3):
- resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7):
+ resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1943,9 +1684,9 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
dev: true
@@ -1953,89 +1694,56 @@ packages:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
- /@babel/helper-string-parser@7.22.5:
- resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
- engines: {node: '>=6.9.0'}
-
/@babel/helper-string-parser@7.23.4:
resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier@7.22.15:
- resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==}
- 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'}
- /@babel/helper-validator-option@7.22.15:
- resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
+ /@babel/helper-validator-option@7.23.5:
+ resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-validator-option@7.22.5:
- resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
- engines: {node: '>=6.9.0'}
- dev: true
-
- /@babel/helper-wrap-function@7.22.9:
- resolution: {integrity: sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==}
+ /@babel/helper-wrap-function@7.22.9:
+ resolution: {integrity: sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
'@babel/template': 7.22.15
- '@babel/types': 7.23.4
- dev: true
-
- /@babel/helpers@7.22.6:
- resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.4
- '@babel/types': 7.23.4
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.23.6
dev: true
- /@babel/helpers@7.23.4:
- resolution: {integrity: sha512-HfcMizYz10cr3h29VqyfGL6ZWIjTwWfvYBMsBVGwpcbhNGe3wQ1ZXZRPzZoAHhd9OqHadHqjQ89iVKINXnbzuw==}
+ /@babel/helpers@7.23.7:
+ resolution: {integrity: sha512-6AMnjCoC8wjqBzDHkuqpa7jAKwvMo4dC+lr/TFBz+ucfulO1XMpDnwWPGBNwClOKZ8h6xn5N81W/R5OrcKtCbQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.4
- '@babel/types': 7.23.4
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/highlight@7.22.13:
- resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.22.15
- chalk: 2.4.2
- js-tokens: 4.0.0
- dev: true
-
/@babel/highlight@7.23.4:
resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
engines: {node: '>=6.9.0'}
@@ -2045,19 +1753,12 @@ packages:
js-tokens: 4.0.0
dev: true
- /@babel/parser@7.22.7:
- resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.22.5
-
- /@babel/parser@7.23.4:
- resolution: {integrity: sha512-vf3Xna6UEprW+7t6EtOmFpHNAuxw3xqPZghy+brsnusscJRW5BMUzzHZc5ICjULee81WeUV2jjakG09MDglJXQ==}
+ /@babel/parser@7.23.6:
+ resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.16.12):
resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
@@ -2072,7 +1773,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2081,7 +1782,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2100,7 +1801,7 @@ packages:
'@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.16.12)
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2109,15 +1810,16 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9)
+ '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.23.7)
dev: true
/@babel/plugin-proposal-async-generator-functions@7.16.8(@babel/core@7.16.12):
resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2133,6 +1835,7 @@ packages:
/@babel/plugin-proposal-async-generator-functions@7.20.7:
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2141,42 +1844,31 @@ packages:
dependencies:
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
+ '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.23.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
dev: true
- /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.3):
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.16.12):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.16.12
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.23.3)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3)
- dev: true
-
- /@babel/plugin-proposal-class-properties@7.18.6:
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.16.12)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.16.12)
dev: true
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.16.12):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2184,27 +1876,29 @@ packages:
optional: true
dependencies:
'@babel/core': 7.16.12
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.16.12)
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.16.12)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.3):
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.7):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.23.3)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.16.12):
resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.
peerDependencies:
'@babel/core': ^7.12.0
peerDependenciesMeta:
@@ -2212,7 +1906,7 @@ packages:
optional: true
dependencies:
'@babel/core': 7.16.12
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.16.12)
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.16.12)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.16.12)
dev: true
@@ -2220,6 +1914,7 @@ packages:
/@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.16.12):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2231,7 +1926,7 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.16.12)
dev: true
- /@babel/plugin-proposal-export-default-from@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-proposal-export-default-from@7.22.5:
resolution: {integrity: sha512-UCe1X/hplyv6A5g2WnQ90tnHRvYL29dabCWww92lO7VdfMVTVReBTRrhiMrKQejHD9oVkdnRdwYuzUZkBVQisg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2240,14 +1935,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.3)
+ '@babel/plugin-syntax-export-default-from': 7.22.5
dev: true
/@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.16.12):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2262,6 +1957,7 @@ packages:
/@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.16.12):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2276,6 +1972,7 @@ packages:
/@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.16.12):
resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2287,50 +1984,54 @@ packages:
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.16.12)
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6:
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.16.12):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
+ '@babel/core': 7.16.12
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.16.12)
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.16.12):
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.7):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.16.12
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.16.12)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.3):
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
+ /@babel/plugin-proposal-numeric-separator@7.18.6:
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
dev: true
/@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.16.12):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2345,56 +2046,42 @@ packages:
/@babel/plugin-proposal-object-rest-spread@7.20.7:
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/compat-data': 7.23.5
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.7)
dev: true
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.16.12):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/compat-data': 7.23.3
+ '@babel/compat-data': 7.23.5
'@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.16.12)
'@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.16.12)
dev: true
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.3):
- resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/core': 7.23.3
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.3)
- dev: true
-
/@babel/plugin-proposal-optional-catch-binding@7.18.6:
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2402,12 +2089,13 @@ packages:
optional: true
dependencies:
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
dev: true
/@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.16.12):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2419,37 +2107,10 @@ packages:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.16.12)
dev: true
- /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.3):
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3)
- dev: true
-
- /@babel/plugin-proposal-optional-chaining@7.21.0:
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
- dev: true
-
/@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.16.12):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2462,24 +2123,26 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.16.12)
dev: true
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.3):
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.7):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
dev: true
/@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.16.12):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2487,11 +2150,11 @@ packages:
optional: true
dependencies:
'@babel/core': 7.16.12
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.16.12)
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.16.12)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2500,12 +2163,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
dev: true
/@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.16.12):
resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2514,7 +2178,7 @@ packages:
dependencies:
'@babel/core': 7.16.12
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.16.12)
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.16.12)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.16.12)
dev: true
@@ -2522,6 +2186,7 @@ packages:
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.16.12):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -2533,17 +2198,18 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.7):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2559,19 +2225,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.9):
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.3):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2579,7 +2233,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2595,19 +2249,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.9):
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.3):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2615,7 +2257,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2632,7 +2274,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2641,7 +2283,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2657,19 +2299,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.3):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2677,11 +2307,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-syntax-export-default-from@7.22.5:
resolution: {integrity: sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2690,7 +2320,6 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2706,7 +2335,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2714,11 +2343,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2727,11 +2356,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2740,11 +2369,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2753,11 +2382,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2765,7 +2394,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2781,7 +2410,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2789,37 +2418,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2828,7 +2431,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2844,7 +2447,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2852,7 +2455,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2868,7 +2471,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2876,19 +2479,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2904,7 +2495,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2912,7 +2503,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2928,19 +2519,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.3):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2948,7 +2527,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2964,19 +2543,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.3):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2984,7 +2551,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3000,19 +2567,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.3):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3020,7 +2575,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3037,7 +2592,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3046,7 +2601,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3063,7 +2618,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3072,37 +2627,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3111,11 +2640,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.7):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3124,8 +2653,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3142,20 +2671,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3164,11 +2680,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.22.9):
+ /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.23.7):
resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3177,11 +2693,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-environment-visitor': 7.22.5
+ '@babel/core': 7.23.7
+ '@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
+ '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.23.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
dev: true
/@babel/plugin-transform-async-to-generator@7.16.8(@babel/core@7.16.12):
@@ -3199,7 +2715,7 @@ packages:
'@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.16.12)
dev: true
- /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.16.12):
resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3208,13 +2724,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.16.12
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.16.12)
dev: true
- /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3223,10 +2739,10 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.23.3)
+ '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.23.7)
dev: true
/@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.16.12):
@@ -3242,20 +2758,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3264,7 +2767,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3281,20 +2784,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3303,11 +2793,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3316,12 +2806,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3330,13 +2820,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-classes@7.22.6:
+ /@babel/plugin-transform-classes@7.22.6(@babel/core@7.16.12):
resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3345,18 +2835,19 @@ packages:
'@babel/core':
optional: true
dependencies:
+ '@babel/core': 7.16.12
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.16.12)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: true
- /@babel/plugin-transform-classes@7.22.6(@babel/core@7.16.12):
+ /@babel/plugin-transform-classes@7.22.6(@babel/core@7.23.7):
resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3365,20 +2856,20 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.16.12
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.16.12)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: true
- /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
+ /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.16.12):
+ resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3386,20 +2877,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/core': 7.16.12
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-split-export-declaration': 7.22.6
- globals: 11.12.0
+ '@babel/template': 7.22.15
dev: true
- /@babel/plugin-transform-classes@7.22.6(@babel/core@7.23.3):
- resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
+ /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.7):
+ resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3407,20 +2891,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.3)
- '@babel/helper-split-export-declaration': 7.22.6
- globals: 11.12.0
+ '@babel/template': 7.22.15
dev: true
- /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.16.12):
- resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.16.12):
+ resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3430,11 +2907,10 @@ packages:
dependencies:
'@babel/core': 7.16.12
'@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.15
dev: true
- /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.23.7):
+ resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3442,61 +2918,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.15
- dev: true
-
- /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.15
- dev: true
-
- /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.16.12):
- resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3514,7 +2936,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3523,8 +2945,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3541,7 +2963,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3550,11 +2972,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3563,9 +2985,9 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
dev: true
/@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.16.12):
@@ -3582,7 +3004,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3591,26 +3013,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3619,12 +3027,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3633,9 +3041,9 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.3)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.7)
dev: true
/@babel/plugin-transform-for-of@7.22.5(@babel/core@7.16.12):
@@ -3651,20 +3059,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3673,7 +3068,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3687,12 +3082,12 @@ packages:
optional: true
dependencies:
'@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3701,28 +3096,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/core': 7.23.7
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3731,9 +3111,9 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
dev: true
/@babel/plugin-transform-literals@7.22.5(@babel/core@7.16.12):
@@ -3749,7 +3129,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3758,24 +3138,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3784,9 +3151,9 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
dev: true
/@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.16.12):
@@ -3802,7 +3169,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3811,20 +3178,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3842,7 +3196,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3851,13 +3205,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.16.12):
- resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.16.12):
+ resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3871,37 +3225,7 @@ packages:
'@babel/helper-simple-access': 7.22.5
dev: true
- /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- dev: true
-
- /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- dev: true
-
- /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3910,8 +3234,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
+ '@babel/core': 7.23.7
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
dev: true
@@ -3932,7 +3256,7 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
dev: true
- /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3941,11 +3265,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.9)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-identifier': 7.22.15
+ '@babel/helper-validator-identifier': 7.22.20
dev: true
/@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.16.12):
@@ -3962,7 +3286,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3971,8 +3295,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3990,7 +3314,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -3999,22 +3323,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.3)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4031,7 +3341,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4040,11 +3350,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4053,12 +3363,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4067,12 +3377,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4081,12 +3391,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.7
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.7)
dev: true
/@babel/plugin-transform-object-super@7.22.5(@babel/core@7.16.12):
@@ -4100,24 +3410,10 @@ packages:
dependencies:
'@babel/core': 7.16.12
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.16.12)
- dev: true
-
- /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.16.12)
dev: true
- /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4126,12 +3422,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.3)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4140,9 +3436,9 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
dev: true
/@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.16.12):
@@ -4160,7 +3456,7 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.16.12)
dev: true
- /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.22.9):
+ /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.23.7):
resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4169,10 +3465,10 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
dev: true
/@babel/plugin-transform-parameters@7.22.5(@babel/core@7.16.12):
@@ -4188,20 +3484,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4210,11 +3493,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4223,12 +3506,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4237,15 +3520,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.16.12):
- resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ /@babel/plugin-transform-private-property-in-object@7.23.4:
+ resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4253,11 +3536,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.16.12
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.16.12):
resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4266,11 +3551,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.16.12
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4279,11 +3564,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-react-display-name@7.22.5:
resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4292,11 +3577,10 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-jsx-development@7.22.5:
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4305,62 +3589,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.23.3)
- dev: true
-
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9)
- dev: true
-
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.23.3)
- dev: true
-
- /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.23.7
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4369,37 +3602,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4408,45 +3615,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.5
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9)
- '@babel/types': 7.22.5
dev: true
- /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.3)
- '@babel/types': 7.22.5
- dev: true
-
- /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.3):
+ /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.7):
resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4455,12 +3628,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@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.23.3(@babel/core@7.23.3)
- '@babel/types': 7.23.4
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
+ '@babel/types': 7.23.6
dev: true
/@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.16.12):
@@ -4477,7 +3650,7 @@ packages:
regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4486,7 +3659,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.1
dev: true
@@ -4504,7 +3677,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4513,7 +3686,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4548,29 +3721,9 @@ packages:
dependencies:
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.9)
- babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.9)
- babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.9)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-runtime@7.22.9(@babel/core@7.23.3):
- resolution: {integrity: sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.3)
- babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.23.3)
- babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.3)
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.7)
+ babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.23.7)
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -4589,7 +3742,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4598,20 +3751,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4629,21 +3769,7 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- dev: true
-
- /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4652,7 +3778,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
@@ -4670,7 +3796,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4679,20 +3805,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4709,20 +3822,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4731,7 +3831,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4748,7 +3848,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4757,58 +3857,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-typescript@7.22.9:
- resolution: {integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9)
- dev: true
-
- /@babel/plugin-transform-typescript@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9)
- dev: true
-
- /@babel/plugin-transform-typescript@7.22.9(@babel/core@7.23.3):
- resolution: {integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.23.3)
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.3):
+ /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.7):
resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4817,11 +3870,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.3)
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7)
dev: true
/@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.16.12):
@@ -4837,7 +3890,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4846,11 +3899,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4859,8 +3912,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4878,21 +3931,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4901,12 +3940,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.3)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4915,8 +3954,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4929,14 +3968,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/compat-data': 7.22.9
+ '@babel/compat-data': 7.23.5
'@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
+ '@babel/helper-validator-option': 7.23.5
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.16.12)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.16.12)
- '@babel/plugin-proposal-async-generator-functions': 7.16.8(@babel/core@7.16.12)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.16.12)
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.16.12)
'@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.16.12)
'@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.16.12)
@@ -4966,7 +4005,7 @@ packages:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.16.12)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.16.12)
'@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.16.12)
- '@babel/plugin-transform-async-to-generator': 7.16.8(@babel/core@7.16.12)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.16.12)
'@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.16.12)
'@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.16.12)
'@babel/plugin-transform-classes': 7.22.6(@babel/core@7.16.12)
@@ -4980,7 +4019,7 @@ packages:
'@babel/plugin-transform-literals': 7.22.5(@babel/core@7.16.12)
'@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.16.12)
'@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.16.12)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.16.12)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.16.12)
'@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.16.12)
'@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.16.12)
'@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.16.12)
@@ -4998,7 +4037,7 @@ packages:
'@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.16.12)
'@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.16.12)
'@babel/preset-modules': 0.1.6(@babel/core@7.16.12)
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.16.12)
babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.16.12)
babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.16.12)
@@ -5008,7 +4047,7 @@ packages:
- supports-color
dev: true
- /@babel/preset-env@7.22.9(@babel/core@7.22.9):
+ /@babel/preset-env@7.22.9(@babel/core@7.23.7):
resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5017,92 +4056,92 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.7
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.22.9)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.9)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/preset-modules': 0.1.6(@babel/core@7.22.9)
- '@babel/types': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.9)
- babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.9)
- babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.9)
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.23.7)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/preset-modules': 0.1.6(@babel/core@7.23.7)
+ '@babel/types': 7.23.6
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.7)
+ babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.23.7)
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.7)
core-js-compat: 3.32.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-flow@7.22.5(@babel/core@7.23.3):
+ /@babel/preset-flow@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-ta2qZ+LSiGCrP5pgcGt8xMnnkXQrq8Sa4Ulhy06BOlF5QbLw9q5hIx7bn5MrsvyTGAfh6kTOo07Q+Pfld/8Y5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5111,79 +4150,45 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.3)
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.7)
dev: true
/@babel/preset-modules@0.1.6(@babel/core@7.16.12):
- resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.16.12)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.16.12)
- '@babel/types': 7.23.4
- esutils: 2.0.3
- dev: true
-
- /@babel/preset-modules@0.1.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/types': 7.23.4
- esutils: 2.0.3
- dev: true
-
- /@babel/preset-typescript@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==}
- engines: {node: '>=6.9.0'}
+ resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.16.12
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.22.9)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.16.12)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.16.12)
+ '@babel/types': 7.23.6
+ esutils: 2.0.3
dev: true
- /@babel/preset-typescript@7.22.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/preset-modules@0.1.6(@babel/core@7.23.7):
+ resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.23.3)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/types': 7.23.6
+ esutils: 2.0.3
dev: true
- /@babel/preset-typescript@7.23.3(@babel/core@7.23.3):
+ /@babel/preset-typescript@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5192,15 +4197,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.3)
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7)
dev: true
- /@babel/register@7.22.5(@babel/core@7.23.3):
+ /@babel/register@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-vV6pm/4CijSQ8Y47RH5SopXzursN35RQINfGJkmOlcpAtGuf94miFvIPhCKGQN7WGIcsgG1BHEX2KVdTYwTwUQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5209,7 +4214,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -5236,13 +4241,6 @@ packages:
regenerator-runtime: 0.13.11
dev: true
- /@babel/runtime@7.22.6:
- resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: 0.13.11
- dev: true
-
/@babel/runtime@7.23.4:
resolution: {integrity: sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==}
engines: {node: '>=6.9.0'}
@@ -5254,8 +4252,8 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/parser': 7.23.4
- '@babel/types': 7.23.4
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
dev: true
/@babel/template@7.22.15:
@@ -5263,65 +4261,30 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/parser': 7.23.4
- '@babel/types': 7.23.4
- dev: true
-
- /@babel/template@7.22.5:
- resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/parser': 7.23.4
- '@babel/types': 7.23.4
- dev: true
-
- /@babel/traverse@7.22.8:
- resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.4
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.4
- '@babel/types': 7.23.4
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
dev: true
- /@babel/traverse@7.23.4:
- resolution: {integrity: sha512-IYM8wSUwunWTB6tFC2dkKZhxbIjHoWemdK+3f8/wq8aKhbUscxD5MX72ubd90fxvFknaLPeGw5ycU84V1obHJg==}
+ /@babel/traverse@7.23.7:
+ resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.4
+ '@babel/generator': 7.23.6
'@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.23.4
- '@babel/types': 7.23.4
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/types@7.22.5:
- resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.22.5
- '@babel/helper-validator-identifier': 7.22.15
- to-fast-properties: 2.0.0
-
- /@babel/types@7.23.4:
- resolution: {integrity: sha512-7uIFwVYpoplT5jp/kVv6EF93VaJ8H+Yn5IczYiaAi98ajzjfoZfslet/e0sLh+wVBjb2qqIut1b0S26VSafsSQ==}
+ /@babel/types@7.23.6:
+ resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.23.4
@@ -5334,21 +4297,7 @@ packages:
mime: 3.0.0
dev: true
- /@codemirror/autocomplete@6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.0.4):
- resolution: {integrity: sha512-yma56tqD7khIZK4gy4X5lX3/k5ArMiCGat7HEWRF/8L2kqOjVdp2qKZqpcJjwTIjSj6fqKAHqi7IjtH3QFE+Bw==}
- peerDependencies:
- '@codemirror/language': ^6.0.0
- '@codemirror/state': ^6.0.0
- '@codemirror/view': ^6.0.0
- '@lezer/common': ^1.0.0
- dependencies:
- '@codemirror/language': 6.9.0
- '@codemirror/state': 6.2.1
- '@codemirror/view': 6.19.0
- '@lezer/common': 1.0.4
- dev: false
-
- /@codemirror/autocomplete@6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.1.2):
+ /@codemirror/autocomplete@6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.2.0):
resolution: {integrity: sha512-yma56tqD7khIZK4gy4X5lX3/k5ArMiCGat7HEWRF/8L2kqOjVdp2qKZqpcJjwTIjSj6fqKAHqi7IjtH3QFE+Bw==}
peerDependencies:
'@codemirror/language': ^6.0.0
@@ -5359,7 +4308,7 @@ packages:
'@codemirror/language': 6.9.0
'@codemirror/state': 6.2.1
'@codemirror/view': 6.19.0
- '@lezer/common': 1.1.2
+ '@lezer/common': 1.2.0
dev: false
/@codemirror/commands@6.2.5:
@@ -5368,16 +4317,16 @@ packages:
'@codemirror/language': 6.9.0
'@codemirror/state': 6.2.1
'@codemirror/view': 6.19.0
- '@lezer/common': 1.0.4
+ '@lezer/common': 1.2.0
dev: false
/@codemirror/lang-css@6.2.1(@codemirror/view@6.19.0):
resolution: {integrity: sha512-/UNWDNV5Viwi/1lpr/dIXJNWiwDxpw13I4pTUAsNxZdg6E0mI2kTQb0P2iHczg1Tu+H4EBgJR+hYhKiHKko7qg==}
dependencies:
- '@codemirror/autocomplete': 6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.0.4)
+ '@codemirror/autocomplete': 6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.2.0)
'@codemirror/language': 6.9.0
'@codemirror/state': 6.2.1
- '@lezer/common': 1.0.4
+ '@lezer/common': 1.2.0
'@lezer/css': 1.1.3
transitivePeerDependencies:
- '@codemirror/view'
@@ -5386,13 +4335,13 @@ packages:
/@codemirror/lang-html@6.4.6:
resolution: {integrity: sha512-E4C8CVupBksXvgLSme/zv31x91g06eZHSph7NczVxZW+/K+3XgJGWNT//2WLzaKSBoxpAjaOi5ZnPU1SHhjh3A==}
dependencies:
- '@codemirror/autocomplete': 6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.0.4)
+ '@codemirror/autocomplete': 6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.2.0)
'@codemirror/lang-css': 6.2.1(@codemirror/view@6.19.0)
'@codemirror/lang-javascript': 6.2.1
'@codemirror/language': 6.9.0
'@codemirror/state': 6.2.1
'@codemirror/view': 6.19.0
- '@lezer/common': 1.0.4
+ '@lezer/common': 1.2.0
'@lezer/css': 1.1.3
'@lezer/html': 1.3.6
dev: false
@@ -5400,12 +4349,12 @@ packages:
/@codemirror/lang-javascript@6.2.1:
resolution: {integrity: sha512-jlFOXTejVyiQCW3EQwvKH0m99bUYIw40oPmFjSX2VS78yzfe0HELZ+NEo9Yfo1MkGRpGlj3Gnu4rdxV1EnAs5A==}
dependencies:
- '@codemirror/autocomplete': 6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.0.4)
+ '@codemirror/autocomplete': 6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.2.0)
'@codemirror/language': 6.9.0
'@codemirror/lint': 6.4.2
'@codemirror/state': 6.2.1
'@codemirror/view': 6.19.0
- '@lezer/common': 1.0.4
+ '@lezer/common': 1.2.0
'@lezer/javascript': 1.4.7
dev: false
@@ -5414,7 +4363,7 @@ packages:
dependencies:
'@codemirror/state': 6.2.1
'@codemirror/view': 6.19.0
- '@lezer/common': 1.0.4
+ '@lezer/common': 1.2.0
'@lezer/highlight': 1.1.6
'@lezer/lr': 1.3.10
style-mod: 4.1.0
@@ -5469,108 +4418,108 @@ packages:
'@jridgewell/trace-mapping': 0.3.9
dev: true
- /@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.27):
+ /@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.32):
resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
'@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13)
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
- /@csstools/postcss-color-function@1.1.1(postcss@8.4.27):
+ /@csstools/postcss-color-function@1.1.1(postcss@8.4.32):
resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27)
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.27):
+ /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.32):
resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.27):
+ /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.32):
resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.27):
+ /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.32):
resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27)
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.27):
+ /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.32):
resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
'@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13)
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
- /@csstools/postcss-nested-calc@1.0.0(postcss@8.4.27):
+ /@csstools/postcss-nested-calc@1.0.0(postcss@8.4.32):
resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.27):
+ /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.32):
resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.27):
+ /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.32):
resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27)
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.27):
+ /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.32):
resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.3
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -5584,43 +4533,43 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.27):
+ /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.32):
resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.27):
+ /@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.32):
resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.27):
+ /@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.32):
resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==}
engines: {node: ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-unset-value@1.0.2(postcss@8.4.27):
+ /@csstools/postcss-unset-value@1.0.2(postcss@8.4.32):
resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
dev: true
/@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.13):
@@ -5682,17 +4631,16 @@ packages:
- '@algolia/client-search'
dev: true
- /@esbuild/android-arm64@0.18.20:
- resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
+ /@esbuild/aix-ppc64@0.19.11:
+ resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==}
engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
+ cpu: [ppc64]
+ os: [aix]
requiresBuild: true
- dev: true
optional: true
- /@esbuild/android-arm64@0.19.6:
- resolution: {integrity: sha512-KQ/hbe9SJvIJ4sR+2PcZ41IBV+LPJyYp6V1K1P1xcMRup9iYsBoQn4MzE3mhMLOld27Au2eDcLlIREeKGUXpHQ==}
+ /@esbuild/android-arm64@0.18.20:
+ resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
@@ -5700,13 +4648,12 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm64@0.19.9:
- resolution: {integrity: sha512-q4cR+6ZD0938R19MyEW3jEsMzbb/1rulLXiNAJQADD/XYp7pT+rOS5JGxvpRW8dFDEfjW4wLgC/3FXIw4zYglQ==}
+ /@esbuild/android-arm64@0.19.11:
+ resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
- dev: true
optional: true
/@esbuild/android-arm@0.15.18:
@@ -5715,6 +4662,7 @@ packages:
cpu: [arm]
os: [android]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/android-arm@0.18.20:
@@ -5726,22 +4674,12 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm@0.19.6:
- resolution: {integrity: sha512-muPzBqXJKCbMYoNbb1JpZh/ynl0xS6/+pLjrofcR3Nad82SbsCogYzUE6Aq9QT3cLP0jR/IVK/NHC9b90mSHtg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/android-arm@0.19.9:
- resolution: {integrity: sha512-jkYjjq7SdsWuNI6b5quymW0oC83NN5FdRPuCbs9HZ02mfVdAP8B8eeqLSYU3gb6OJEaY5CQabtTFbqBf26H3GA==}
+ /@esbuild/android-arm@0.19.11:
+ resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
- dev: true
optional: true
/@esbuild/android-x64@0.18.20:
@@ -5753,22 +4691,12 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.19.6:
- resolution: {integrity: sha512-VVJVZQ7p5BBOKoNxd0Ly3xUM78Y4DyOoFKdkdAe2m11jbh0LEU4bPles4e/72EMl4tapko8o915UalN/5zhspg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/android-x64@0.19.9:
- resolution: {integrity: sha512-KOqoPntWAH6ZxDwx1D6mRntIgZh9KodzgNOy5Ebt9ghzffOk9X2c1sPwtM9P+0eXbefnDhqYfkh5PLP5ULtWFA==}
+ /@esbuild/android-x64@0.19.11:
+ resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
- dev: true
optional: true
/@esbuild/darwin-arm64@0.18.20:
@@ -5780,22 +4708,12 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64@0.19.6:
- resolution: {integrity: sha512-91LoRp/uZAKx6ESNspL3I46ypwzdqyDLXZH7x2QYCLgtnaU08+AXEbabY2yExIz03/am0DivsTtbdxzGejfXpA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/darwin-arm64@0.19.9:
- resolution: {integrity: sha512-KBJ9S0AFyLVx2E5D8W0vExqRW01WqRtczUZ8NRu+Pi+87opZn5tL4Y0xT0mA4FtHctd0ZgwNoN639fUUGlNIWw==}
+ /@esbuild/darwin-arm64@0.19.11:
+ resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
- dev: true
optional: true
/@esbuild/darwin-x64@0.18.20:
@@ -5807,22 +4725,12 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-x64@0.19.6:
- resolution: {integrity: sha512-QCGHw770ubjBU1J3ZkFJh671MFajGTYMZumPs9E/rqU52md6lIil97BR0CbPq6U+vTh3xnTNDHKRdR8ggHnmxQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/darwin-x64@0.19.9:
- resolution: {integrity: sha512-vE0VotmNTQaTdX0Q9dOHmMTao6ObjyPm58CHZr1UK7qpNleQyxlFlNCaHsHx6Uqv86VgPmR4o2wdNq3dP1qyDQ==}
+ /@esbuild/darwin-x64@0.19.11:
+ resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
- dev: true
optional: true
/@esbuild/freebsd-arm64@0.18.20:
@@ -5834,22 +4742,12 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.19.6:
- resolution: {integrity: sha512-J53d0jGsDcLzWk9d9SPmlyF+wzVxjXpOH7jVW5ae7PvrDst4kiAz6sX+E8btz0GB6oH12zC+aHRD945jdjF2Vg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/freebsd-arm64@0.19.9:
- resolution: {integrity: sha512-uFQyd/o1IjiEk3rUHSwUKkqZwqdvuD8GevWF065eqgYfexcVkxh+IJgwTaGZVu59XczZGcN/YMh9uF1fWD8j1g==}
+ /@esbuild/freebsd-arm64@0.19.11:
+ resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
- dev: true
optional: true
/@esbuild/freebsd-x64@0.18.20:
@@ -5861,22 +4759,12 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-x64@0.19.6:
- resolution: {integrity: sha512-hn9qvkjHSIB5Z9JgCCjED6YYVGCNpqB7dEGavBdG6EjBD8S/UcNUIlGcB35NCkMETkdYwfZSvD9VoDJX6VeUVA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/freebsd-x64@0.19.9:
- resolution: {integrity: sha512-WMLgWAtkdTbTu1AWacY7uoj/YtHthgqrqhf1OaEWnZb7PQgpt8eaA/F3LkV0E6K/Lc0cUr/uaVP/49iE4M4asA==}
+ /@esbuild/freebsd-x64@0.19.11:
+ resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
- dev: true
optional: true
/@esbuild/linux-arm64@0.18.20:
@@ -5888,22 +4776,12 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm64@0.19.6:
- resolution: {integrity: sha512-HQCOrk9XlH3KngASLaBfHpcoYEGUt829A9MyxaI8RMkfRA8SakG6YQEITAuwmtzFdEu5GU4eyhKcpv27dFaOBg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-arm64@0.19.9:
- resolution: {integrity: sha512-PiPblfe1BjK7WDAKR1Cr9O7VVPqVNpwFcPWgfn4xu0eMemzRp442hXyzF/fSwgrufI66FpHOEJk0yYdPInsmyQ==}
+ /@esbuild/linux-arm64@0.19.11:
+ resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: true
optional: true
/@esbuild/linux-arm@0.18.20:
@@ -5915,22 +4793,12 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm@0.19.6:
- resolution: {integrity: sha512-G8IR5zFgpXad/Zp7gr7ZyTKyqZuThU6z1JjmRyN1vSF8j0bOlGzUwFSMTbctLAdd7QHpeyu0cRiuKrqK1ZTwvQ==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-arm@0.19.9:
- resolution: {integrity: sha512-C/ChPohUYoyUaqn1h17m/6yt6OB14hbXvT8EgM1ZWaiiTYz7nWZR0SYmMnB5BzQA4GXl3BgBO1l8MYqL/He3qw==}
+ /@esbuild/linux-arm@0.19.11:
+ resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
- dev: true
optional: true
/@esbuild/linux-ia32@0.18.20:
@@ -5942,22 +4810,12 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.19.6:
- resolution: {integrity: sha512-22eOR08zL/OXkmEhxOfshfOGo8P69k8oKHkwkDrUlcB12S/sw/+COM4PhAPT0cAYW/gpqY2uXp3TpjQVJitz7w==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-ia32@0.19.9:
- resolution: {integrity: sha512-f37i/0zE0MjDxijkPSQw1CO/7C27Eojqb+r3BbHVxMLkj8GCa78TrBZzvPyA/FNLUMzP3eyHCVkAopkKVja+6Q==}
+ /@esbuild/linux-ia32@0.19.11:
+ resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
- dev: true
optional: true
/@esbuild/linux-loong64@0.14.54:
@@ -5975,6 +4833,7 @@ packages:
cpu: [loong64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/@esbuild/linux-loong64@0.18.20:
@@ -5986,22 +4845,12 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64@0.19.6:
- resolution: {integrity: sha512-82RvaYAh/SUJyjWA8jDpyZCHQjmEggL//sC7F3VKYcBMumQjUL3C5WDl/tJpEiKtt7XrWmgjaLkrk205zfvwTA==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-loong64@0.19.9:
- resolution: {integrity: sha512-t6mN147pUIf3t6wUt3FeumoOTPfmv9Cc6DQlsVBpB7eCpLOqQDyWBP1ymXn1lDw4fNUSb/gBcKAmvTP49oIkaA==}
+ /@esbuild/linux-loong64@0.19.11:
+ resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
- dev: true
optional: true
/@esbuild/linux-mips64el@0.18.20:
@@ -6013,22 +4862,12 @@ packages:
dev: true
optional: true
- /@esbuild/linux-mips64el@0.19.6:
- resolution: {integrity: sha512-8tvnwyYJpR618vboIv2l8tK2SuK/RqUIGMfMENkeDGo3hsEIrpGldMGYFcWxWeEILe5Fi72zoXLmhZ7PR23oQA==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-mips64el@0.19.9:
- resolution: {integrity: sha512-jg9fujJTNTQBuDXdmAg1eeJUL4Jds7BklOTkkH80ZgQIoCTdQrDaHYgbFZyeTq8zbY+axgptncko3v9p5hLZtw==}
+ /@esbuild/linux-mips64el@0.19.11:
+ resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
- dev: true
optional: true
/@esbuild/linux-ppc64@0.18.20:
@@ -6040,22 +4879,12 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.19.6:
- resolution: {integrity: sha512-Qt+D7xiPajxVNk5tQiEJwhmarNnLPdjXAoA5uWMpbfStZB0+YU6a3CtbWYSy+sgAsnyx4IGZjWsTzBzrvg/fMA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-ppc64@0.19.9:
- resolution: {integrity: sha512-tkV0xUX0pUUgY4ha7z5BbDS85uI7ABw3V1d0RNTii7E9lbmV8Z37Pup2tsLV46SQWzjOeyDi1Q7Wx2+QM8WaCQ==}
+ /@esbuild/linux-ppc64@0.19.11:
+ resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
- dev: true
optional: true
/@esbuild/linux-riscv64@0.18.20:
@@ -6067,22 +4896,12 @@ packages:
dev: true
optional: true
- /@esbuild/linux-riscv64@0.19.6:
- resolution: {integrity: sha512-lxRdk0iJ9CWYDH1Wpnnnc640ajF4RmQ+w6oHFZmAIYu577meE9Ka/DCtpOrwr9McMY11ocbp4jirgGgCi7Ls/g==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-riscv64@0.19.9:
- resolution: {integrity: sha512-DfLp8dj91cufgPZDXr9p3FoR++m3ZJ6uIXsXrIvJdOjXVREtXuQCjfMfvmc3LScAVmLjcfloyVtpn43D56JFHg==}
+ /@esbuild/linux-riscv64@0.19.11:
+ resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
- dev: true
optional: true
/@esbuild/linux-s390x@0.18.20:
@@ -6094,22 +4913,12 @@ packages:
dev: true
optional: true
- /@esbuild/linux-s390x@0.19.6:
- resolution: {integrity: sha512-MopyYV39vnfuykHanRWHGRcRC3AwU7b0QY4TI8ISLfAGfK+tMkXyFuyT1epw/lM0pflQlS53JoD22yN83DHZgA==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-s390x@0.19.9:
- resolution: {integrity: sha512-zHbglfEdC88KMgCWpOl/zc6dDYJvWGLiUtmPRsr1OgCViu3z5GncvNVdf+6/56O2Ca8jUU+t1BW261V6kp8qdw==}
+ /@esbuild/linux-s390x@0.19.11:
+ resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
- dev: true
optional: true
/@esbuild/linux-x64@0.18.20:
@@ -6121,22 +4930,12 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64@0.19.6:
- resolution: {integrity: sha512-UWcieaBzsN8WYbzFF5Jq7QULETPcQvlX7KL4xWGIB54OknXJjBO37sPqk7N82WU13JGWvmDzFBi1weVBajPovg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-x64@0.19.9:
- resolution: {integrity: sha512-JUjpystGFFmNrEHQnIVG8hKwvA2DN5o7RqiO1CVX8EN/F/gkCjkUMgVn6hzScpwnJtl2mPR6I9XV1oW8k9O+0A==}
+ /@esbuild/linux-x64@0.19.11:
+ resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: true
optional: true
/@esbuild/netbsd-x64@0.18.20:
@@ -6148,22 +4947,12 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.19.6:
- resolution: {integrity: sha512-EpWiLX0fzvZn1wxtLxZrEW+oQED9Pwpnh+w4Ffv8ZLuMhUoqR9q9rL4+qHW8F4Mg5oQEKxAoT0G+8JYNqCiR6g==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/netbsd-x64@0.19.9:
- resolution: {integrity: sha512-GThgZPAwOBOsheA2RUlW5UeroRfESwMq/guy8uEe3wJlAOjpOXuSevLRd70NZ37ZrpO6RHGHgEHvPg1h3S1Jug==}
+ /@esbuild/netbsd-x64@0.19.11:
+ resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
- dev: true
optional: true
/@esbuild/openbsd-x64@0.18.20:
@@ -6175,22 +4964,12 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64@0.19.6:
- resolution: {integrity: sha512-fFqTVEktM1PGs2sLKH4M5mhAVEzGpeZJuasAMRnvDZNCV0Cjvm1Hu35moL2vC0DOrAQjNTvj4zWrol/lwQ8Deg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/openbsd-x64@0.19.9:
- resolution: {integrity: sha512-Ki6PlzppaFVbLnD8PtlVQfsYw4S9n3eQl87cqgeIw+O3sRr9IghpfSKY62mggdt1yCSZ8QWvTZ9jo9fjDSg9uw==}
+ /@esbuild/openbsd-x64@0.19.11:
+ resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
- dev: true
optional: true
/@esbuild/sunos-x64@0.18.20:
@@ -6202,22 +4981,12 @@ packages:
dev: true
optional: true
- /@esbuild/sunos-x64@0.19.6:
- resolution: {integrity: sha512-M+XIAnBpaNvaVAhbe3uBXtgWyWynSdlww/JNZws0FlMPSBy+EpatPXNIlKAdtbFVII9OpX91ZfMb17TU3JKTBA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/sunos-x64@0.19.9:
- resolution: {integrity: sha512-MLHj7k9hWh4y1ddkBpvRj2b9NCBhfgBt3VpWbHQnXRedVun/hC7sIyTGDGTfsGuXo4ebik2+3ShjcPbhtFwWDw==}
+ /@esbuild/sunos-x64@0.19.11:
+ resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
- dev: true
optional: true
/@esbuild/win32-arm64@0.18.20:
@@ -6229,22 +4998,12 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.19.6:
- resolution: {integrity: sha512-2DchFXn7vp/B6Tc2eKdTsLzE0ygqKkNUhUBCNtMx2Llk4POIVMUq5rUYjdcedFlGLeRe1uLCpVvCmE+G8XYybA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/win32-arm64@0.19.9:
- resolution: {integrity: sha512-GQoa6OrQ8G08guMFgeXPH7yE/8Dt0IfOGWJSfSH4uafwdC7rWwrfE6P9N8AtPGIjUzdo2+7bN8Xo3qC578olhg==}
+ /@esbuild/win32-arm64@0.19.11:
+ resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
- dev: true
optional: true
/@esbuild/win32-ia32@0.18.20:
@@ -6256,22 +5015,12 @@ packages:
dev: true
optional: true
- /@esbuild/win32-ia32@0.19.6:
- resolution: {integrity: sha512-PBo/HPDQllyWdjwAVX+Gl2hH0dfBydL97BAH/grHKC8fubqp02aL4S63otZ25q3sBdINtOBbz1qTZQfXbP4VBg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/win32-ia32@0.19.9:
- resolution: {integrity: sha512-UOozV7Ntykvr5tSOlGCrqU3NBr3d8JqPes0QWN2WOXfvkWVGRajC+Ym0/Wj88fUgecUCLDdJPDF0Nna2UK3Qtg==}
+ /@esbuild/win32-ia32@0.19.11:
+ resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
- dev: true
optional: true
/@esbuild/win32-x64@0.18.20:
@@ -6283,34 +5032,14 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64@0.19.6:
- resolution: {integrity: sha512-OE7yIdbDif2kKfrGa+V0vx/B3FJv2L4KnIiLlvtibPyO9UkgO3rzYE0HhpREo2vmJ1Ixq1zwm9/0er+3VOSZJA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/win32-x64@0.19.9:
- resolution: {integrity: sha512-oxoQgglOP7RH6iasDrhY+R/3cHrfwIDvRlT4CGChflq6twk8iENeVvMJjmvBb94Ik1Z+93iGO27err7w6l54GQ==}
+ /@esbuild/win32-x64@0.19.11:
+ resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
- dev: true
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.46.0):
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 8.46.0
- eslint-visitor-keys: 3.4.2
- dev: true
-
/@eslint-community/eslint-utils@4.4.0(eslint@8.56.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -6318,7 +5047,7 @@ packages:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: 8.56.0
- eslint-visitor-keys: 3.4.2
+ eslint-visitor-keys: 3.4.3
dev: true
/@eslint-community/regexpp@4.10.0:
@@ -6326,28 +5055,6 @@ packages:
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: true
- /@eslint-community/regexpp@4.6.2:
- resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==}
- engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- dev: true
-
- /@eslint/eslintrc@2.1.1:
- resolution: {integrity: sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- ajv: 6.12.6
- debug: 4.3.4
- espree: 9.6.1
- globals: 13.20.0
- ignore: 5.3.0
- 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: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -6365,11 +5072,6 @@ packages:
- supports-color
dev: true
- /@eslint/js@8.46.0:
- resolution: {integrity: sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==}
- 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}
@@ -6401,11 +5103,11 @@ packages:
resolution: {integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==}
dev: false
- /@floating-ui/vue@1.0.2(vue@3.3.4):
+ /@floating-ui/vue@1.0.2(vue@3.4.3):
resolution: {integrity: sha512-sImlAl9mAoCKZLNlwWz2P2ZMJIDlOEDXrRD6aD2sIHAka1LPC+nWtB+D3lPe7IE7FGWSbwBPTnlSdlABa3Fr0A==}
dependencies:
'@floating-ui/dom': 1.5.1
- vue-demi: 0.14.5(vue@3.3.4)
+ vue-demi: 0.14.6(vue@3.4.3)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -6425,13 +5127,13 @@ packages:
'@hapi/hoek': 9.3.0
dev: true
- /@headlessui/vue@1.7.15(vue@3.3.4):
+ /@headlessui/vue@1.7.15(vue@3.4.3):
resolution: {integrity: sha512-3ozVEgQ8mw09nWvUPN+8S6C8l3SM0lVT1aEN/+oP5Y4LF0WNMM9UrVisVTN9LLQ06v/X3EFA0blyL/vg8XNZlg==}
engines: {node: '>=10'}
peerDependencies:
vue: ^3.2.0
dependencies:
- vue: 3.3.4
+ vue: 3.4.3(typescript@4.9.5)
dev: false
/@html-eslint/eslint-plugin@0.19.1:
@@ -6446,17 +5148,6 @@ packages:
es-html-parser: 0.0.9
dev: true
- /@humanwhocodes/config-array@0.11.10:
- resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==}
- engines: {node: '>=10.10.0'}
- dependencies:
- '@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@humanwhocodes/config-array@0.11.13:
resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==}
engines: {node: '>=10.10.0'}
@@ -6473,10 +5164,6 @@ packages:
engines: {node: '>=12.22'}
dev: true
- /@humanwhocodes/object-schema@1.2.1:
- resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
- dev: true
-
/@humanwhocodes/object-schema@2.0.1:
resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==}
dev: true
@@ -6497,6 +5184,11 @@ packages:
wrap-ansi-cjs: /wrap-ansi@7.0.0
dev: false
+ /@isaacs/ttlcache@1.4.1:
+ resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==}
+ engines: {node: '>=12'}
+ dev: true
+
/@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
@@ -6513,25 +5205,33 @@ packages:
engines: {node: '>=8'}
dev: true
- /@jest/create-cache-key-function@27.5.1:
- resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ /@jest/create-cache-key-function@29.7.0:
+ resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==}
+ 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/expect-utils@29.6.2:
- resolution: {integrity: sha512-6zIhM8go3RV2IG4aIZaZbxwpOzz3ZiM23oxAlkquOIole+G6TrbeXnykxWYlqF7kz2HlBjdKtca20x9atkEQYg==}
+ /@jest/environment@29.7.0:
+ resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- jest-get-type: 29.4.3
+ '@jest/fake-timers': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 12.20.55
+ jest-mock: 29.7.0
dev: true
- /@jest/schemas@29.6.0:
- resolution: {integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==}
+ /@jest/fake-timers@29.7.0:
+ resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@sinclair/typebox': 0.27.8
+ '@jest/types': 29.6.3
+ '@sinonjs/fake-timers': 10.3.0
+ '@types/node': 12.20.55
+ jest-message-util: 29.7.0
+ jest-mock: 29.7.0
+ jest-util: 29.7.0
dev: true
/@jest/schemas@29.6.3:
@@ -6552,19 +5252,8 @@ packages:
chalk: 4.1.2
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': 12.20.55
- '@types/yargs': 16.0.5
- chalk: 4.1.2
- dev: true
-
- /@jest/types@29.6.1:
- resolution: {integrity: sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==}
+ /@jest/types@29.6.3:
+ resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/schemas': 29.6.3
@@ -6966,11 +5655,6 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.20
- /@jridgewell/resolve-uri@3.1.0:
- resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
- engines: {node: '>=6.0.0'}
- dev: true
-
/@jridgewell/resolve-uri@3.1.1:
resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
engines: {node: '>=6.0.0'}
@@ -6986,20 +5670,9 @@ packages:
'@jridgewell/trace-mapping': 0.3.20
dev: true
- /@jridgewell/sourcemap-codec@1.4.14:
- resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
- dev: true
-
/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
- /@jridgewell/trace-mapping@0.3.18:
- resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
- dependencies:
- '@jridgewell/resolve-uri': 3.1.0
- '@jridgewell/sourcemap-codec': 1.4.14
- dev: true
-
/@jridgewell/trace-mapping@0.3.20:
resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
dependencies:
@@ -7023,12 +5696,8 @@ packages:
/@kwsites/promise-deferred@1.1.1:
resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==}
- /@lezer/common@1.0.4:
- resolution: {integrity: sha512-lZHlk8p67x4aIDtJl6UQrXSOP6oi7dQR3W/geFVrENdA1JDaAJWldnVqVjPMJupbTKbzDfFcePfKttqVidS/dg==}
- dev: false
-
- /@lezer/common@1.1.2:
- resolution: {integrity: sha512-V+GqBsga5+cQJMfM0GdnHmg4DgWvLzgMWjbldBg0+jC3k9Gu6nJNZDLJxXEBT1Xj8KhRN4jmbC5CY7SIL++sVw==}
+ /@lezer/common@1.2.0:
+ resolution: {integrity: sha512-Wmvlm4q6tRpwiy20TnB3yyLTZim38Tkc50dPY8biQRwqE+ati/wD84rm3N15hikvdT4uSg9phs9ubjvcLmkpKg==}
dev: false
/@lezer/css@1.1.3:
@@ -7041,13 +5710,13 @@ packages:
/@lezer/highlight@1.1.6:
resolution: {integrity: sha512-cmSJYa2us+r3SePpRCjN5ymCqCPv+zyXmDl0ciWtVaNiORT/MxM7ZgOMQZADD0o51qOaOg24qc/zBViOIwAjJg==}
dependencies:
- '@lezer/common': 1.0.4
+ '@lezer/common': 1.2.0
dev: false
/@lezer/html@1.3.6:
resolution: {integrity: sha512-Kk9HJARZTc0bAnMQUqbtuhFVsB4AnteR2BFUWfZV7L/x1H0aAKz6YabrfJ2gk/BEgjh9L3hg5O4y2IDZRBdzuQ==}
dependencies:
- '@lezer/common': 1.0.4
+ '@lezer/common': 1.2.0
'@lezer/highlight': 1.1.6
'@lezer/lr': 1.3.10
dev: false
@@ -7062,7 +5731,7 @@ packages:
/@lezer/lr@1.3.10:
resolution: {integrity: sha512-BZfVvf7Re5BIwJHlZXbJn9L8lus5EonxQghyn+ih8Wl36XMFBPTXC0KM0IdUtj9w/diPHsKlXVgL+AlX2jYJ0Q==}
dependencies:
- '@lezer/common': 1.0.4
+ '@lezer/common': 1.2.0
dev: false
/@mapbox/node-pre-gyp@1.0.11:
@@ -7578,7 +6247,6 @@ packages:
dependencies:
is-glob: 4.0.3
micromatch: 4.0.5
- napi-wasm: 1.1.0
dev: true
bundledDependencies:
- napi-wasm
@@ -7649,7 +6317,7 @@ packages:
dev: false
optional: true
- /@preact/preset-vite@2.7.0(preact@10.19.2)(vite@4.5.0):
+ /@preact/preset-vite@2.7.0(preact@10.19.2)(vite@5.0.10):
resolution: {integrity: sha512-m5N0FVtxbCCDxNk55NGhsRpKJChYcupcuQHzMJc/Bll07IKZKn8amwYciyKFS9haU6AgzDAJ/ewvApr6Qg1DHw==}
peerDependencies:
'@babel/core': 7.x
@@ -7658,15 +6326,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx-development': 7.22.5
- '@prefresh/vite': 2.4.4(preact@10.19.2)(vite@4.5.0)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.7)
+ '@prefresh/vite': 2.4.4(preact@10.19.2)(vite@5.0.10)
'@rollup/pluginutils': 4.2.1
babel-plugin-transform-hook-names: 1.0.2
debug: 4.3.4
kolorist: 1.8.0
resolve: 1.22.8
- vite: 4.5.0(@types/node@20.9.2)
+ vite: 5.0.10
transitivePeerDependencies:
- preact
- supports-color
@@ -7688,82 +6356,83 @@ packages:
resolution: {integrity: sha512-KtC/fZw+oqtwOLUFM9UtiitB0JsVX0zLKNyRTA332sqREqSALIIQQxdUCS1P3xR/jT1e2e8/5rwH6gdcMLEmsQ==}
dev: true
- /@prefresh/vite@2.4.4(preact@10.19.2)(vite@4.5.0):
+ /@prefresh/vite@2.4.4(preact@10.19.2)(vite@5.0.10):
resolution: {integrity: sha512-7jcz3j5pXufOWTjl31n0Lc3BcU8oGoacoaWx/Ur1QJ+fd4Xu0G7g/ER1xV02x7DCiVoFi7xtSgaophOXoJvpmA==}
peerDependencies:
preact: ^10.4.0
vite: '>=2.0.0'
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@prefresh/babel-plugin': 0.5.1
'@prefresh/core': 1.5.2(preact@10.19.2)
'@prefresh/utils': 1.2.0
'@rollup/pluginutils': 4.2.1
preact: 10.19.2
- vite: 4.5.0(@types/node@20.9.2)
+ vite: 5.0.10
transitivePeerDependencies:
- supports-color
dev: true
- /@react-native-community/cli-clean@8.0.4:
- resolution: {integrity: sha512-IwS1M1NHg6+qL8PThZYMSIMYbZ6Zbx+lIck9PLBskbosFo24M3lCOflOl++Bggjakp6mR+sRXxLMexid/GeOsQ==}
+ /@react-native-community/cli-clean@12.3.0:
+ resolution: {integrity: sha512-iAgLCOWYRGh9ukr+eVQnhkV/OqN3V2EGd/in33Ggn/Mj4uO6+oUncXFwB+yjlyaUNz6FfjudhIz09yYGSF+9sg==}
dependencies:
- '@react-native-community/cli-tools': 8.0.4
+ '@react-native-community/cli-tools': 12.3.0
chalk: 4.1.2
- execa: 1.0.0
- prompts: 2.4.2
+ execa: 5.1.1
transitivePeerDependencies:
- encoding
dev: true
- /@react-native-community/cli-config@8.0.6:
- resolution: {integrity: sha512-mjVpVvdh8AviiO8xtqeX+BkjqE//NMDnISwsLWSJUfNCwTAPmdR8PGbhgP5O4hWHyJ3WkepTopl0ya7Tfi3ifw==}
+ /@react-native-community/cli-config@12.3.0:
+ resolution: {integrity: sha512-BrTn5ndFD9uOxO8kxBQ32EpbtOvAsQExGPI7SokdI4Zlve70FziLtTq91LTlTUgMq1InVZn/jJb3VIDk6BTInQ==}
dependencies:
- '@react-native-community/cli-tools': 8.0.4
+ '@react-native-community/cli-tools': 12.3.0
+ chalk: 4.1.2
cosmiconfig: 5.2.1
- deepmerge: 3.3.0
+ deepmerge: 4.3.1
glob: 7.2.3
joi: 17.9.2
transitivePeerDependencies:
- encoding
dev: true
- /@react-native-community/cli-debugger-ui@8.0.0:
- resolution: {integrity: sha512-u2jq06GZwZ9sRERzd9FIgpW6yv4YOW4zz7Ym/B8eSzviLmy3yI/8mxJtvlGW+J8lBsfMcQoqJpqI6Rl1nZy9yQ==}
+ /@react-native-community/cli-debugger-ui@12.3.0:
+ resolution: {integrity: sha512-w3b0iwjQlk47GhZWHaeTG8kKH09NCMUJO729xSdMBXE8rlbm4kHpKbxQY9qKb6NlfWSJN4noGY+FkNZS2rRwnQ==}
dependencies:
serve-static: 1.15.0
transitivePeerDependencies:
- supports-color
dev: true
- /@react-native-community/cli-doctor@8.0.6:
- resolution: {integrity: sha512-ZQqyT9mJMVeFEVIwj8rbDYGCA2xXjJfsQjWk2iTRZ1CFHfhPSUuUiG8r6mJmTinAP9t+wYcbbIYzNgdSUKnDMw==}
+ /@react-native-community/cli-doctor@12.3.0:
+ resolution: {integrity: sha512-BPCwNNesoQMkKsxB08Ayy6URgGQ8Kndv6mMhIvJSNdST3J1+x3ehBHXzG9B9Vfi+DrTKRb8lmEl/b/7VkDlPkA==}
dependencies:
- '@react-native-community/cli-config': 8.0.6
- '@react-native-community/cli-platform-ios': 8.0.6
- '@react-native-community/cli-tools': 8.0.4
+ '@react-native-community/cli-config': 12.3.0
+ '@react-native-community/cli-platform-android': 12.3.0
+ '@react-native-community/cli-platform-ios': 12.3.0
+ '@react-native-community/cli-tools': 12.3.0
chalk: 4.1.2
command-exists: 1.2.9
+ deepmerge: 4.3.1
envinfo: 7.10.0
- execa: 1.0.0
+ execa: 5.1.1
hermes-profile-transformer: 0.0.6
ip: 1.1.8
node-stream-zip: 1.15.0
ora: 5.4.1
- prompts: 2.4.2
- semver: 6.3.1
+ semver: 7.5.4
strip-ansi: 5.2.0
- sudo-prompt: 9.2.1
wcwidth: 1.0.1
+ yaml: 2.3.2
transitivePeerDependencies:
- encoding
dev: true
- /@react-native-community/cli-hermes@8.0.5:
- resolution: {integrity: sha512-Zm0wM6SfgYAEX1kfJ1QBvTayabvh79GzmjHyuSnEROVNPbl4PeCG4WFbwy489tGwOP9Qx9fMT5tRIFCD8bp6/g==}
+ /@react-native-community/cli-hermes@12.3.0:
+ resolution: {integrity: sha512-G6FxpeZBO4AimKZwtWR3dpXRqTvsmEqlIkkxgwthdzn3LbVjDVIXKpVYU9PkR5cnT+KuAUxO0WwthrJ6Nmrrlg==}
dependencies:
- '@react-native-community/cli-platform-android': 8.0.5
- '@react-native-community/cli-tools': 8.0.4
+ '@react-native-community/cli-platform-android': 12.3.0
+ '@react-native-community/cli-tools': 12.3.0
chalk: 4.1.2
hermes-profile-transformer: 0.0.6
ip: 1.1.8
@@ -7771,63 +6440,41 @@ packages:
- encoding
dev: true
- /@react-native-community/cli-platform-android@8.0.5:
- resolution: {integrity: sha512-z1YNE4T1lG5o9acoQR1GBvf7mq6Tzayqo/za5sHVSOJAC9SZOuVN/gg/nkBa9a8n5U7qOMFXfwhTMNqA474gXA==}
+ /@react-native-community/cli-platform-android@12.3.0:
+ resolution: {integrity: sha512-VU1NZw63+GLU2TnyQ919bEMThpHQ/oMFju9MCfrd3pyPJz4Sn+vc3NfnTDUVA5Z5yfLijFOkHIHr4vo/C9bjnw==}
dependencies:
- '@react-native-community/cli-tools': 8.0.4
+ '@react-native-community/cli-tools': 12.3.0
chalk: 4.1.2
- execa: 1.0.0
- fs-extra: 8.1.0
+ execa: 5.1.1
+ fast-xml-parser: 4.3.2
glob: 7.2.3
- jetifier: 1.6.8
- lodash: 4.17.21
logkitty: 0.7.1
- slash: 3.0.0
transitivePeerDependencies:
- encoding
dev: true
- /@react-native-community/cli-platform-ios@8.0.6:
- resolution: {integrity: sha512-CMR6mu/LVx6JVfQRDL9uULsMirJT633bODn+IrYmrwSz250pnhON16We8eLPzxOZHyDjm7JPuSgHG3a/BPiRuQ==}
+ /@react-native-community/cli-platform-ios@12.3.0:
+ resolution: {integrity: sha512-H95Sgt3wT7L8V75V0syFJDtv4YgqK5zbu69ko4yrXGv8dv2EBi6qZP0VMmkqXDamoPm9/U7tDTdbcf26ctnLfg==}
dependencies:
- '@react-native-community/cli-tools': 8.0.4
+ '@react-native-community/cli-tools': 12.3.0
chalk: 4.1.2
- execa: 1.0.0
+ execa: 5.1.1
+ fast-xml-parser: 4.3.2
glob: 7.2.3
- js-yaml: 3.14.1
- lodash: 4.17.21
ora: 5.4.1
- plist: 3.1.0
transitivePeerDependencies:
- encoding
dev: true
- /@react-native-community/cli-plugin-metro@8.0.7:
- resolution: {integrity: sha512-RK08Fqh//+9nDntCeKBq2LskWp4rD64q56/PxboZZBu5Z8KANJ4OBUzBLxm0rD0h+l9j6AASlO907HooBTWxrA==}
- dependencies:
- '@react-native-community/cli-server-api': 8.0.4
- '@react-native-community/cli-tools': 8.0.4
- chalk: 4.1.2
- metro: 0.70.4
- metro-config: 0.70.4
- metro-core: 0.70.4
- metro-react-native-babel-transformer: 0.70.4
- metro-resolver: 0.70.4
- metro-runtime: 0.70.4
- readline: 1.3.0
- transitivePeerDependencies:
- - '@babel/core'
- - bufferutil
- - encoding
- - supports-color
- - utf-8-validate
+ /@react-native-community/cli-plugin-metro@12.3.0:
+ resolution: {integrity: sha512-tYNHIYnNmxrBcsqbE2dAnLMzlKI3Cp1p1xUgTrNaOMsGPDN1epzNfa34n6Nps3iwKElSL7Js91CzYNqgTalucA==}
dev: true
- /@react-native-community/cli-server-api@8.0.4:
- resolution: {integrity: sha512-Orr14njx1E70CVrUA8bFdl+mrnbuXUjf1Rhhm0RxUadFpvkHuOi5dh8Bryj2MKtf8eZrpEwZ7tuQPhJEULW16A==}
+ /@react-native-community/cli-server-api@12.3.0:
+ resolution: {integrity: sha512-Rode8NrdyByC+lBKHHn+/W8Zu0c+DajJvLmOWbe2WY/ECvnwcd9MHHbu92hlT2EQaJ9LbLhGrSbQE3cQy9EOCw==}
dependencies:
- '@react-native-community/cli-debugger-ui': 8.0.0
- '@react-native-community/cli-tools': 8.0.4
+ '@react-native-community/cli-debugger-ui': 12.3.0
+ '@react-native-community/cli-tools': 12.3.0
compression: 1.7.4
connect: 3.7.0
errorhandler: 1.5.1
@@ -7842,75 +6489,238 @@ packages:
- utf-8-validate
dev: true
- /@react-native-community/cli-tools@8.0.4:
- resolution: {integrity: sha512-ePN9lGxh6LRFiotyddEkSmuqpQhnq2iw9oiXYr4EFWpIEy0yCigTuSTiDF68+c8M9B+7bTwkRpz/rMPC4ViO5Q==}
+ /@react-native-community/cli-tools@12.3.0:
+ resolution: {integrity: sha512-2GafnCr8D88VdClwnm9KZfkEb+lzVoFdr/7ybqhdeYM0Vnt/tr2N+fM1EQzwI1DpzXiBzTYemw8GjRq+Utcz2Q==}
dependencies:
appdirsjs: 1.2.7
chalk: 4.1.2
find-up: 5.0.0
- lodash: 4.17.21
mime: 2.6.0
node-fetch: 2.7.0
open: 6.4.0
ora: 5.4.1
- semver: 6.3.1
+ semver: 7.5.4
shell-quote: 1.8.1
+ sudo-prompt: 9.2.1
transitivePeerDependencies:
- encoding
dev: true
- /@react-native-community/cli-types@8.0.0:
- resolution: {integrity: sha512-1lZS1PEvMlFaN3Se1ksyoFWzMjk+YfKi490GgsqKJln9gvFm8tqVPdnXttI5Uf2DQf3BMse8Bk8dNH4oV6Ewow==}
+ /@react-native-community/cli-types@12.3.0:
+ resolution: {integrity: sha512-MgOkmrXH4zsGxhte4YqKL7d+N8ZNEd3w1wo56MZlhu5WabwCJh87wYpU5T8vyfujFLYOFuFK5jjlcbs8F4/WDw==}
dependencies:
joi: 17.9.2
dev: true
- /@react-native-community/cli@8.0.7(react-native@0.69.12):
- resolution: {integrity: sha512-DCSf77c0RvTCvNLKxFwuGBMFFIRwDiZWLo6znM2oNCFRkN2gmSQsYm1twdAh5asuNmetEiPoHdGT289SMWSjSQ==}
- engines: {node: '>=12'}
+ /@react-native-community/cli@12.3.0:
+ resolution: {integrity: sha512-XeQohi2E+S2+MMSz97QcEZ/bWpi8sfKiQg35XuYeJkc32Til2g0b97jRpn0/+fV0BInHoG1CQYWwHA7opMsrHg==}
+ engines: {node: '>=18'}
hasBin: true
- peerDependencies:
- react-native: '*'
dependencies:
- '@react-native-community/cli-clean': 8.0.4
- '@react-native-community/cli-config': 8.0.6
- '@react-native-community/cli-debugger-ui': 8.0.0
- '@react-native-community/cli-doctor': 8.0.6
- '@react-native-community/cli-hermes': 8.0.5
- '@react-native-community/cli-plugin-metro': 8.0.7
- '@react-native-community/cli-server-api': 8.0.4
- '@react-native-community/cli-tools': 8.0.4
- '@react-native-community/cli-types': 8.0.0
+ '@react-native-community/cli-clean': 12.3.0
+ '@react-native-community/cli-config': 12.3.0
+ '@react-native-community/cli-debugger-ui': 12.3.0
+ '@react-native-community/cli-doctor': 12.3.0
+ '@react-native-community/cli-hermes': 12.3.0
+ '@react-native-community/cli-plugin-metro': 12.3.0
+ '@react-native-community/cli-server-api': 12.3.0
+ '@react-native-community/cli-tools': 12.3.0
+ '@react-native-community/cli-types': 12.3.0
chalk: 4.1.2
- commander: 2.20.3
- execa: 1.0.0
+ commander: 9.5.0
+ deepmerge: 4.3.1
+ execa: 5.1.1
find-up: 4.1.0
fs-extra: 8.1.0
graceful-fs: 4.2.11
- leven: 3.1.0
- lodash: 4.17.21
- minimist: 1.2.8
prompts: 2.4.2
- react-native: 0.69.12(react@18.2.0)
- semver: 6.3.1
+ semver: 7.5.4
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /@react-native/assets-registry@0.73.1:
+ resolution: {integrity: sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /@react-native/babel-plugin-codegen@0.74.0:
+ resolution: {integrity: sha512-xAM/eVSb5LBkKue3bDZgt76bdsGGzKeF/iEzUNbDTwRQrB3Q5GoceGNM/zVlF+z1xGAkr3jhL+ZyITZGSoIlgw==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@react-native/codegen': 0.73.2
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+ dev: true
+
+ /@react-native/babel-preset@0.74.0:
+ resolution: {integrity: sha512-k+1aaYQeLn+GBmGA5Qs3NKI8uzhLvRRMML+pB/+43ZL6DvCklbuJ5KO5oqRRpF3KZ2t/VKUqqSichpXfFrXGjg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@babel/core': '*'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-proposal-export-default-from': 7.22.5
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-export-default-from': 7.22.5
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4
+ '@babel/plugin-transform-react-display-name': 7.22.5
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-runtime': 7.22.9
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/template': 7.22.15
+ '@react-native/babel-plugin-codegen': 0.74.0
+ babel-plugin-transform-flow-enums: 0.0.2
+ react-refresh: 0.14.0
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+ dev: true
+
+ /@react-native/codegen@0.73.2:
+ resolution: {integrity: sha512-lfy8S7umhE3QLQG5ViC4wg5N1Z+E6RnaeIw8w1voroQsXXGPB72IBozh8dAHR3+ceTxIU0KX3A8OpJI8e1+HpQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@babel/preset-env': ^7.1.6
+ peerDependenciesMeta:
+ '@babel/preset-env':
+ optional: true
+ dependencies:
+ '@babel/parser': 7.23.6
+ flow-parser: 0.206.0
+ glob: 7.2.3
+ invariant: 2.2.4
+ jscodeshift: 0.14.0
+ mkdirp: 0.5.6
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@react-native/community-cli-plugin@0.73.11:
+ resolution: {integrity: sha512-s0bprwljKS1Al8wOKathDDmRyF+70CcNE2G/aqZ7+L0NoOE0Uxxx/5P2BxlM2Mfht7O33B4SeMNiPdE/FqIubQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@react-native-community/cli-server-api': 12.3.0
+ '@react-native-community/cli-tools': 12.3.0
+ '@react-native/dev-middleware': 0.73.6
+ '@react-native/metro-babel-transformer': 0.73.12
+ chalk: 4.1.2
+ execa: 5.1.1
+ metro: 0.80.2
+ metro-config: 0.80.2
+ metro-core: 0.80.2
+ node-fetch: 2.7.0
+ readline: 1.3.0
transitivePeerDependencies:
- '@babel/core'
+ - '@babel/preset-env'
- bufferutil
- encoding
- supports-color
- utf-8-validate
dev: true
- /@react-native/assets@1.0.0:
- resolution: {integrity: sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==}
+ /@react-native/debugger-frontend@0.73.3:
+ resolution: {integrity: sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /@react-native/dev-middleware@0.73.6:
+ resolution: {integrity: sha512-9SD7gIso+hO1Jy1Y/Glbd+JWQwyH7Xjnwebtkxdm5TMB51LQPjaGtMcwEigbIZyAtvoaDGmhWmudwbKpDlS+gA==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@isaacs/ttlcache': 1.4.1
+ '@react-native/debugger-frontend': 0.73.3
+ chrome-launcher: 0.15.2
+ chromium-edge-launcher: 1.0.0
+ connect: 3.7.0
+ debug: 2.6.9
+ node-fetch: 2.7.0
+ open: 7.4.2
+ serve-static: 1.15.0
+ temp-dir: 2.0.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ dev: true
+
+ /@react-native/gradle-plugin@0.73.4:
+ resolution: {integrity: sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /@react-native/js-polyfills@0.73.1:
+ resolution: {integrity: sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /@react-native/metro-babel-transformer@0.73.12:
+ resolution: {integrity: sha512-VmxN5aaoOprzDzUR+8c3XYhG0FoMOO6n0ToylCW6EeZCuf5RTY7HWVOhacabGoB1mHrWzJ0wWEsqX+eD4iFxoA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@babel/core': '*'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@react-native/babel-preset': 0.74.0
+ babel-preset-fbjs: 3.4.0
+ hermes-parser: 0.15.0
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
dev: true
- /@react-native/normalize-color@2.0.0:
- resolution: {integrity: sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==}
+ /@react-native/normalize-colors@0.73.2:
+ resolution: {integrity: sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==}
dev: true
- /@react-native/polyfills@2.0.0:
- resolution: {integrity: sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==}
+ /@react-native/virtualized-lists@0.73.4(react-native@0.73.1):
+ resolution: {integrity: sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ react-native: '*'
+ dependencies:
+ invariant: 2.2.4
+ nullthrows: 1.1.1
+ react-native: 0.73.1(react@18.2.0)
dev: true
/@resvg/resvg-js-android-arm-eabi@2.4.1:
@@ -8057,7 +6867,7 @@ packages:
slash: 4.0.0
dev: true
- /@rollup/plugin-babel@6.0.3(@babel/core@7.22.9)(rollup@3.27.0):
+ /@rollup/plugin-babel@6.0.3(@babel/core@7.23.7)(rollup@3.29.4):
resolution: {integrity: sha512-fKImZKppa1A/gX73eg4JGo+8kQr/q1HBQaCGKECZ0v4YBBv3lFqi14+7xyApECzvkLTHCifx+7ntcrvtBIRcpg==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -8072,10 +6882,10 @@ packages:
rollup:
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-imports': 7.22.5
- '@rollup/pluginutils': 5.0.5(rollup@3.27.0)
- rollup: 3.27.0
+ '@babel/core': 7.23.7
+ '@babel/helper-module-imports': 7.22.15
+ '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
+ rollup: 3.29.4
dev: true
/@rollup/plugin-commonjs@25.0.7(rollup@3.29.4):
@@ -8163,24 +6973,6 @@ packages:
rollup: 2.79.1
dev: true
- /@rollup/plugin-node-resolve@15.1.0(rollup@3.27.0):
- resolution: {integrity: sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^2.78.0||^3.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.27.0)
- '@types/resolve': 1.20.2
- deepmerge: 4.3.1
- is-builtin-module: 3.2.1
- is-module: 1.0.0
- resolve: 1.22.3
- rollup: 3.27.0
- dev: true
-
/@rollup/plugin-node-resolve@15.2.3(rollup@3.29.4):
resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==}
engines: {node: '>=14.0.0'}
@@ -8199,21 +6991,21 @@ packages:
rollup: 3.29.4
dev: true
- /@rollup/plugin-replace@5.0.2(rollup@3.27.0):
- resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==}
+ /@rollup/plugin-replace@5.0.5(rollup@3.29.4):
+ resolution: {integrity: sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
peerDependenciesMeta:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.27.0)
- magic-string: 0.27.0
- rollup: 3.27.0
+ '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
+ magic-string: 0.30.5
+ rollup: 3.29.4
dev: true
- /@rollup/plugin-replace@5.0.5(rollup@3.29.4):
+ /@rollup/plugin-replace@5.0.5(rollup@4.9.2):
resolution: {integrity: sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -8222,11 +7014,11 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
+ '@rollup/pluginutils': 5.1.0(rollup@4.9.2)
magic-string: 0.30.5
- rollup: 3.29.4
+ rollup: 4.9.2
- /@rollup/plugin-terser@0.1.0(rollup@3.27.0):
+ /@rollup/plugin-terser@0.1.0(rollup@3.29.4):
resolution: {integrity: sha512-N2KK+qUfHX2hBzVzM41UWGLrEmcjVC37spC8R3c9mt3oEDFKh3N2e12/lLp9aVSt86veR0TQiCNQXrm8C6aiUQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -8235,8 +7027,8 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.27.0
- terser: 5.24.0
+ rollup: 3.29.4
+ terser: 5.26.0
dev: true
/@rollup/plugin-terser@0.4.4(rollup@3.29.4):
@@ -8285,39 +7077,10 @@ packages:
dependencies:
estree-walker: 2.0.2
picomatch: 2.3.1
-
- /@rollup/pluginutils@5.0.2(rollup@3.27.0):
- resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- rollup: 3.27.0
- dev: true
-
- /@rollup/pluginutils@5.0.5(rollup@3.27.0):
- resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- rollup: 3.27.0
dev: true
- /@rollup/pluginutils@5.0.5(rollup@3.29.4):
- resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==}
+ /@rollup/pluginutils@5.1.0(rollup@3.29.4):
+ resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -8329,8 +7092,9 @@ packages:
estree-walker: 2.0.2
picomatch: 2.3.1
rollup: 3.29.4
+ dev: true
- /@rollup/pluginutils@5.1.0(rollup@3.29.4):
+ /@rollup/pluginutils@5.1.0(rollup@4.9.2):
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -8342,103 +7106,97 @@ packages:
'@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 3.29.4
- dev: true
+ rollup: 4.9.2
- /@rollup/rollup-android-arm-eabi@4.5.2:
- resolution: {integrity: sha512-ee7BudTwwrglFYSc3UnqInDDjCLWHKrFmGNi4aK7jlEyg4CyPa1DCMrZfsN1O13YT76UFEqXz2CoN7BCGpUlJw==}
+ /@rollup/rollup-android-arm-eabi@4.9.2:
+ resolution: {integrity: sha512-RKzxFxBHq9ysZ83fn8Iduv3A283K7zPPYuhL/z9CQuyFrjwpErJx0h4aeb/bnJ+q29GRLgJpY66ceQ/Wcsn3wA==}
cpu: [arm]
os: [android]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-android-arm64@4.5.2:
- resolution: {integrity: sha512-xOuhj9HHtn8128ir8veoQsBbAUBasDbHIBniYTEx02pAmu9EXL+ZjJqngnNEy6ZgZ4h1JwL33GMNu3yJL5Mzow==}
+ /@rollup/rollup-android-arm64@4.9.2:
+ resolution: {integrity: sha512-yZ+MUbnwf3SHNWQKJyWh88ii2HbuHCFQnAYTeeO1Nb8SyEiWASEi5dQUygt3ClHWtA9My9RQAYkjvrsZ0WK8Xg==}
cpu: [arm64]
os: [android]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-darwin-arm64@4.5.2:
- resolution: {integrity: sha512-NTGJWoL8bKyqyWFn9/RzSv4hQ4wTbaAv0lHHRwf4OnpiiP4P8W0jiXbm8Nc5BCXKmWAwuvJY82mcIU2TayC20g==}
+ /@rollup/rollup-darwin-arm64@4.9.2:
+ resolution: {integrity: sha512-vqJ/pAUh95FLc/G/3+xPqlSBgilPnauVf2EXOQCZzhZJCXDXt/5A8mH/OzU6iWhb3CNk5hPJrh8pqJUPldN5zw==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-darwin-x64@4.5.2:
- resolution: {integrity: sha512-hlKqj7bpPvU15sZo4za14u185lpMzdwWLMc9raMqPK4wywt0wR23y1CaVQ4oAFXat3b5/gmRntyfpwWTKl+vvA==}
+ /@rollup/rollup-darwin-x64@4.9.2:
+ resolution: {integrity: sha512-otPHsN5LlvedOprd3SdfrRNhOahhVBwJpepVKUN58L0RnC29vOAej1vMEaVU6DadnpjivVsNTM5eNt0CcwTahw==}
cpu: [x64]
os: [darwin]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-linux-arm-gnueabihf@4.5.2:
- resolution: {integrity: sha512-7ZIZx8c3u+pfI0ohQsft/GywrXez0uR6dUP0JhBuCK3sFO5TfdLn/YApnVkvPxuTv3+YKPIZend9Mt7Cz6sS3Q==}
+ /@rollup/rollup-linux-arm-gnueabihf@4.9.2:
+ resolution: {integrity: sha512-ewG5yJSp+zYKBYQLbd1CUA7b1lSfIdo9zJShNTyc2ZP1rcPrqyZcNlsHgs7v1zhgfdS+kW0p5frc0aVqhZCiYQ==}
cpu: [arm]
os: [linux]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-linux-arm64-gnu@4.5.2:
- resolution: {integrity: sha512-7Pk/5mO11JW/cH+a8lL/i0ZxmRGrbpYqN0VwO2DHhU+SJWWOH2zE1RAcPaj8KqiwC8DCDIJOSxjV9+9lLb6aeA==}
+ /@rollup/rollup-linux-arm64-gnu@4.9.2:
+ resolution: {integrity: sha512-pL6QtV26W52aCWTG1IuFV3FMPL1m4wbsRG+qijIvgFO/VBsiXJjDPE/uiMdHBAO6YcpV4KvpKtd0v3WFbaxBtg==}
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-linux-arm64-musl@4.5.2:
- resolution: {integrity: sha512-KrRnuG5phJx756e62wxvWH2e+TK84MP2IVuPwfge+GBvWqIUfVzFRn09TKruuQBXzZp52Vyma7FjMDkwlA9xpg==}
+ /@rollup/rollup-linux-arm64-musl@4.9.2:
+ resolution: {integrity: sha512-On+cc5EpOaTwPSNetHXBuqylDW+765G/oqB9xGmWU3npEhCh8xu0xqHGUA+4xwZLqBbIZNcBlKSIYfkBm6ko7g==}
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-linux-x64-gnu@4.5.2:
- resolution: {integrity: sha512-My+53GasPa2D2tU5dXiyHYwrELAUouSfkNlZ3bUKpI7btaztO5vpALEs3mvFjM7aKTvEbc7GQckuXeXIDKQ0fg==}
+ /@rollup/rollup-linux-riscv64-gnu@4.9.2:
+ resolution: {integrity: sha512-Wnx/IVMSZ31D/cO9HSsU46FjrPWHqtdF8+0eyZ1zIB5a6hXaZXghUKpRrC4D5DcRTZOjml2oBhXoqfGYyXKipw==}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-x64-gnu@4.9.2:
+ resolution: {integrity: sha512-ym5x1cj4mUAMBummxxRkI4pG5Vht1QMsJexwGP8547TZ0sox9fCLDHw9KCH9c1FO5d9GopvkaJsBIOkTKxksdw==}
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-linux-x64-musl@4.5.2:
- resolution: {integrity: sha512-/f0Q6Sc+Vw54Ws6N8fxaEe4R7at3b8pFyv+O/F2VaQ4hODUJcRUcCBJh6zuqtgQQt7w845VTkGLFgWZkP3tUoQ==}
+ /@rollup/rollup-linux-x64-musl@4.9.2:
+ resolution: {integrity: sha512-m0hYELHGXdYx64D6IDDg/1vOJEaiV8f1G/iO+tejvRCJNSwK4jJ15e38JQy5Q6dGkn1M/9KcyEOwqmlZ2kqaZg==}
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-win32-arm64-msvc@4.5.2:
- resolution: {integrity: sha512-NCKuuZWLht6zj7s6EIFef4BxCRX1GMr83S2W4HPCA0RnJ4iHE4FS1695q6Ewoa6A9nFjJe1//yUu0kgBU07Edw==}
+ /@rollup/rollup-win32-arm64-msvc@4.9.2:
+ resolution: {integrity: sha512-x1CWburlbN5JjG+juenuNa4KdedBdXLjZMp56nHFSHTOsb/MI2DYiGzLtRGHNMyydPGffGId+VgjOMrcltOksA==}
cpu: [arm64]
os: [win32]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-win32-ia32-msvc@4.5.2:
- resolution: {integrity: sha512-J5zL3riR4AOyU/J3M/i4k/zZ8eP1yT+nTmAKztCXJtnI36jYH0eepvob22mAQ/kLwfsK2TB6dbyVY1F8c/0H5A==}
+ /@rollup/rollup-win32-ia32-msvc@4.9.2:
+ resolution: {integrity: sha512-VVzCB5yXR1QlfsH1Xw1zdzQ4Pxuzv+CPr5qpElpKhVxlxD3CRdfubAG9mJROl6/dmj5gVYDDWk8sC+j9BI9/kQ==}
cpu: [ia32]
os: [win32]
requiresBuild: true
- dev: true
optional: true
- /@rollup/rollup-win32-x64-msvc@4.5.2:
- resolution: {integrity: sha512-pL0RXRHuuGLhvs7ayX/SAHph1hrDPXOM5anyYUQXWJEENxw3nfHkzv8FfVlEVcLyKPAEgDRkd6RKZq2SMqS/yg==}
+ /@rollup/rollup-win32-x64-msvc@4.9.2:
+ resolution: {integrity: sha512-SYRedJi+mweatroB+6TTnJYLts0L0bosg531xnQWtklOI6dezEagx4Q0qDyvRdK+qgdA3YZpjjGuPFtxBmddBA==}
cpu: [x64]
os: [win32]
requiresBuild: true
- dev: true
optional: true
/@schematics/angular@13.3.11:
@@ -8466,39 +7224,51 @@ packages:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
dev: true
- /@sinclair/typebox@0.27.8:
- resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+ /@sinclair/typebox@0.27.8:
+ resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+ dev: true
+
+ /@sinonjs/commons@3.0.0:
+ resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==}
+ dependencies:
+ type-detect: 4.0.8
+ dev: true
+
+ /@sinonjs/fake-timers@10.3.0:
+ resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
+ dependencies:
+ '@sinonjs/commons': 3.0.0
dev: true
/@socket.io/component-emitter@3.1.0:
resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==}
dev: true
- /@solidjs/router@0.10.3(solid-js@1.7.8):
- resolution: {integrity: sha512-UZyUcGbMzeJWCJZthWfveFbv9FyMLi62+BHpXyVwAYpowHaUkkV3WVKoYxYF9m47fVG23UfUo2S6GbuyPAyCjw==}
+ /@solidjs/router@0.10.5(solid-js@1.8.7):
+ resolution: {integrity: sha512-gxDeiyc97j8/UqzuuasZsQYA7jpmlwjkfpcay11Q2xfzoKR50eBM1AaxAPtf0MlBAdPsdPV3h/k8t5/XQCuebA==}
peerDependencies:
solid-js: ^1.8.6
dependencies:
- solid-js: 1.7.8
+ solid-js: 1.8.7
dev: true
- /@solidjs/testing-library@0.8.4(@solidjs/router@0.10.3)(solid-js@1.7.8):
- resolution: {integrity: sha512-HHCAlBd4P4TY03tXmoBwTO6FFM7w33LeT8Skab941eLO9l5RN7OxKEBw2fiMYvSFL2h2U7L4+W5N03iC8GbB6Q==}
+ /@solidjs/testing-library@0.8.5(@solidjs/router@0.10.5)(solid-js@1.8.7):
+ resolution: {integrity: sha512-L9TowCoqdRQGB8ikODh9uHXrYTjCUZseVUG0tIVa836//qeSqXP4m0BKG66v9Zp1y1wRxok5qUW97GwrtEBMcw==}
engines: {node: '>= 14'}
peerDependencies:
'@solidjs/router': '>=0.6.0'
solid-js: '>=1.0.0'
dependencies:
- '@solidjs/router': 0.10.3(solid-js@1.7.8)
- '@testing-library/dom': 9.3.1
- solid-js: 1.7.8
+ '@solidjs/router': 0.10.5(solid-js@1.8.7)
+ '@testing-library/dom': 9.3.3
+ solid-js: 1.8.7
dev: true
/@stitches/core@1.2.8:
resolution: {integrity: sha512-Gfkvwk9o9kE9r9XNBmJRfV8zONvXThnm1tcuojL04Uy5uRyqg93DC83lDebl0rocZCfKSjUv+fWYtMQmEDJldg==}
dev: false
- /@sveltejs/package@2.2.3(svelte@4.1.2)(typescript@5.1.6):
+ /@sveltejs/package@2.2.3(svelte@4.1.2)(typescript@5.3.3):
resolution: {integrity: sha512-iZEC5qw+2RIjfIAHR3O+IeokJIjVM/ieoxPxj6YmZCwu5JKFADtC4jzjSUJ7GkCMUQ4HqE7u4/3cCxXBocxi8A==}
engines: {node: ^16.14 || >=18}
hasBin: true
@@ -8510,12 +7280,12 @@ packages:
sade: 1.8.1
semver: 7.5.4
svelte: 4.1.2
- svelte2tsx: 0.6.27(svelte@4.1.2)(typescript@5.1.6)
+ svelte2tsx: 0.6.27(svelte@4.1.2)(typescript@5.3.3)
transitivePeerDependencies:
- typescript
dev: true
- /@sveltejs/vite-plugin-svelte-inspector@1.0.3(@sveltejs/vite-plugin-svelte@2.4.3)(svelte@4.1.2)(vite@4.5.0):
+ /@sveltejs/vite-plugin-svelte-inspector@1.0.3(@sveltejs/vite-plugin-svelte@2.4.3)(svelte@4.1.2)(vite@5.0.10):
resolution: {integrity: sha512-Khdl5jmmPN6SUsVuqSXatKpQTMIifoQPDanaxC84m9JxIibWvSABJyHpyys0Z+1yYrxY5TTEQm+6elh0XCMaOA==}
engines: {node: ^14.18.0 || >= 16}
peerDependencies:
@@ -8523,54 +7293,40 @@ packages:
svelte: ^3.54.0 || ^4.0.0
vite: ^4.0.0
dependencies:
- '@sveltejs/vite-plugin-svelte': 2.4.3(svelte@4.1.2)(vite@4.5.0)
+ '@sveltejs/vite-plugin-svelte': 2.4.3(svelte@4.1.2)(vite@5.0.10)
debug: 4.3.4
svelte: 4.1.2
- vite: 4.5.0(@types/node@20.9.2)
+ vite: 5.0.10
transitivePeerDependencies:
- supports-color
dev: true
- /@sveltejs/vite-plugin-svelte@2.4.3(svelte@4.1.2)(vite@4.5.0):
+ /@sveltejs/vite-plugin-svelte@2.4.3(svelte@4.1.2)(vite@5.0.10):
resolution: {integrity: sha512-NY2h+B54KHZO3kDURTdARqthn6D4YSIebtfW75NvZ/fwyk4G+AJw3V/i0OBjyN4406Ht9yZcnNWMuRUFnDNNiA==}
engines: {node: ^14.18.0 || >= 16}
peerDependencies:
svelte: ^3.54.0 || ^4.0.0
vite: ^4.0.0
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 1.0.3(@sveltejs/vite-plugin-svelte@2.4.3)(svelte@4.1.2)(vite@4.5.0)
+ '@sveltejs/vite-plugin-svelte-inspector': 1.0.3(@sveltejs/vite-plugin-svelte@2.4.3)(svelte@4.1.2)(vite@5.0.10)
debug: 4.3.4
deepmerge: 4.3.1
kleur: 4.1.5
- magic-string: 0.30.2
+ magic-string: 0.30.5
svelte: 4.1.2
svelte-hmr: 0.15.2(svelte@4.1.2)
- vite: 4.5.0(@types/node@20.9.2)
- vitefu: 0.2.4(vite@4.5.0)
+ vite: 5.0.10
+ vitefu: 0.2.5(vite@5.0.10)
transitivePeerDependencies:
- supports-color
dev: true
- /@testing-library/dom@7.31.2:
- resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==}
- engines: {node: '>=10'}
- dependencies:
- '@babel/code-frame': 7.23.4
- '@babel/runtime': 7.23.4
- '@types/aria-query': 4.2.2
- aria-query: 4.2.2
- chalk: 4.1.2
- dom-accessibility-api: 0.5.16
- lz-string: 1.5.0
- pretty-format: 26.6.2
- dev: true
-
/@testing-library/dom@8.20.1:
resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==}
engines: {node: '>=12'}
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/runtime': 7.22.6
+ '@babel/code-frame': 7.23.5
+ '@babel/runtime': 7.23.4
'@types/aria-query': 5.0.1
aria-query: 5.1.3
chalk: 4.1.2
@@ -8579,11 +7335,11 @@ packages:
pretty-format: 27.5.1
dev: true
- /@testing-library/dom@9.3.1:
- resolution: {integrity: sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w==}
+ /@testing-library/dom@9.3.3:
+ resolution: {integrity: sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==}
engines: {node: '>=14'}
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.23.5
'@babel/runtime': 7.23.4
'@types/aria-query': 5.0.1
aria-query: 5.1.3
@@ -8593,23 +7349,37 @@ packages:
pretty-format: 27.5.1
dev: true
- /@testing-library/jest-dom@5.17.0:
- resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==}
- engines: {node: '>=8', npm: '>=6', yarn: '>=1'}
+ /@testing-library/jest-dom@6.1.6(vitest@0.32.4):
+ resolution: {integrity: sha512-YwuiOdYEcxhfC2u5iNKlvg2Q5MgbutovP6drq7J1HrCbvR+G58BbtoCoq+L/kNlrNFsu2Kt3jaFAviLVxYHJZg==}
+ 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.2.0
- '@babel/runtime': 7.22.6
- '@types/testing-library__jest-dom': 5.14.9
+ '@adobe/css-tools': 4.3.2
+ '@babel/runtime': 7.23.4
aria-query: 5.3.0
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.5.16
lodash: 4.17.21
redent: 3.0.0
+ vitest: 0.32.4
dev: true
- /@testing-library/jest-dom@6.1.4(vitest@0.32.4):
- resolution: {integrity: sha512-wpoYrCYwSZ5/AxcrjLxJmCU6I5QAJXslEeSiMQqaWmP2Kzpd1LvF/qxmAIW2qposULGWq2gw30GgVNFLSc2Jnw==}
+ /@testing-library/jest-dom@6.1.6(vitest@0.34.2):
+ resolution: {integrity: sha512-YwuiOdYEcxhfC2u5iNKlvg2Q5MgbutovP6drq7J1HrCbvR+G58BbtoCoq+L/kNlrNFsu2Kt3jaFAviLVxYHJZg==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
peerDependencies:
'@jest/globals': '>= 28'
@@ -8626,7 +7396,7 @@ packages:
vitest:
optional: true
dependencies:
- '@adobe/css-tools': 4.3.1
+ '@adobe/css-tools': 4.3.2
'@babel/runtime': 7.23.4
aria-query: 5.3.0
chalk: 3.0.0
@@ -8634,11 +7404,11 @@ packages:
dom-accessibility-api: 0.5.16
lodash: 4.17.21
redent: 3.0.0
- vitest: 0.32.4(jsdom@20.0.3)
+ vitest: 0.34.2(jsdom@23.0.1)
dev: true
- /@testing-library/jest-dom@6.1.4(vitest@1.0.4):
- resolution: {integrity: sha512-wpoYrCYwSZ5/AxcrjLxJmCU6I5QAJXslEeSiMQqaWmP2Kzpd1LvF/qxmAIW2qposULGWq2gw30GgVNFLSc2Jnw==}
+ /@testing-library/jest-dom@6.1.6(vitest@1.1.1):
+ resolution: {integrity: sha512-YwuiOdYEcxhfC2u5iNKlvg2Q5MgbutovP6drq7J1HrCbvR+G58BbtoCoq+L/kNlrNFsu2Kt3jaFAviLVxYHJZg==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
peerDependencies:
'@jest/globals': '>= 28'
@@ -8655,7 +7425,7 @@ packages:
vitest:
optional: true
dependencies:
- '@adobe/css-tools': 4.3.1
+ '@adobe/css-tools': 4.3.2
'@babel/runtime': 7.23.4
aria-query: 5.3.0
chalk: 3.0.0
@@ -8663,41 +7433,28 @@ packages:
dom-accessibility-api: 0.5.16
lodash: 4.17.21
redent: 3.0.0
- vitest: 1.0.4(jsdom@23.0.1)
+ vitest: 1.1.1(jsdom@20.0.3)
dev: true
- /@testing-library/preact@2.0.1(preact@10.19.2):
- resolution: {integrity: sha512-79kwVOY+3caoLgaPbiPzikjgY0Aya7Fc7TvGtR1upCnz2wrtmPDnN2t9vO7I7vDP2zoA+feSwOH5Q0BFErhaaQ==}
- engines: {node: '>= 10'}
+ /@testing-library/preact@3.2.3(preact@10.19.2):
+ resolution: {integrity: sha512-y6Kklp1XK3f1X2fWCbujmJyzkf+1BgLYXNgAx21j9+D4CoqMTz5qC4SQufb1L6q/jxLGACzrQ90ewVOTBvHOfg==}
+ engines: {node: '>= 12'}
peerDependencies:
preact: '>=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0'
dependencies:
- '@testing-library/dom': 7.31.2
+ '@testing-library/dom': 8.20.1
preact: 10.19.2
dev: true
- /@testing-library/react@11.2.7(react-dom@17.0.2)(react@17.0.2):
- resolution: {integrity: sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==}
- engines: {node: '>=10'}
- peerDependencies:
- react: '*'
- react-dom: '*'
- dependencies:
- '@babel/runtime': 7.23.4
- '@testing-library/dom': 7.31.2
- react: 17.0.2
- react-dom: 17.0.2(react@17.0.2)
- dev: true
-
- /@testing-library/react@13.4.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==}
- engines: {node: '>=12'}
+ /@testing-library/react@14.1.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-z4p7DVBTPjKM5qDZ0t5ZjzkpSNb+fZy1u6bzO7kk8oeGagpPCAtgh4cx1syrfp7a+QWkM021jGqjJaxJJnXAZg==}
+ engines: {node: '>=14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/runtime': 7.22.6
- '@testing-library/dom': 8.20.1
+ '@babel/runtime': 7.23.4
+ '@testing-library/dom': 9.3.3
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -8709,7 +7466,7 @@ packages:
peerDependencies:
svelte: ^3 || ^4
dependencies:
- '@testing-library/dom': 9.3.1
+ '@testing-library/dom': 9.3.3
svelte: 4.1.2
dev: true
@@ -8720,25 +7477,27 @@ packages:
vue: ^2.6.10
vue-template-compiler: ^2.6.10
dependencies:
- '@babel/runtime': 7.22.6
- '@testing-library/dom': 9.3.1
+ '@babel/runtime': 7.23.4
+ '@testing-library/dom': 9.3.3
'@vue/test-utils': 1.3.0(vue-template-compiler@2.7.14)(vue@2.7.14)
vue: 2.7.14
vue-template-compiler: 2.7.14(vue@2.7.14)
dev: true
- /@testing-library/vue@6.6.1(@vue/compiler-sfc@3.2.45)(vue@3.2.45):
- resolution: {integrity: sha512-vpyBPrHzKTwEGS7ehUC8/IXgnqTBEMk6jd52Gouf51arG2jUorPhmkbsxUwJOyxz6L0gj2ZcmWnznG1OJcTCDQ==}
- engines: {node: '>=12'}
+ /@testing-library/vue@8.0.1(@vue/compiler-sfc@3.4.3)(vue@3.4.3):
+ resolution: {integrity: sha512-l51ZEpjTQ6glq3wM+asQ1GbKJMGcxwgHEygETx0aCRN4TjFEGvMZy4YdWKs/y7bu4bmLrxcxhbEPP7iPSW/2OQ==}
+ engines: {node: '>=14'}
peerDependencies:
'@vue/compiler-sfc': '>= 3'
vue: '>= 3'
dependencies:
- '@babel/runtime': 7.22.6
- '@testing-library/dom': 8.20.1
- '@vue/compiler-sfc': 3.2.45
- '@vue/test-utils': 2.2.4(vue@3.2.45)
- vue: 3.2.45
+ '@babel/runtime': 7.23.4
+ '@testing-library/dom': 9.3.3
+ '@vue/compiler-sfc': 3.4.3
+ '@vue/test-utils': 2.4.3(vue@3.4.3)
+ vue: 3.4.3(typescript@4.9.5)
+ transitivePeerDependencies:
+ - '@vue/server-renderer'
dev: true
/@tokenizer/token@0.3.0:
@@ -8778,10 +7537,6 @@ packages:
resolution: {integrity: sha512-iu5BqFjU0+OcLTNQp7fHe6Bf6zdNeJ9IZjLZMqWLuGzVFm/xx+lm//Tf6koPyRmxo55/Snm6RRQ990n89cRKFw==}
dev: true
- /@types/aria-query@4.2.2:
- resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==}
- dev: true
-
/@types/aria-query@5.0.1:
resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==}
dev: true
@@ -8789,8 +7544,8 @@ packages:
/@types/babel__core@7.20.5:
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
dependencies:
- '@babel/parser': 7.23.4
- '@babel/types': 7.23.4
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.20.1
@@ -8799,20 +7554,20 @@ packages:
/@types/babel__generator@7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
/@types/babel__template@7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.23.4
- '@babel/types': 7.23.4
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
dev: true
/@types/babel__traverse@7.20.1:
resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==}
dependencies:
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
/@types/body-parser@1.19.2:
@@ -8934,12 +7689,6 @@ packages:
'@types/node': 12.20.55
dev: true
- /@types/graceful-fs@4.1.6:
- resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
- dependencies:
- '@types/node': 12.20.55
- dev: true
-
/@types/hast@3.0.3:
resolution: {integrity: sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ==}
dependencies:
@@ -8975,17 +7724,6 @@ packages:
resolution: {integrity: sha512-tAiqDJrwRKyjpCgJE07OXFsXsXQWDhoJhyRwzl+yfEToy72s0LhHAfquMi2s4T4Iq3nanKOfZ8/PZFaL/0pQmA==}
dev: true
- /@types/jest@29.5.3:
- resolution: {integrity: sha512-1Nq7YrO/vJE/FYnqYyw0FS8LdrjExSgIiHyKg7xPpn+yi8Q4huZryKnkJatN1ZRH89Kw2v33/8ZMB7DuZeSLlA==}
- dependencies:
- expect: 29.6.2
- pretty-format: 29.6.2
- dev: true
-
- /@types/json-schema@7.0.12:
- resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==}
- dev: true
-
/@types/json-schema@7.0.15:
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
dev: true
@@ -9043,12 +7781,6 @@ packages:
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
dev: false
- /@types/node@20.9.2:
- resolution: {integrity: sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg==}
- dependencies:
- undici-types: 5.26.5
- dev: true
-
/@types/parse-json@4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
dev: true
@@ -9057,10 +7789,6 @@ packages:
resolution: {integrity: sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==}
dev: true
- /@types/prop-types@15.7.5:
- resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
- dev: true
-
/@types/pug@2.0.6:
resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==}
dev: true
@@ -9086,23 +7814,15 @@ packages:
/@types/react-dom@18.2.7:
resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
dependencies:
- '@types/react': 18.2.17
+ '@types/react': 18.2.37
dev: true
/@types/react@17.0.62:
resolution: {integrity: sha512-eANCyz9DG8p/Vdhr0ZKST8JV12PhH2ACCDYlFw6DIO+D+ca+uP4jtEDEpVqXZrh/uZdXQGwk7whJa3ah5DtyLw==}
dependencies:
'@types/prop-types': 15.7.10
- '@types/scheduler': 0.16.3
- csstype: 3.1.2
- dev: true
-
- /@types/react@18.2.17:
- resolution: {integrity: sha512-u+e7OlgPPh+aryjOm5UJMX32OvB2E3QASOAqVMY6Ahs90djagxwv2ya0IctglNbNTexC12qCSMZG47KPfy1hAA==}
- dependencies:
- '@types/prop-types': 15.7.5
- '@types/scheduler': 0.16.3
- csstype: 3.1.2
+ '@types/scheduler': 0.16.6
+ csstype: 3.1.3
dev: true
/@types/react@18.2.37:
@@ -9110,7 +7830,7 @@ packages:
dependencies:
'@types/prop-types': 15.7.10
'@types/scheduler': 0.16.6
- csstype: 3.1.2
+ csstype: 3.1.3
dev: true
/@types/resolve@1.17.1:
@@ -9133,10 +7853,6 @@ packages:
'@types/node': 12.20.55
dev: false
- /@types/scheduler@0.16.3:
- resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
- dev: true
-
/@types/scheduler@0.16.6:
resolution: {integrity: sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==}
dev: true
@@ -9145,14 +7861,6 @@ packages:
resolution: {integrity: sha512-Nh76NUqvfsZHG5ot5gMlHNNHQvbRvv5UpM4FH3K1HuUGeq4scNlRoKVKSOP/EGIYHhJ2IUXyQc+38jvZLxfB2Q==}
dev: true
- /@types/semver@7.5.0:
- resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==}
- dev: true
-
- /@types/semver@7.5.3:
- resolution: {integrity: sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==}
- dev: true
-
/@types/semver@7.5.6:
resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==}
dev: true
@@ -9198,12 +7906,6 @@ packages:
'@types/node': 12.20.55
dev: false
- /@types/testing-library__jest-dom@5.14.9:
- resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==}
- dependencies:
- '@types/jest': 29.5.3
- dev: true
-
/@types/ttf2eot@2.0.0:
resolution: {integrity: sha512-L8qPOoITQYiSW+ubfY2pMgY2vGTyM2tHP4rbtoq78xJpQAQcVsPJV3uC7R8fUPYMGSC1K22zXA8uQv777padrQ==}
dependencies:
@@ -9231,7 +7933,6 @@ packages:
/@types/web-bluetooth@0.0.20:
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- dev: true
/@types/ws@8.5.5:
resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==}
@@ -9249,12 +7950,6 @@ packages:
'@types/yargs-parser': 21.0.0
dev: true
- /@types/yargs@16.0.5:
- resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
- dependencies:
- '@types/yargs-parser': 21.0.0
- dev: true
-
/@types/yargs@17.0.24:
resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==}
dependencies:
@@ -9269,7 +7964,7 @@ packages:
dev: true
optional: true
- /@typescript-eslint/eslint-plugin@5.48.2(@typescript-eslint/parser@5.48.2)(eslint@8.46.0)(typescript@4.6.4):
+ /@typescript-eslint/eslint-plugin@5.48.2(@typescript-eslint/parser@5.48.2)(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-sR0Gja9Ky1teIq4qJOl0nC+Tk64/uYdX+mi+5iB//MH8gwyx8e3SOyhEzeLZEFEEfCaLf8KJq+Bd/6je1t+CAg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -9280,13 +7975,13 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.48.2(eslint@8.46.0)(typescript@4.6.4)
+ '@typescript-eslint/parser': 5.48.2(eslint@8.56.0)(typescript@4.6.4)
'@typescript-eslint/scope-manager': 5.48.2
- '@typescript-eslint/type-utils': 5.48.2(eslint@8.46.0)(typescript@4.6.4)
- '@typescript-eslint/utils': 5.48.2(eslint@8.46.0)(typescript@4.6.4)
+ '@typescript-eslint/type-utils': 5.48.2(eslint@8.56.0)(typescript@4.6.4)
+ '@typescript-eslint/utils': 5.48.2(eslint@8.56.0)(typescript@4.6.4)
debug: 4.3.4
- eslint: 8.46.0
- ignore: 5.2.4
+ eslint: 8.56.0
+ ignore: 5.3.0
natural-compare-lite: 1.4.0
regexpp: 3.2.0
semver: 7.5.4
@@ -9325,25 +8020,25 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/experimental-utils@5.3.0(eslint@8.46.0)(typescript@4.6.4):
+ /@typescript-eslint/experimental-utils@5.3.0(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-NFVxYTjKj69qB0FM+piah1x3G/63WB8vCBMnlnEHUsiLzXSTWb9FmFn36FD9Zb4APKBLY3xRArOGSMQkuzTF1w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
dependencies:
- '@types/json-schema': 7.0.12
+ '@types/json-schema': 7.0.15
'@typescript-eslint/scope-manager': 5.3.0
'@typescript-eslint/types': 5.3.0
'@typescript-eslint/typescript-estree': 5.3.0(typescript@4.6.4)
- eslint: 8.46.0
+ eslint: 8.56.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0(eslint@8.46.0)
+ eslint-utils: 3.0.0(eslint@8.56.0)
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/parser@5.48.2(eslint@8.46.0)(typescript@4.6.4):
+ /@typescript-eslint/parser@5.48.2(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-38zMsKsG2sIuM5Oi/olurGwYJXzmtdsHhn5mI/pQogP+BjYVkK5iRazCQ8RGS0V+YLk282uWElN70zAAUmaYHw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -9357,7 +8052,7 @@ packages:
'@typescript-eslint/types': 5.48.2
'@typescript-eslint/typescript-estree': 5.48.2(typescript@4.6.4)
debug: 4.3.4
- eslint: 8.46.0
+ eslint: 8.56.0
typescript: 4.6.4
transitivePeerDependencies:
- supports-color
@@ -9408,7 +8103,7 @@ packages:
'@typescript-eslint/visitor-keys': 6.14.0
dev: true
- /@typescript-eslint/type-utils@5.48.2(eslint@8.46.0)(typescript@4.6.4):
+ /@typescript-eslint/type-utils@5.48.2(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -9419,9 +8114,9 @@ packages:
optional: true
dependencies:
'@typescript-eslint/typescript-estree': 5.48.2(typescript@4.6.4)
- '@typescript-eslint/utils': 5.48.2(eslint@8.46.0)(typescript@4.6.4)
+ '@typescript-eslint/utils': 5.48.2(eslint@8.56.0)(typescript@4.6.4)
debug: 4.3.4
- eslint: 8.46.0
+ eslint: 8.56.0
tsutils: 3.21.0(typescript@4.6.4)
typescript: 4.6.4
transitivePeerDependencies:
@@ -9526,20 +8221,20 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/utils@5.48.2(eslint@8.46.0)(typescript@4.6.4):
+ /@typescript-eslint/utils@5.48.2(eslint@8.56.0)(typescript@4.6.4):
resolution: {integrity: sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow==}
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.12
- '@types/semver': 7.5.0
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.5.6
'@typescript-eslint/scope-manager': 5.48.2
'@typescript-eslint/types': 5.48.2
'@typescript-eslint/typescript-estree': 5.48.2(typescript@4.6.4)
- eslint: 8.46.0
+ eslint: 8.56.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0(eslint@8.46.0)
+ eslint-utils: 3.0.0(eslint@8.56.0)
semver: 7.5.4
transitivePeerDependencies:
- supports-color
@@ -9599,7 +8294,7 @@ packages:
dependencies:
'@mapbox/node-pre-gyp': 1.0.11
'@rollup/pluginutils': 4.2.1
- acorn: 8.11.2
+ acorn: 8.11.3
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
@@ -9617,67 +8312,65 @@ packages:
resolution: {integrity: sha512-aurBNmMo0kz1O4qRoY+FM4epSA39y3ShWGuqfLRA/3z0oEJAdtoSfgA3aO98/PCCHAqMaduLxIxErWrVKIFzXA==}
engines: {node: '>=12.0.0'}
dependencies:
- '@babel/core': 7.22.9
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.7)
'@rollup/pluginutils': 4.2.1
react-refresh: 0.13.0
- resolve: 1.22.3
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
dev: true
- /@vitejs/plugin-react@2.2.0(vite@4.5.0):
- resolution: {integrity: sha512-FFpefhvExd1toVRlokZgxgy2JtnBOdp4ZDsq7ldCWaqGSGn9UhWMAVm/1lxPL14JfNS5yGz+s9yFrQY6shoStA==}
+ /@vitejs/plugin-react@4.2.1(vite@5.0.10):
+ resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- vite: ^3.0.0
+ vite: ^4.2.0 || ^5.0.0
dependencies:
- '@babel/core': 7.23.3
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.3)
- magic-string: 0.26.7
+ '@babel/core': 7.23.7
+ '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.7)
+ '@types/babel__core': 7.20.5
react-refresh: 0.14.0
- vite: 4.5.0(@types/node@20.9.2)
+ vite: 5.0.10
transitivePeerDependencies:
- supports-color
dev: true
- /@vitejs/plugin-vue2@2.2.0(vite@4.5.0)(vue@2.7.14):
+ /@vitejs/plugin-vue2@2.2.0(vite@5.0.10)(vue@2.7.14):
resolution: {integrity: sha512-1km7zEuZ/9QRPvzXSjikbTYGQPG86Mq1baktpC4sXqsXlb02HQKfi+fl8qVS703JM7cgm24Ga9j+RwKmvFn90A==}
engines: {node: ^14.18.0 || >= 16.0.0}
peerDependencies:
vite: ^3.0.0 || ^4.0.0
vue: ^2.7.0-0
dependencies:
- vite: 4.5.0(@types/node@20.9.2)
+ vite: 5.0.10
vue: 2.7.14
dev: true
- /@vitejs/plugin-vue@3.2.0(vite@4.5.0)(vue@3.2.45):
- resolution: {integrity: sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==}
+ /@vitejs/plugin-vue@4.5.0(vite@5.0.10)(vue@3.4.3):
+ resolution: {integrity: sha512-a2WSpP8X8HTEww/U00bU4mX1QpLINNuz/2KMNpLsdu3BzOpak3AGI1CJYBTXcc4SPhaD0eNRUp7IyQK405L5dQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- vite: ^3.0.0
+ vite: ^4.0.0 || ^5.0.0
vue: ^3.2.25
dependencies:
- vite: 4.5.0(@types/node@20.9.2)
- vue: 3.2.45
+ vite: 5.0.10
+ vue: 3.4.3(typescript@4.9.5)
dev: true
- /@vitejs/plugin-vue@4.5.0(vite@5.0.2)(vue@3.3.8):
- resolution: {integrity: sha512-a2WSpP8X8HTEww/U00bU4mX1QpLINNuz/2KMNpLsdu3BzOpak3AGI1CJYBTXcc4SPhaD0eNRUp7IyQK405L5dQ==}
+ /@vitejs/plugin-vue@4.6.2(vite@5.0.10)(vue@3.4.3):
+ resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.0.0 || ^5.0.0
vue: ^3.2.25
dependencies:
- vite: 5.0.2
- vue: 3.3.8(typescript@4.9.5)
+ vite: 5.0.10
+ vue: 3.4.3(typescript@4.9.5)
dev: true
/@vitest/expect@0.32.4:
@@ -9688,11 +8381,19 @@ packages:
chai: 4.3.10
dev: true
- /@vitest/expect@1.0.4:
- resolution: {integrity: sha512-/NRN9N88qjg3dkhmFcCBwhn/Ie4h064pY3iv7WLRsDJW7dXnEgeoa8W9zy7gIPluhz6CkgqiB3HmpIXgmEY5dQ==}
+ /@vitest/expect@0.34.2:
+ resolution: {integrity: sha512-EZm2dMNlLyIfDMha17QHSQcg2KjeAZaXd65fpPzXY5bvnfx10Lcaz3N55uEe8PhF+w4pw+hmrlHLLlRn9vkBJg==}
+ dependencies:
+ '@vitest/spy': 0.34.2
+ '@vitest/utils': 0.34.2
+ chai: 4.3.10
+ dev: true
+
+ /@vitest/expect@1.1.1:
+ resolution: {integrity: sha512-Qpw01C2Hyb3085jBkOJLQ7HRX0Ncnh2qV4p+xWmmhcIUlMykUF69zsnZ1vPmAjZpomw9+5tWEGOQ0GTfR8U+kA==}
dependencies:
- '@vitest/spy': 1.0.4
- '@vitest/utils': 1.0.4
+ '@vitest/spy': 1.1.1
+ '@vitest/utils': 1.1.1
chai: 4.3.10
dev: true
@@ -9704,10 +8405,18 @@ packages:
pathe: 1.1.1
dev: true
- /@vitest/runner@1.0.4:
- resolution: {integrity: sha512-rhOQ9FZTEkV41JWXozFM8YgOqaG9zA7QXbhg5gy6mFOVqh4PcupirIJ+wN7QjeJt8S8nJRYuZH1OjJjsbxAXTQ==}
+ /@vitest/runner@0.34.2:
+ resolution: {integrity: sha512-8ydGPACVX5tK3Dl0SUwxfdg02h+togDNeQX3iXVFYgzF5odxvaou7HnquALFZkyVuYskoaHUOqOyOLpOEj5XTA==}
+ dependencies:
+ '@vitest/utils': 0.34.2
+ p-limit: 4.0.0
+ pathe: 1.1.1
+ dev: true
+
+ /@vitest/runner@1.1.1:
+ resolution: {integrity: sha512-8HokyJo1SnSi3uPFKfWm/Oq1qDwLC4QDcVsqpXIXwsRPAg3gIDh8EbZ1ri8cmQkBxdOu62aOF9B4xcqJhvt4xQ==}
dependencies:
- '@vitest/utils': 1.0.4
+ '@vitest/utils': 1.1.1
p-limit: 5.0.0
pathe: 1.1.1
dev: true
@@ -9720,8 +8429,16 @@ packages:
pretty-format: 29.7.0
dev: true
- /@vitest/snapshot@1.0.4:
- resolution: {integrity: sha512-vkfXUrNyNRA/Gzsp2lpyJxh94vU2OHT1amoD6WuvUAA12n32xeVZQ0KjjQIf8F6u7bcq2A2k969fMVxEsxeKYA==}
+ /@vitest/snapshot@0.34.2:
+ resolution: {integrity: sha512-qhQ+xy3u4mwwLxltS4Pd4SR+XHv4EajiTPNY3jkIBLUApE6/ce72neJPSUQZ7bL3EBuKI+NhvzhGj3n5baRQUQ==}
+ dependencies:
+ magic-string: 0.30.5
+ pathe: 1.1.1
+ pretty-format: 29.7.0
+ dev: true
+
+ /@vitest/snapshot@1.1.1:
+ resolution: {integrity: sha512-WnMHjv4VdHLbFGgCdVVvyRkRPnOKN75JJg+LLTdr6ah7YnL75W+7CTIMdzPEPzaDxA8r5yvSVlc1d8lH3yE28w==}
dependencies:
magic-string: 0.30.5
pathe: 1.1.1
@@ -9734,8 +8451,14 @@ packages:
tinyspy: 2.2.0
dev: true
- /@vitest/spy@1.0.4:
- resolution: {integrity: sha512-9ojTFRL1AJVh0hvfzAQpm0QS6xIS+1HFIw94kl/1ucTfGCaj1LV/iuJU4Y6cdR03EzPDygxTHwE1JOm+5RCcvA==}
+ /@vitest/spy@0.34.2:
+ resolution: {integrity: sha512-yd4L9OhfH6l0Av7iK3sPb3MykhtcRN5c5K5vm1nTbuN7gYn+yvUVVsyvzpHrjqS7EWqn9WsPJb7+0c3iuY60tA==}
+ dependencies:
+ tinyspy: 2.2.0
+ dev: true
+
+ /@vitest/spy@1.1.1:
+ resolution: {integrity: sha512-hDU2KkOTfFp4WFFPWwHFauddwcKuGQ7gF6Un/ZZkCogoAiTMN7/7YKvUDbywPZZ754iCQGjdUmXN3t4k0jm1IQ==}
dependencies:
tinyspy: 2.2.0
dev: true
@@ -9748,274 +8471,97 @@ packages:
pretty-format: 29.7.0
dev: true
- /@vitest/utils@1.0.4:
- resolution: {integrity: sha512-gsswWDXxtt0QvtK/y/LWukN7sGMYmnCcv1qv05CsY6cU/Y1zpGX1QuvLs+GO1inczpE6Owixeel3ShkjhYtGfA==}
+ /@vitest/utils@0.34.2:
+ resolution: {integrity: sha512-Lzw+kAsTPubhoQDp1uVAOP6DhNia1GMDsI9jgB0yMn+/nDaPieYQ88lKqz/gGjSHL4zwOItvpehec9OY+rS73w==}
dependencies:
diff-sequences: 29.6.3
loupe: 2.3.7
pretty-format: 29.7.0
dev: true
- /@vue/compiler-core@3.2.45:
- resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==}
+ /@vitest/utils@1.1.1:
+ resolution: {integrity: sha512-E9LedH093vST/JuBSyHLFMpxJKW3dLhe/flUSPFedoyj4wKiFX7Jm8gYLtOIiin59dgrssfmFv0BJ1u8P/LC/A==}
dependencies:
- '@babel/parser': 7.22.7
- '@vue/shared': 3.2.45
- estree-walker: 2.0.2
- source-map: 0.6.1
+ diff-sequences: 29.6.3
+ loupe: 2.3.7
+ pretty-format: 29.7.0
dev: true
- /@vue/compiler-core@3.3.4:
- resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==}
- dependencies:
- '@babel/parser': 7.23.4
- '@vue/shared': 3.3.4
- estree-walker: 2.0.2
- source-map-js: 1.0.2
- dev: false
-
- /@vue/compiler-core@3.3.8:
- resolution: {integrity: sha512-hN/NNBUECw8SusQvDSqqcVv6gWq8L6iAktUR0UF3vGu2OhzRqcOiAno0FmBJWwxhYEXRlQJT5XnoKsVq1WZx4g==}
+ /@vue/compiler-core@3.4.3:
+ resolution: {integrity: sha512-u8jzgFg0EDtSrb/hG53Wwh1bAOQFtc1ZCegBpA/glyvTlgHl+tq13o1zvRfLbegYUw/E4mSTGOiCnAJ9SJ+lsg==}
dependencies:
- '@babel/parser': 7.23.4
- '@vue/shared': 3.3.8
+ '@babel/parser': 7.23.6
+ '@vue/shared': 3.4.3
+ entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.0.2
- dev: true
-
- /@vue/compiler-dom@3.2.45:
- resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==}
- dependencies:
- '@vue/compiler-core': 3.2.45
- '@vue/shared': 3.2.45
- dev: true
-
- /@vue/compiler-dom@3.3.4:
- resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==}
- dependencies:
- '@vue/compiler-core': 3.3.4
- '@vue/shared': 3.3.4
- dev: false
- /@vue/compiler-dom@3.3.8:
- resolution: {integrity: sha512-+PPtv+p/nWDd0AvJu3w8HS0RIm/C6VGBIRe24b9hSyNWOAPEUosFZ5diwawwP8ip5sJ8n0Pe87TNNNHnvjs0FQ==}
+ /@vue/compiler-dom@3.4.3:
+ resolution: {integrity: sha512-oGF1E9/htI6JWj/lTJgr6UgxNCtNHbM6xKVreBWeZL9QhRGABRVoWGAzxmtBfSOd+w0Zi5BY0Es/tlJrN6WgEg==}
dependencies:
- '@vue/compiler-core': 3.3.8
- '@vue/shared': 3.3.8
- dev: true
+ '@vue/compiler-core': 3.4.3
+ '@vue/shared': 3.4.3
/@vue/compiler-sfc@2.7.14:
resolution: {integrity: sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA==}
dependencies:
- '@babel/parser': 7.22.7
- postcss: 8.4.31
- source-map: 0.6.1
- dev: true
-
- /@vue/compiler-sfc@3.2.45:
- resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==}
- dependencies:
- '@babel/parser': 7.22.7
- '@vue/compiler-core': 3.2.45
- '@vue/compiler-dom': 3.2.45
- '@vue/compiler-ssr': 3.2.45
- '@vue/reactivity-transform': 3.2.45
- '@vue/shared': 3.2.45
- estree-walker: 2.0.2
- magic-string: 0.25.9
- postcss: 8.4.27
+ '@babel/parser': 7.23.6
+ postcss: 8.4.32
source-map: 0.6.1
dev: true
- /@vue/compiler-sfc@3.3.4:
- resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==}
- dependencies:
- '@babel/parser': 7.22.7
- '@vue/compiler-core': 3.3.4
- '@vue/compiler-dom': 3.3.4
- '@vue/compiler-ssr': 3.3.4
- '@vue/reactivity-transform': 3.3.4
- '@vue/shared': 3.3.4
- estree-walker: 2.0.2
- magic-string: 0.30.5
- postcss: 8.4.31
- source-map-js: 1.0.2
- dev: false
-
- /@vue/compiler-sfc@3.3.8:
- resolution: {integrity: sha512-WMzbUrlTjfYF8joyT84HfwwXo+8WPALuPxhy+BZ6R4Aafls+jDBnSz8PDz60uFhuqFbl3HxRfxvDzrUf3THwpA==}
+ /@vue/compiler-sfc@3.4.3:
+ resolution: {integrity: sha512-NuJqb5is9I4uzv316VRUDYgIlPZCG8D+ARt5P4t5UDShIHKL25J3TGZAUryY/Aiy0DsY7srJnZL5ryB6DD63Zw==}
dependencies:
- '@babel/parser': 7.23.4
- '@vue/compiler-core': 3.3.8
- '@vue/compiler-dom': 3.3.8
- '@vue/compiler-ssr': 3.3.8
- '@vue/reactivity-transform': 3.3.8
- '@vue/shared': 3.3.8
+ '@babel/parser': 7.23.6
+ '@vue/compiler-core': 3.4.3
+ '@vue/compiler-dom': 3.4.3
+ '@vue/compiler-ssr': 3.4.3
+ '@vue/shared': 3.4.3
estree-walker: 2.0.2
magic-string: 0.30.5
- postcss: 8.4.31
+ postcss: 8.4.32
source-map-js: 1.0.2
- dev: true
-
- /@vue/compiler-ssr@3.2.45:
- resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==}
- dependencies:
- '@vue/compiler-dom': 3.2.45
- '@vue/shared': 3.2.45
- dev: true
- /@vue/compiler-ssr@3.3.4:
- resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==}
+ /@vue/compiler-ssr@3.4.3:
+ resolution: {integrity: sha512-wnYQtMBkeFSxgSSQbYGQeXPhQacQiog2c6AlvMldQH6DB+gSXK/0F6DVXAJfEiuBSgBhUc8dwrrG5JQcqwalsA==}
dependencies:
- '@vue/compiler-dom': 3.3.4
- '@vue/shared': 3.3.4
- dev: false
-
- /@vue/compiler-ssr@3.3.8:
- resolution: {integrity: sha512-hXCqQL/15kMVDBuoBYpUnSYT8doDNwsjvm3jTefnXr+ytn294ySnT8NlsFHmTgKNjwpuFy7XVV8yTeLtNl/P6w==}
- dependencies:
- '@vue/compiler-dom': 3.3.8
- '@vue/shared': 3.3.8
- dev: true
+ '@vue/compiler-dom': 3.4.3
+ '@vue/shared': 3.4.3
/@vue/devtools-api@6.5.1:
resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
dev: true
- /@vue/reactivity-transform@3.2.45:
- resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==}
- dependencies:
- '@babel/parser': 7.22.7
- '@vue/compiler-core': 3.2.45
- '@vue/shared': 3.2.45
- estree-walker: 2.0.2
- magic-string: 0.25.9
- dev: true
-
- /@vue/reactivity-transform@3.3.4:
- resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==}
- dependencies:
- '@babel/parser': 7.23.4
- '@vue/compiler-core': 3.3.4
- '@vue/shared': 3.3.4
- estree-walker: 2.0.2
- magic-string: 0.30.5
- dev: false
-
- /@vue/reactivity-transform@3.3.8:
- resolution: {integrity: sha512-49CvBzmZNtcHua0XJ7GdGifM8GOXoUMOX4dD40Y5DxI3R8OUhMlvf2nvgUAcPxaXiV5MQQ1Nwy09ADpnLQUqRw==}
- dependencies:
- '@babel/parser': 7.23.4
- '@vue/compiler-core': 3.3.8
- '@vue/shared': 3.3.8
- estree-walker: 2.0.2
- magic-string: 0.30.5
- dev: true
-
- /@vue/reactivity@3.2.45:
- resolution: {integrity: sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==}
- dependencies:
- '@vue/shared': 3.2.45
- dev: true
-
- /@vue/reactivity@3.3.4:
- resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==}
- dependencies:
- '@vue/shared': 3.3.4
- dev: false
-
- /@vue/reactivity@3.3.8:
- resolution: {integrity: sha512-ctLWitmFBu6mtddPyOKpHg8+5ahouoTCRtmAHZAXmolDtuZXfjL2T3OJ6DL6ezBPQB1SmMnpzjiWjCiMYmpIuw==}
- dependencies:
- '@vue/shared': 3.3.8
- dev: true
-
- /@vue/runtime-core@3.2.45:
- resolution: {integrity: sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==}
- dependencies:
- '@vue/reactivity': 3.2.45
- '@vue/shared': 3.2.45
- dev: true
-
- /@vue/runtime-core@3.3.4:
- resolution: {integrity: sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==}
- dependencies:
- '@vue/reactivity': 3.3.4
- '@vue/shared': 3.3.4
- dev: false
-
- /@vue/runtime-core@3.3.8:
- resolution: {integrity: sha512-qurzOlb6q26KWQ/8IShHkMDOuJkQnQcTIp1sdP4I9MbCf9FJeGVRXJFr2mF+6bXh/3Zjr9TDgURXrsCr9bfjUw==}
- dependencies:
- '@vue/reactivity': 3.3.8
- '@vue/shared': 3.3.8
- dev: true
-
- /@vue/runtime-dom@3.2.45:
- resolution: {integrity: sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==}
+ /@vue/reactivity@3.4.3:
+ resolution: {integrity: sha512-q5f9HLDU+5aBKizXHAx0w4whkIANs1Muiq9R5YXm0HtorSlflqv9u/ohaMxuuhHWCji4xqpQ1eL04WvmAmGnFg==}
dependencies:
- '@vue/runtime-core': 3.2.45
- '@vue/shared': 3.2.45
- csstype: 2.6.21
- dev: true
-
- /@vue/runtime-dom@3.3.4:
- resolution: {integrity: sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==}
- dependencies:
- '@vue/runtime-core': 3.3.4
- '@vue/shared': 3.3.4
- csstype: 3.1.2
- dev: false
+ '@vue/shared': 3.4.3
- /@vue/runtime-dom@3.3.8:
- resolution: {integrity: sha512-Noy5yM5UIf9UeFoowBVgghyGGPIDPy1Qlqt0yVsUdAVbqI8eeMSsTqBtauaEoT2UFXUk5S64aWVNJN4MJ2vRdA==}
- dependencies:
- '@vue/runtime-core': 3.3.8
- '@vue/shared': 3.3.8
- csstype: 3.1.2
- dev: true
-
- /@vue/server-renderer@3.2.45(vue@3.2.45):
- resolution: {integrity: sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==}
- peerDependencies:
- vue: 3.2.45
+ /@vue/runtime-core@3.4.3:
+ resolution: {integrity: sha512-C1r6QhB1qY7D591RCSFhMULyzL9CuyrGc+3PpB0h7dU4Qqw6GNyo4BNFjHZVvsWncrUlKX3DIKg0Y7rNNr06NQ==}
dependencies:
- '@vue/compiler-ssr': 3.2.45
- '@vue/shared': 3.2.45
- vue: 3.2.45
- dev: true
+ '@vue/reactivity': 3.4.3
+ '@vue/shared': 3.4.3
- /@vue/server-renderer@3.3.4(vue@3.3.4):
- resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==}
- peerDependencies:
- vue: 3.3.4
+ /@vue/runtime-dom@3.4.3:
+ resolution: {integrity: sha512-wrsprg7An5Ec+EhPngWdPuzkp0BEUxAKaQtN9dPU/iZctPyD9aaXmVtehPJerdQxQale6gEnhpnfywNw3zOv2A==}
dependencies:
- '@vue/compiler-ssr': 3.3.4
- '@vue/shared': 3.3.4
- vue: 3.3.4
- dev: false
+ '@vue/runtime-core': 3.4.3
+ '@vue/shared': 3.4.3
+ csstype: 3.1.3
- /@vue/server-renderer@3.3.8(vue@3.3.8):
- resolution: {integrity: sha512-zVCUw7RFskvPuNlPn/8xISbrf0zTWsTSdYTsUTN1ERGGZGVnRxM2QZ3x1OR32+vwkkCm0IW6HmJ49IsPm7ilLg==}
+ /@vue/server-renderer@3.4.3(vue@3.4.3):
+ resolution: {integrity: sha512-BUxt8oVGMKKsqSkM1uU3d3Houyfy4WAc2SpSQRebNd+XJGATVkW/rO129jkyL+kpB/2VRKzE63zwf5RtJ3XuZw==}
peerDependencies:
- vue: 3.3.8
+ vue: 3.4.3
dependencies:
- '@vue/compiler-ssr': 3.3.8
- '@vue/shared': 3.3.8
- vue: 3.3.8(typescript@4.9.5)
- dev: true
-
- /@vue/shared@3.2.45:
- resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==}
- dev: true
-
- /@vue/shared@3.3.4:
- resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==}
- dev: false
+ '@vue/compiler-ssr': 3.4.3
+ '@vue/shared': 3.4.3
+ vue: 3.4.3(typescript@4.9.5)
- /@vue/shared@3.3.8:
- resolution: {integrity: sha512-8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw==}
- dev: true
+ /@vue/shared@3.4.3:
+ resolution: {integrity: sha512-rIwlkkP1n4uKrRzivAKPZIEkHiuwY5mmhMJ2nZKCBLz8lTUlE73rQh4n1OnnMurXt1vcUNyH4ZPfdh8QweTjpQ==}
/@vue/test-utils@1.3.0(vue-template-compiler@2.7.14)(vue@2.7.14):
resolution: {integrity: sha512-Xk2Xiyj2k5dFb8eYUKkcN9PzqZSppTlx7LaQWBbdA8tqh3jHr/KHX2/YLhNFc/xwDrgeLybqd+4ZCPJSGPIqeA==}
@@ -10030,50 +8576,55 @@ packages:
vue-template-compiler: 2.7.14(vue@2.7.14)
dev: true
- /@vue/test-utils@2.2.4(vue@3.2.45):
- resolution: {integrity: sha512-1JjLduJ84bFcuCt/1YLTNyktYeUHS/zA0u8iTmF6w6ul1K/nSvyKu/MC47YjdpZ4lI/hn7FH31B22kfz62e9wA==}
+ /@vue/test-utils@2.4.3(vue@3.4.3):
+ resolution: {integrity: sha512-F4K7mF+ad++VlTrxMJVRnenKSJmO6fkQt2wpRDiKDesQMkfpniGWsqEi/JevxGBo2qEkwwjvTUAoiGJLNx++CA==}
peerDependencies:
+ '@vue/server-renderer': ^3.0.1
vue: ^3.0.1
+ peerDependenciesMeta:
+ '@vue/server-renderer':
+ optional: true
dependencies:
- vue: 3.2.45
+ js-beautify: 1.14.9
+ vue: 3.4.3(typescript@4.9.5)
+ vue-component-type-helpers: 1.8.27
dev: true
- /@vueuse/components@10.3.0(vue@3.3.4):
+ /@vueuse/components@10.3.0(vue@3.4.3):
resolution: {integrity: sha512-EeZz3kjmJI7bH7JSxxMlLyk21LGl6GQjXfpl2n/GiI9QSJi+BVzIra5kEty5eM8McwAanx3e/HnK4drYTgFOWw==}
dependencies:
- '@vueuse/core': 10.3.0(vue@3.3.4)
- '@vueuse/shared': 10.3.0(vue@3.3.4)
- vue-demi: 0.14.5(vue@3.3.4)
+ '@vueuse/core': 10.3.0(vue@3.4.3)
+ '@vueuse/shared': 10.3.0(vue@3.4.3)
+ vue-demi: 0.14.6(vue@3.4.3)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
- /@vueuse/core@10.3.0(vue@3.3.4):
+ /@vueuse/core@10.3.0(vue@3.4.3):
resolution: {integrity: sha512-BEM5yxcFKb5btFjTSAFjTu5jmwoW66fyV9uJIP4wUXXU8aR5Hl44gndaaXp7dC5HSObmgbnR2RN+Un1p68Mf5Q==}
dependencies:
'@types/web-bluetooth': 0.0.17
'@vueuse/metadata': 10.3.0
- '@vueuse/shared': 10.3.0(vue@3.3.4)
- vue-demi: 0.14.5(vue@3.3.4)
+ '@vueuse/shared': 10.3.0(vue@3.4.3)
+ vue-demi: 0.14.6(vue@3.4.3)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
- /@vueuse/core@10.6.1(vue@3.3.8):
+ /@vueuse/core@10.6.1(vue@3.4.3):
resolution: {integrity: sha512-Pc26IJbqgC9VG1u6VY/xrXXfxD33hnvxBnKrLlA2LJlyHII+BSrRoTPJgGYq7qZOu61itITFUnm6QbacwZ4H8Q==}
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.6.1
- '@vueuse/shared': 10.6.1(vue@3.3.8)
- vue-demi: 0.14.6(vue@3.3.8)
+ '@vueuse/shared': 10.6.1(vue@3.4.3)
+ vue-demi: 0.14.6(vue@3.4.3)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- dev: true
- /@vueuse/integrations@10.6.1(focus-trap@7.5.4)(fuse.js@6.6.2)(vue@3.3.8):
+ /@vueuse/integrations@10.6.1(focus-trap@7.5.4)(fuse.js@6.6.2)(vue@3.4.3):
resolution: {integrity: sha512-mPDupuofMJ4DPmtX/FfP1MajmWRzYDv8WSaTCo8LQ5kFznjWgmUQ16ApjYqgMquqffNY6+IRMdMgosLDRZOSZA==}
peerDependencies:
async-validator: '*'
@@ -10114,11 +8665,11 @@ packages:
universal-cookie:
optional: true
dependencies:
- '@vueuse/core': 10.6.1(vue@3.3.8)
- '@vueuse/shared': 10.6.1(vue@3.3.8)
+ '@vueuse/core': 10.6.1(vue@3.4.3)
+ '@vueuse/shared': 10.6.1(vue@3.4.3)
focus-trap: 7.5.4
fuse.js: 6.6.2
- vue-demi: 0.14.6(vue@3.3.8)
+ vue-demi: 0.14.6(vue@3.4.3)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -10130,25 +8681,23 @@ packages:
/@vueuse/metadata@10.6.1:
resolution: {integrity: sha512-qhdwPI65Bgcj23e5lpGfQsxcy0bMjCAsUGoXkJ7DsoeDUdasbZ2DBa4dinFCOER3lF4gwUv+UD2AlA11zdzMFw==}
- dev: true
- /@vueuse/shared@10.3.0(vue@3.3.4):
+ /@vueuse/shared@10.3.0(vue@3.4.3):
resolution: {integrity: sha512-kGqCTEuFPMK4+fNWy6dUOiYmxGcUbtznMwBZLC1PubidF4VZY05B+Oht7Jh7/6x4VOWGpvu3R37WHi81cKpiqg==}
dependencies:
- vue-demi: 0.14.5(vue@3.3.4)
+ vue-demi: 0.14.6(vue@3.4.3)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
- /@vueuse/shared@10.6.1(vue@3.3.8):
+ /@vueuse/shared@10.6.1(vue@3.4.3):
resolution: {integrity: sha512-TECVDTIedFlL0NUfHWncf3zF9Gc4VfdxfQc8JFwoVZQmxpONhLxFrlm0eHQeidHj4rdTPL3KXJa0TZCk1wnc5Q==}
dependencies:
- vue-demi: 0.14.6(vue@3.3.8)
+ vue-demi: 0.14.6(vue@3.4.3)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- dev: true
/@webassemblyjs/ast@1.11.1:
resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
@@ -10261,11 +8810,6 @@ packages:
engines: {node: '>=10.0.0'}
dev: false
- /@xmldom/xmldom@0.8.10:
- resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==}
- engines: {node: '>=10.0.0'}
- dev: true
-
/@xtuc/ieee754@1.2.0:
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
dev: true
@@ -10294,6 +8838,7 @@ packages:
/abab@2.0.6:
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
+ deprecated: Use your platform's native atob() and btoa() methods instead
dev: true
/abbrev@1.1.1:
@@ -10306,10 +8851,6 @@ packages:
event-target-shim: 5.0.1
dev: true
- /absolute-path@0.0.0:
- resolution: {integrity: sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==}
- dev: true
-
/accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
@@ -10321,43 +8862,32 @@ packages:
/acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
dependencies:
- acorn: 8.11.2
- acorn-walk: 8.2.0
+ acorn: 8.11.3
+ acorn-walk: 8.3.0
dev: true
- /acorn-import-assertions@1.9.0(acorn@8.11.2):
+ /acorn-import-assertions@1.9.0(acorn@8.11.3):
resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
peerDependencies:
acorn: ^8
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
dev: true
- /acorn-jsx@5.3.2(acorn@8.11.2):
+ /acorn-jsx@5.3.2(acorn@8.11.3):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.11.2
-
- /acorn-walk@8.2.0:
- resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
- engines: {node: '>=0.4.0'}
- dev: true
+ acorn: 8.11.3
/acorn-walk@8.3.0:
resolution: {integrity: sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==}
engines: {node: '>=0.4.0'}
dev: true
- /acorn@8.10.0:
- resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
- engines: {node: '>=0.4.0'}
- hasBin: true
- dev: true
-
- /acorn@8.11.2:
- resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
+ /acorn@8.11.3:
+ resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -10604,7 +9134,7 @@ packages:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
- /ansi-to-vue3@0.1.2(vue@3.3.4):
+ /ansi-to-vue3@0.1.2(vue@3.4.3):
resolution: {integrity: sha512-mkfWeVNBKfmpoWLeLqmAeKQalqvOyAhhMnndqu1oJZEzz8tn56mbUqJC7OfvB8cOEg70ooKjmgeIZoI0i9cdxw==}
engines: {node: '>=16', npm: '>=7'}
peerDependencies:
@@ -10615,7 +9145,7 @@ packages:
dependencies:
anser: 2.1.1
escape-carriage: 1.3.1
- vue: 3.3.4
+ vue: 3.4.3(typescript@4.9.5)
dev: false
/any-base@1.1.0:
@@ -10725,14 +9255,17 @@ packages:
/arr-diff@4.0.0:
resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
engines: {node: '>=0.10.0'}
+ dev: false
/arr-flatten@1.1.0:
resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
engines: {node: '>=0.10.0'}
+ dev: false
/arr-union@3.1.0:
resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
engines: {node: '>=0.10.0'}
+ dev: false
/array-buffer-byte-length@1.0.0:
resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
@@ -10788,6 +9321,7 @@ packages:
/array-unique@0.3.2:
resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
engines: {node: '>=0.10.0'}
+ dev: false
/array.prototype.findlastindex@1.2.3:
resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
@@ -10860,9 +9394,10 @@ packages:
/assign-symbols@1.0.0:
resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
engines: {node: '>=0.10.0'}
+ dev: false
- /ast-types@0.14.2:
- resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
+ /ast-types@0.15.2:
+ resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==}
engines: {node: '>=4'}
dependencies:
tslib: 2.6.1
@@ -10917,19 +9452,19 @@ packages:
yaml-eslint-parser: 1.2.2
dev: false
- /autoprefixer@10.4.14(postcss@8.4.27):
+ /autoprefixer@10.4.14(postcss@8.4.32):
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.21.10
- caniuse-lite: 1.0.30001518
+ browserslist: 4.22.2
+ caniuse-lite: 1.0.30001572
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -10940,8 +9475,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.21.10
- caniuse-lite: 1.0.30001518
+ browserslist: 4.22.2
+ caniuse-lite: 1.0.30001572
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -10986,7 +9521,7 @@ packages:
resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
dev: true
- /babel-core@7.0.0-bridge.0(@babel/core@7.23.3):
+ /babel-core@7.0.0-bridge.0(@babel/core@7.23.7):
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -10994,7 +9529,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
dev: true
/babel-loader@8.2.5(@babel/core@7.16.12)(webpack@5.76.1):
@@ -11025,41 +9560,10 @@ packages:
istanbul-lib-instrument: 5.2.1
test-exclude: 6.0.0
transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-jsx-dom-expressions@0.36.10:
- resolution: {integrity: sha512-QA2k/14WGw+RgcGGnEuLWwnu4em6CGhjeXtjvgOYyFHYS2a+CzPeaVQHDOlfuiBcjq/3hWMspHMIMnPEOIzdBg==}
- peerDependencies:
- '@babel/core': ^7.20.12
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.3)
- '@babel/types': 7.22.5
- html-entities: 2.3.3
- validate-html-nesting: 1.2.2
- dev: true
-
- /babel-plugin-jsx-dom-expressions@0.36.10(@babel/core@7.22.9):
- resolution: {integrity: sha512-QA2k/14WGw+RgcGGnEuLWwnu4em6CGhjeXtjvgOYyFHYS2a+CzPeaVQHDOlfuiBcjq/3hWMspHMIMnPEOIzdBg==}
- peerDependencies:
- '@babel/core': ^7.20.12
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9)
- '@babel/types': 7.22.5
- html-entities: 2.3.3
- validate-html-nesting: 1.2.2
+ - supports-color
dev: true
- /babel-plugin-jsx-dom-expressions@0.37.9(@babel/core@7.23.3):
+ /babel-plugin-jsx-dom-expressions@0.37.9(@babel/core@7.23.7):
resolution: {integrity: sha512-6w+zs2i14fVanj4e1hXCU5cp+x0U0LJ5jScknpMZZUteHhwFRGJflHMVJ+xAcW7ku41FYjr7DgtK9mnc2SXlJg==}
peerDependencies:
'@babel/core': ^7.20.12
@@ -11067,10 +9571,10 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.7
'@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3)
- '@babel/types': 7.23.4
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
+ '@babel/types': 7.23.6
html-entities: 2.3.3
validate-html-nesting: 1.2.2
dev: true
@@ -11083,7 +9587,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/compat-data': 7.23.3
+ '@babel/compat-data': 7.23.5
'@babel/core': 7.16.12
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.16.12)
semver: 6.3.1
@@ -11091,23 +9595,7 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.9)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.23.3):
+ /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.23.7):
resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -11115,9 +9603,9 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.23.3
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.3)
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.7
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -11138,22 +9626,7 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.9)
- core-js-compat: 3.32.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.23.3):
+ /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -11161,8 +9634,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.3)
+ '@babel/core': 7.23.7
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.7)
core-js-compat: 3.32.0
transitivePeerDependencies:
- supports-color
@@ -11182,21 +9655,7 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.9):
- resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.9)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.23.3):
+ /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.23.7):
resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -11204,8 +9663,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.3)
+ '@babel/core': 7.23.7
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.7)
transitivePeerDependencies:
- supports-color
dev: true
@@ -11214,6 +9673,14 @@ packages:
resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
dev: true
+ /babel-plugin-transform-flow-enums@0.0.2:
+ resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
+ dependencies:
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.7)
+ transitivePeerDependencies:
+ - '@babel/core'
+ dev: true
+
/babel-plugin-transform-hook-names@1.0.2:
resolution: {integrity: sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==}
peerDependencies:
@@ -11231,97 +9698,36 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/plugin-proposal-class-properties': 7.18.6
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7)
'@babel/plugin-proposal-object-rest-spread': 7.20.7
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9)
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-classes': 7.22.6
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.16.12)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.9)
- babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
- dev: true
-
- /babel-preset-fbjs@3.4.0(@babel/core@7.23.3):
- resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.23.3
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.3)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.3)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.3)
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.23.3)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-display-name': 7.22.5
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.7)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
dev: true
- /babel-preset-solid@1.7.7:
- resolution: {integrity: sha512-tdxVzx3kgcIjNXAOmGRbzIhFBPeJjSakiN9yM+IYdL/+LtXNnbGqb0Va5tJb8Sjbk+QVEriovCyuzB5T7jeTvg==}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- babel-plugin-jsx-dom-expressions: 0.36.10
- dev: true
-
- /babel-preset-solid@1.7.7(@babel/core@7.22.9):
- resolution: {integrity: sha512-tdxVzx3kgcIjNXAOmGRbzIhFBPeJjSakiN9yM+IYdL/+LtXNnbGqb0Va5tJb8Sjbk+QVEriovCyuzB5T7jeTvg==}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- dependencies:
- '@babel/core': 7.22.9
- babel-plugin-jsx-dom-expressions: 0.36.10(@babel/core@7.22.9)
- dev: true
-
- /babel-preset-solid@1.8.6(@babel/core@7.23.3):
+ /babel-preset-solid@1.8.6(@babel/core@7.23.7):
resolution: {integrity: sha512-Ened42CHjU4EFkvNeS042/3Pm21yvMWn8p4G4ddzQTlKaMwSGGD1VciA/e7EshBVHJCcBj9vHiUd/r3A4qLPZA==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -11329,8 +9735,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.3
- babel-plugin-jsx-dom-expressions: 0.37.9(@babel/core@7.23.3)
+ '@babel/core': 7.23.7
+ babel-plugin-jsx-dom-expressions: 0.37.9(@babel/core@7.23.7)
dev: true
/balanced-match@1.0.2:
@@ -11355,6 +9761,7 @@ packages:
isobject: 3.0.1
mixin-deep: 1.3.2
pascalcase: 0.1.1
+ dev: false
/batch@0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
@@ -11485,6 +9892,7 @@ packages:
to-regex: 3.0.2
transitivePeerDependencies:
- supports-color
+ dev: false
/braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
@@ -11498,26 +9906,15 @@ packages:
dependencies:
duplexer: 0.1.1
- /browserslist@4.21.10:
- resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001518
- electron-to-chromium: 1.4.478
- node-releases: 2.0.13
- update-browserslist-db: 1.0.11(browserslist@4.21.10)
- dev: true
-
- /browserslist@4.22.1:
- resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
+ /browserslist@4.22.2:
+ resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001563
- electron-to-chromium: 1.4.589
- node-releases: 2.0.13
- update-browserslist-db: 1.0.13(browserslist@4.22.1)
+ caniuse-lite: 1.0.30001572
+ electron-to-chromium: 1.4.616
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.13(browserslist@4.22.2)
dev: true
/browserstack@1.6.1:
@@ -11590,13 +9987,13 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /c12@1.5.1:
- resolution: {integrity: sha512-BWZRJgDEveT8uI+cliCwvYSSSSvb4xKoiiu5S0jaDbKBopQLQF7E+bq9xKk1pTcG+mUa3yXuFO7bD9d8Lr9Xxg==}
+ /c12@1.6.1:
+ resolution: {integrity: sha512-fAZOi3INDvIbmjuwAVVggusyRTxwNdTAnwLay8IsXwhFzDwPPGzFxzrx6L55CPFGPulUSZI0eyFUvRDXveoE3g==}
dependencies:
chokidar: 3.5.3
defu: 6.1.3
dotenv: 16.3.1
- giget: 1.1.3
+ giget: 1.2.1
jiti: 1.21.0
mlly: 1.4.2
ohash: 1.1.3
@@ -11604,8 +10001,6 @@ packages:
perfect-debounce: 1.0.0
pkg-types: 1.0.3
rc9: 2.1.1
- transitivePeerDependencies:
- - supports-color
dev: true
/cac@6.7.14:
@@ -11696,6 +10091,7 @@ packages:
to-object-path: 0.3.0
union-value: 1.0.1
unset-value: 1.0.0
+ dev: false
/call-bind@1.0.5:
resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
@@ -11739,12 +10135,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /caniuse-lite@1.0.30001518:
- resolution: {integrity: sha512-rup09/e3I0BKjncL+FesTayKtPrdwKhUufQFd3riFw1hHg8JmIFoInYfB102cFcY/pPgGmdyl/iy+jgiDi2vdA==}
- dev: true
-
- /caniuse-lite@1.0.30001563:
- resolution: {integrity: sha512-na2WUmOxnwIZtwnFI2CZ/3er0wdNzU7hN+cPYz/z2ajHThnkWjNBOpEPP4n+4r2WPM847JaMotaJE3bnfzjyKw==}
+ /caniuse-lite@1.0.30001572:
+ resolution: {integrity: sha512-1Pbh5FLmn5y4+QhNyJE9j3/7dK44dGB83/ZMjv/qJk86TvDbjk0LosiZo0i0WB0Vx607qMX9jYrn1VLHCkN4rw==}
dev: true
/caseless@0.12.0:
@@ -11878,11 +10270,37 @@ packages:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
+ /chrome-launcher@0.15.2:
+ resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==}
+ engines: {node: '>=12.13.0'}
+ hasBin: true
+ dependencies:
+ '@types/node': 12.20.55
+ escape-string-regexp: 4.0.0
+ is-wsl: 2.2.0
+ lighthouse-logger: 1.4.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
dev: true
+ /chromium-edge-launcher@1.0.0:
+ resolution: {integrity: sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==}
+ dependencies:
+ '@types/node': 12.20.55
+ escape-string-regexp: 4.0.0
+ is-wsl: 2.2.0
+ lighthouse-logger: 1.4.2
+ mkdirp: 1.0.4
+ rimraf: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
dev: true
@@ -11915,6 +10333,7 @@ packages:
define-property: 0.2.5
isobject: 3.0.1
static-extend: 0.1.2
+ dev: false
/clean-set@1.1.2:
resolution: {integrity: sha512-cA8uCj0qSoG9e0kevyOWXwPaELRPVg5Pxp6WskLMwerx257Zfnh8Nl0JBH59d7wQzij2CK7qEfJQK3RjuKKIug==}
@@ -12024,7 +10443,7 @@ packages:
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
'@types/estree': 1.0.5
- acorn: 8.11.2
+ acorn: 8.11.3
estree-walker: 3.0.3
periscopic: 3.1.0
dev: true
@@ -12035,6 +10454,7 @@ packages:
dependencies:
map-visit: 1.0.0
object-visit: 1.0.1
+ dev: false
/color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
@@ -12103,10 +10523,6 @@ packages:
engines: {node: '>=16'}
dev: true
- /commander@2.13.0:
- resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==}
- dev: true
-
/commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
dev: true
@@ -12128,7 +10544,6 @@ packages:
/commander@9.5.0:
resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
engines: {node: ^12.20.0 || >=14}
- dev: false
/commenting@1.1.0:
resolution: {integrity: sha512-YeNK4tavZwtH7jEgK1ZINXzLKm6DZdEMfsaaieOsCAN0S8vsY7UeuO3Q7d/M018EFgE+IeUAuBOKkFccBZsUZA==}
@@ -12139,6 +10554,7 @@ packages:
/component-emitter@1.3.0:
resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
+ dev: false
/compress-commons@5.0.1:
resolution: {integrity: sha512-MPh//1cERdLtqwO3pOFLeXtpuai0Y2WCd5AhtKxznqM7WtaMYaOEMSgn45d9D10sIHSfIKE603HlOp8OPGrvag==}
@@ -12267,6 +10683,7 @@ packages:
/copy-descriptor@0.1.1:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
+ dev: false
/copy-template-dir@1.4.0:
resolution: {integrity: sha512-xkXSJhvKz4MfLbVkZ7GyCaFo4ciB3uKI/HHzkGwj1eyTH5+7RTFxW5CE0irWAZgV5oFcO9hd6+NVXAtY9hlo7Q==}
@@ -12302,7 +10719,7 @@ packages:
/core-js-compat@3.32.0:
resolution: {integrity: sha512-7a9a3D1k4UCVKnLhrgALyFcP7YCsLOQIxPd0dKjf/6GuPcgyiGP70ewWdCGrSK7evyhymi0qO4EqCmSJofDeYw==}
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.22.2
dev: true
/core-js-pure@3.32.0:
@@ -12381,21 +10798,10 @@ packages:
css-select: 4.3.0
parse5: 6.0.1
parse5-htmlparser2-tree-adapter: 6.0.1
- postcss: 8.4.31
+ postcss: 8.4.32
pretty-bytes: 5.6.0
dev: true
- /cross-spawn@6.0.5:
- resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
- engines: {node: '>=4.8'}
- dependencies:
- nice-try: 1.0.5
- path-key: 2.0.1
- semver: 5.7.2
- shebang-command: 1.2.0
- which: 1.3.1
- dev: true
-
/cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
@@ -12404,14 +10810,14 @@ packages:
shebang-command: 2.0.0
which: 2.0.2
- /css-blank-pseudo@3.0.3(postcss@8.4.27):
+ /css-blank-pseudo@3.0.3(postcss@8.4.32):
resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==}
engines: {node: ^12 || ^14 || >=16}
hasBin: true
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
@@ -12426,14 +10832,14 @@ packages:
postcss-selector-parser: 6.0.13
dev: true
- /css-has-pseudo@3.0.4(postcss@8.4.27):
+ /css-has-pseudo@3.0.4(postcss@8.4.32):
resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==}
engines: {node: ^12 || ^14 || >=16}
hasBin: true
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
@@ -12454,25 +10860,25 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.31)
- 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)
+ icss-utils: 5.1.0(postcss@8.4.32)
+ postcss: 8.4.32
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.32)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.32)
+ postcss-modules-scope: 3.0.0(postcss@8.4.32)
+ postcss-modules-values: 4.0.0(postcss@8.4.32)
postcss-value-parser: 4.2.0
semver: 7.5.4
webpack: 5.76.1(esbuild@0.14.22)
dev: true
- /css-prefers-color-scheme@6.0.3(postcss@8.4.27):
+ /css-prefers-color-scheme@6.0.3(postcss@8.4.32):
resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==}
engines: {node: ^12 || ^14 || >=16}
hasBin: true
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
dev: true
/css-prefers-color-scheme@6.0.3(postcss@8.4.5):
@@ -12584,12 +10990,8 @@ packages:
rrweb-cssom: 0.6.0
dev: true
- /csstype@2.6.21:
- resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
- dev: true
-
- /csstype@3.1.2:
- resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
+ /csstype@3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
/cubic2quad@1.2.1:
resolution: {integrity: sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==}
@@ -12720,7 +11122,7 @@ packages:
is-regex: 1.1.4
object-is: 1.1.5
object-keys: 1.1.1
- regexp.prototype.flags: 1.5.0
+ regexp.prototype.flags: 1.5.1
dev: true
/deep-equal@2.2.2:
@@ -12739,11 +11141,11 @@ packages:
object-is: 1.1.5
object-keys: 1.1.1
object.assign: 4.1.5
- regexp.prototype.flags: 1.5.0
+ regexp.prototype.flags: 1.5.1
side-channel: 1.0.4
which-boxed-primitive: 1.0.2
which-collection: 1.0.1
- which-typed-array: 1.1.11
+ which-typed-array: 1.1.13
dev: true
/deep-is@0.1.4:
@@ -12757,11 +11159,6 @@ packages:
kind-of: 3.2.2
rename-keys: 1.2.0
- /deepmerge@3.3.0:
- resolution: {integrity: sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
@@ -12807,12 +11204,14 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 0.1.6
+ dev: false
/define-property@1.0.0:
resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
engines: {node: '>=0.10.0'}
dependencies:
is-descriptor: 1.0.2
+ dev: false
/define-property@2.0.2:
resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
@@ -12820,10 +11219,7 @@ packages:
dependencies:
is-descriptor: 1.0.2
isobject: 3.0.1
-
- /defu@6.1.2:
- resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==}
- dev: true
+ dev: false
/defu@6.1.3:
resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==}
@@ -12887,6 +11283,15 @@ packages:
engines: {node: '>= 0.6.0'}
dev: true
+ /deprecated-react-native-prop-types@5.0.0:
+ resolution: {integrity: sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@react-native/normalize-colors': 0.73.2
+ invariant: 2.2.4
+ prop-types: 15.8.1
+ dev: true
+
/deprecation@2.3.1:
resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
dev: true
@@ -12895,10 +11300,6 @@ packages:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- /destr@2.0.1:
- resolution: {integrity: sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA==}
- dev: true
-
/destr@2.0.2:
resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==}
dev: true
@@ -12951,6 +11352,12 @@ packages:
engines: {node: '>=0.3.1'}
dev: true
+ /diffable-html@4.1.0:
+ resolution: {integrity: sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g==}
+ dependencies:
+ htmlparser2: 3.10.1
+ dev: true
+
/dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -13005,6 +11412,13 @@ packages:
void-elements: 2.0.1
dev: true
+ /dom-serializer@0.2.2:
+ resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
+ dependencies:
+ domelementtype: 2.3.0
+ entities: 2.2.0
+ dev: true
+
/dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
@@ -13024,16 +11438,27 @@ packages:
resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==}
dev: false
+ /domelementtype@1.3.1:
+ resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==}
+ dev: true
+
/domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
/domexception@4.0.0:
resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==}
engines: {node: '>=12'}
+ deprecated: Use your platform's native DOMException instead
dependencies:
webidl-conversions: 7.0.0
dev: true
+ /domhandler@2.4.2:
+ resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==}
+ dependencies:
+ domelementtype: 1.3.1
+ dev: true
+
/domhandler@4.3.1:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
@@ -13051,6 +11476,13 @@ packages:
resolution: {integrity: sha512-3VdM/SXBZX2omc9JF9nOPCtDaYQ67BGp5CoLpIQlO2KCAPETs8TcDHacF26jXadGbvUteZzRTeos2fhID5+ucQ==}
dev: false
+ /domutils@1.7.0:
+ resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
+ dependencies:
+ dom-serializer: 0.2.2
+ domelementtype: 1.3.1
+ dev: true
+
/domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
@@ -13120,12 +11552,8 @@ packages:
dependencies:
jake: 10.8.7
- /electron-to-chromium@1.4.478:
- resolution: {integrity: sha512-qjTA8djMXd+ruoODDFGnRCRBpID+AAfYWCyGtYTNhsuwxI19s8q19gbjKTwRS5z/LyVf5wICaIiPQGLekmbJbA==}
- dev: true
-
- /electron-to-chromium@1.4.589:
- resolution: {integrity: sha512-zF6y5v/YfoFIgwf2dDfAqVlPPsyQeWNpEWXbAlDUS8Ax4Z2VoiiZpAPC0Jm9hXEkJm2vIZpwB6rc4KnLTQffbQ==}
+ /electron-to-chromium@1.4.616:
+ resolution: {integrity: sha512-1n7zWYh8eS0L9Uy+GskE0lkBUNK83cXTVJI0pU3mGprFsbfSdAc15VTFbo+A+Bq4pwstmL30AVcEU3Fo463lNg==}
dev: true
/element-to-path@1.2.1:
@@ -13204,6 +11632,10 @@ packages:
resolution: {integrity: sha512-GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA==}
dev: true
+ /entities@1.1.2:
+ resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==}
+ dev: true
+
/entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
dev: true
@@ -13319,6 +11751,11 @@ packages:
/es-module-lexer@0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
+ dev: true
+
+ /es-module-lexer@1.4.1:
+ resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
+ dev: false
/es-set-tostringtag@2.0.2:
resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==}
@@ -13373,6 +11810,7 @@ packages:
cpu: [x64]
os: [android]
requiresBuild: true
+ dev: true
optional: true
/esbuild-android-arm64@0.14.22:
@@ -13399,6 +11837,7 @@ packages:
cpu: [arm64]
os: [android]
requiresBuild: true
+ dev: true
optional: true
/esbuild-darwin-64@0.14.22:
@@ -13425,6 +11864,7 @@ packages:
cpu: [x64]
os: [darwin]
requiresBuild: true
+ dev: true
optional: true
/esbuild-darwin-arm64@0.14.22:
@@ -13451,6 +11891,7 @@ packages:
cpu: [arm64]
os: [darwin]
requiresBuild: true
+ dev: true
optional: true
/esbuild-freebsd-64@0.14.22:
@@ -13477,6 +11918,7 @@ packages:
cpu: [x64]
os: [freebsd]
requiresBuild: true
+ dev: true
optional: true
/esbuild-freebsd-arm64@0.14.22:
@@ -13503,6 +11945,7 @@ packages:
cpu: [arm64]
os: [freebsd]
requiresBuild: true
+ dev: true
optional: true
/esbuild-linux-32@0.14.22:
@@ -13529,6 +11972,7 @@ packages:
cpu: [ia32]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/esbuild-linux-64@0.14.22:
@@ -13555,6 +11999,7 @@ packages:
cpu: [x64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/esbuild-linux-arm64@0.14.22:
@@ -13581,6 +12026,7 @@ packages:
cpu: [arm64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/esbuild-linux-arm@0.14.22:
@@ -13607,6 +12053,7 @@ packages:
cpu: [arm]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/esbuild-linux-mips64le@0.14.22:
@@ -13633,6 +12080,7 @@ packages:
cpu: [mips64el]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/esbuild-linux-ppc64le@0.14.22:
@@ -13659,6 +12107,7 @@ packages:
cpu: [ppc64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/esbuild-linux-riscv64@0.14.22:
@@ -13685,6 +12134,7 @@ packages:
cpu: [riscv64]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/esbuild-linux-s390x@0.14.22:
@@ -13711,6 +12161,7 @@ packages:
cpu: [s390x]
os: [linux]
requiresBuild: true
+ dev: true
optional: true
/esbuild-netbsd-64@0.14.22:
@@ -13737,6 +12188,7 @@ packages:
cpu: [x64]
os: [netbsd]
requiresBuild: true
+ dev: true
optional: true
/esbuild-openbsd-64@0.14.22:
@@ -13763,6 +12215,7 @@ packages:
cpu: [x64]
os: [openbsd]
requiresBuild: true
+ dev: true
optional: true
/esbuild-sunos-64@0.14.22:
@@ -13789,6 +12242,7 @@ packages:
cpu: [x64]
os: [sunos]
requiresBuild: true
+ dev: true
optional: true
/esbuild-wasm@0.14.22:
@@ -13827,6 +12281,7 @@ packages:
cpu: [ia32]
os: [win32]
requiresBuild: true
+ dev: true
optional: true
/esbuild-windows-64@0.14.22:
@@ -13853,6 +12308,7 @@ packages:
cpu: [x64]
os: [win32]
requiresBuild: true
+ dev: true
optional: true
/esbuild-windows-arm64@0.14.22:
@@ -13879,6 +12335,7 @@ packages:
cpu: [arm64]
os: [win32]
requiresBuild: true
+ dev: true
optional: true
/esbuild@0.14.22:
@@ -13966,6 +12423,7 @@ packages:
esbuild-windows-32: 0.15.18
esbuild-windows-64: 0.15.18
esbuild-windows-arm64: 0.15.18
+ dev: true
/esbuild@0.18.20:
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
@@ -13997,65 +12455,35 @@ packages:
'@esbuild/win32-x64': 0.18.20
dev: true
- /esbuild@0.19.6:
- resolution: {integrity: sha512-Xl7dntjA2OEIvpr9j0DVxxnog2fyTGnyVoQXAMQI6eR3mf9zCQds7VIKUDCotDgE/p4ncTgeRqgX8t5d6oP4Gw==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.19.6
- '@esbuild/android-arm64': 0.19.6
- '@esbuild/android-x64': 0.19.6
- '@esbuild/darwin-arm64': 0.19.6
- '@esbuild/darwin-x64': 0.19.6
- '@esbuild/freebsd-arm64': 0.19.6
- '@esbuild/freebsd-x64': 0.19.6
- '@esbuild/linux-arm': 0.19.6
- '@esbuild/linux-arm64': 0.19.6
- '@esbuild/linux-ia32': 0.19.6
- '@esbuild/linux-loong64': 0.19.6
- '@esbuild/linux-mips64el': 0.19.6
- '@esbuild/linux-ppc64': 0.19.6
- '@esbuild/linux-riscv64': 0.19.6
- '@esbuild/linux-s390x': 0.19.6
- '@esbuild/linux-x64': 0.19.6
- '@esbuild/netbsd-x64': 0.19.6
- '@esbuild/openbsd-x64': 0.19.6
- '@esbuild/sunos-x64': 0.19.6
- '@esbuild/win32-arm64': 0.19.6
- '@esbuild/win32-ia32': 0.19.6
- '@esbuild/win32-x64': 0.19.6
- dev: true
-
- /esbuild@0.19.9:
- resolution: {integrity: sha512-U9CHtKSy+EpPsEBa+/A2gMs/h3ylBC0H0KSqIg7tpztHerLi6nrrcoUJAkNCEPumx8yJ+Byic4BVwHgRbN0TBg==}
+ /esbuild@0.19.11:
+ resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.19.9
- '@esbuild/android-arm64': 0.19.9
- '@esbuild/android-x64': 0.19.9
- '@esbuild/darwin-arm64': 0.19.9
- '@esbuild/darwin-x64': 0.19.9
- '@esbuild/freebsd-arm64': 0.19.9
- '@esbuild/freebsd-x64': 0.19.9
- '@esbuild/linux-arm': 0.19.9
- '@esbuild/linux-arm64': 0.19.9
- '@esbuild/linux-ia32': 0.19.9
- '@esbuild/linux-loong64': 0.19.9
- '@esbuild/linux-mips64el': 0.19.9
- '@esbuild/linux-ppc64': 0.19.9
- '@esbuild/linux-riscv64': 0.19.9
- '@esbuild/linux-s390x': 0.19.9
- '@esbuild/linux-x64': 0.19.9
- '@esbuild/netbsd-x64': 0.19.9
- '@esbuild/openbsd-x64': 0.19.9
- '@esbuild/sunos-x64': 0.19.9
- '@esbuild/win32-arm64': 0.19.9
- '@esbuild/win32-ia32': 0.19.9
- '@esbuild/win32-x64': 0.19.9
- dev: true
+ '@esbuild/aix-ppc64': 0.19.11
+ '@esbuild/android-arm': 0.19.11
+ '@esbuild/android-arm64': 0.19.11
+ '@esbuild/android-x64': 0.19.11
+ '@esbuild/darwin-arm64': 0.19.11
+ '@esbuild/darwin-x64': 0.19.11
+ '@esbuild/freebsd-arm64': 0.19.11
+ '@esbuild/freebsd-x64': 0.19.11
+ '@esbuild/linux-arm': 0.19.11
+ '@esbuild/linux-arm64': 0.19.11
+ '@esbuild/linux-ia32': 0.19.11
+ '@esbuild/linux-loong64': 0.19.11
+ '@esbuild/linux-mips64el': 0.19.11
+ '@esbuild/linux-ppc64': 0.19.11
+ '@esbuild/linux-riscv64': 0.19.11
+ '@esbuild/linux-s390x': 0.19.11
+ '@esbuild/linux-x64': 0.19.11
+ '@esbuild/netbsd-x64': 0.19.11
+ '@esbuild/openbsd-x64': 0.19.11
+ '@esbuild/sunos-x64': 0.19.11
+ '@esbuild/win32-arm64': 0.19.11
+ '@esbuild/win32-ia32': 0.19.11
+ '@esbuild/win32-x64': 0.19.11
/esbuild@0.9.7:
resolution: {integrity: sha512-VtUf6aQ89VTmMLKrWHYG50uByMF4JQlVysb8dmg6cOgW8JnFCipmz7p+HNBl+RR3LLCuBxFGVauAe2wfnF9bLg==}
@@ -14146,15 +12574,6 @@ packages:
eslint: 8.56.0
dev: true
- /eslint-config-prettier@8.9.0(eslint@8.46.0):
- resolution: {integrity: sha512-+sbni7NfVXnOpnRadUA8S28AUlsZt9GjgFvABIRL9Hkn8KqNzOp+7Lw4QWtrwn20KzU3wqu1QoOj2m+7rKRqkA==}
- hasBin: true
- peerDependencies:
- eslint: '>=7.0.0'
- dependencies:
- eslint: 8.46.0
- dev: true
-
/eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.29.1):
resolution: {integrity: sha512-WdviM1Eu834zsfjHtcGHtGfcu+F30Od3V7I9Fi57uhBEwPkjDcii7/yW8jAT+gOhn4P/vOxxNAXbFAKsrrc15w==}
engines: {node: '>= 4'}
@@ -14289,7 +12708,7 @@ packages:
prettier-linter-helpers: 1.0.0
dev: true
- /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.9.0)(eslint@8.46.0)(prettier@2.8.8):
+ /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0)(eslint@8.56.0)(prettier@2.8.8):
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -14300,98 +12719,47 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.46.0
- eslint-config-prettier: 8.9.0(eslint@8.46.0)
+ eslint: 8.56.0
+ eslint-config-prettier: 8.10.0(eslint@8.56.0)
prettier: 2.8.8
prettier-linter-helpers: 1.0.0
dev: true
/eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
- engines: {node: '>=8.0.0'}
- dependencies:
- esrecurse: 4.3.0
- estraverse: 4.3.0
- dev: true
-
- /eslint-scope@7.2.2:
- resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- esrecurse: 4.3.0
- estraverse: 5.3.0
- dev: true
-
- /eslint-utils@3.0.0(eslint@8.46.0):
- resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
- engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
- peerDependencies:
- eslint: '>=5'
- dependencies:
- eslint: 8.46.0
- eslint-visitor-keys: 2.1.0
- dev: true
-
- /eslint-visitor-keys@2.1.0:
- resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
- engines: {node: '>=10'}
- dev: true
-
- /eslint-visitor-keys@3.4.2:
- resolution: {integrity: sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
-
- /eslint-visitor-keys@3.4.3:
- resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
- /eslint@8.46.0:
- resolution: {integrity: sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- hasBin: true
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0)
- '@eslint-community/regexpp': 4.6.2
- '@eslint/eslintrc': 2.1.1
- '@eslint/js': 8.46.0
- '@humanwhocodes/config-array': 0.11.10
- '@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
- doctrine: 3.0.0
- escape-string-regexp: 4.0.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.2
- espree: 9.6.1
- esquery: 1.5.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
- graphemer: 1.4.0
- ignore: 5.2.4
- 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.3
- strip-ansi: 6.0.1
- text-table: 0.2.0
- transitivePeerDependencies:
- - supports-color
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: true
+
+ /eslint-scope@7.2.2:
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+ dev: true
+
+ /eslint-utils@3.0.0(eslint@8.56.0):
+ resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
+ engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
+ peerDependencies:
+ eslint: '>=5'
+ dependencies:
+ eslint: 8.56.0
+ eslint-visitor-keys: 2.1.0
+ dev: true
+
+ /eslint-visitor-keys@2.1.0:
+ resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
+ engines: {node: '>=10'}
dev: true
+ /eslint-visitor-keys@3.4.3:
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
/eslint@8.56.0:
resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -14443,8 +12811,8 @@ packages:
resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.11.2
- acorn-jsx: 5.3.2(acorn@8.11.2)
+ acorn: 8.11.3
+ acorn-jsx: 5.3.2(acorn@8.11.3)
eslint-visitor-keys: 3.4.3
/esprima@4.0.1:
@@ -14524,19 +12892,6 @@ packages:
engines: {node: '>=0.8.x'}
dev: true
- /execa@1.0.0:
- resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
- engines: {node: '>=6'}
- dependencies:
- cross-spawn: 6.0.5
- get-stream: 4.1.0
- is-stream: 1.1.0
- npm-run-path: 2.0.2
- p-finally: 1.0.0
- signal-exit: 3.0.7
- strip-eof: 1.0.0
- dev: true
-
/execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
@@ -14604,18 +12959,7 @@ packages:
to-regex: 3.0.2
transitivePeerDependencies:
- supports-color
-
- /expect@29.6.2:
- resolution: {integrity: sha512-iAErsLxJ8C+S02QbLAwgSGSezLQK+XXRDt8IuFXFpwCNw2ECmzZSmjKcCaFVp5VRMk+WAvz6h6jokzEzBFZEuA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/expect-utils': 29.6.2
- '@types/node': 12.20.55
- jest-get-type: 29.4.3
- jest-matcher-utils: 29.6.2
- jest-message-util: 29.6.2
- jest-util: 29.6.2
- dev: true
+ dev: false
/exponential-backoff@3.1.1:
resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
@@ -14672,6 +13016,7 @@ packages:
dependencies:
assign-symbols: 1.0.0
is-extendable: 1.0.1
+ dev: false
/extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
@@ -14700,6 +13045,7 @@ packages:
to-regex: 3.0.2
transitivePeerDependencies:
- supports-color
+ dev: false
/extract-zip@2.0.1:
resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
@@ -14747,16 +13093,6 @@ packages:
micromatch: 4.0.5
dev: true
- /fast-glob@3.3.1:
- resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
- 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.5
-
/fast-glob@3.3.2:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
@@ -14782,6 +13118,13 @@ packages:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
dev: true
+ /fast-xml-parser@4.3.2:
+ resolution: {integrity: sha512-rmrXUXwbJedoXkStenj1kkljNF7ugn5ZjR9FJcwmCfcCbtOMDghPajbc+Tck6vE6F5XsDmx+Pr2le9fw8+pXBg==}
+ hasBin: true
+ dependencies:
+ strnum: 1.0.5
+ dev: true
+
/fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
@@ -14852,6 +13195,7 @@ packages:
is-number: 3.0.0
repeat-string: 1.6.1
to-regex-range: 2.1.1
+ dev: false
/fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
@@ -14944,16 +13288,16 @@ packages:
hasBin: true
dev: true
- /flatted@3.2.7:
- resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
- dev: true
-
/flatted@3.2.9:
resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
dev: true
- /flow-parser@0.121.0:
- resolution: {integrity: sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==}
+ /flow-enums-runtime@0.0.6:
+ resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==}
+ dev: true
+
+ /flow-parser@0.206.0:
+ resolution: {integrity: sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==}
engines: {node: '>=0.4.0'}
dev: true
@@ -14982,6 +13326,7 @@ packages:
/for-in@1.0.2:
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
engines: {node: '>=0.10.0'}
+ dev: false
/foreground-child@3.1.1:
resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
@@ -15033,6 +13378,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
map-cache: 0.2.2
+ dev: false
/fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
@@ -15043,21 +13389,13 @@ packages:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
dev: true
- /fs-extra@1.0.0:
- resolution: {integrity: sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 2.4.0
- klaw: 1.3.1
- dev: true
-
/fs-extra@11.1.1:
resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
engines: {node: '>=14.14'}
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
dev: false
/fs-extra@11.2.0:
@@ -15067,7 +13405,6 @@ packages:
graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.1
- dev: true
/fs-extra@8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
@@ -15196,13 +13533,6 @@ packages:
resolution: {integrity: sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA==}
dev: true
- /get-stream@4.1.0:
- resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
- engines: {node: '>=6'}
- dependencies:
- pump: 3.0.0
- dev: true
-
/get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
@@ -15232,11 +13562,11 @@ packages:
resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==}
dependencies:
resolve-pkg-maps: 1.0.0
- dev: true
/get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
engines: {node: '>=0.10.0'}
+ dev: false
/getpass@0.1.7:
resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
@@ -15251,19 +13581,18 @@ packages:
omggif: 1.0.10
dev: false
- /giget@1.1.3:
- resolution: {integrity: sha512-zHuCeqtfgqgDwvXlR84UNgnJDuUHQcNI5OqWqFxxuk2BshuKbYhJWdxBsEo4PvKqoGh23lUAIvBNpChMLv7/9Q==}
+ /giget@1.2.1:
+ resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==}
hasBin: true
dependencies:
- colorette: 2.0.20
+ citty: 0.1.5
+ consola: 3.2.3
defu: 6.1.3
- https-proxy-agent: 7.0.2
- mri: 1.2.0
- node-fetch-native: 1.4.1
+ node-fetch-native: 1.6.1
+ nypm: 0.3.4
+ ohash: 1.1.3
pathe: 1.1.1
tar: 6.2.0
- transitivePeerDependencies:
- - supports-color
dev: true
/glob-parent@5.1.2:
@@ -15360,13 +13689,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /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: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
@@ -15388,9 +13710,9 @@ packages:
'@types/glob': 7.2.0
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.1
+ fast-glob: 3.3.2
glob: 7.2.3
- ignore: 5.2.4
+ ignore: 5.3.0
merge2: 1.4.1
slash: 3.0.0
dev: true
@@ -15481,19 +13803,6 @@ packages:
unenv: 1.8.0
dev: true
- /h3@1.8.0:
- resolution: {integrity: sha512-057VY83X7Tg5n4XU2GV9M3dsCWUU4jtw2Lc/r4GjAcf9Jb6GI1mD5F8TCQHUcvLMEgtx6lbfobOFu7Vdmejihg==}
- dependencies:
- cookie-es: 1.0.0
- defu: 6.1.2
- destr: 2.0.1
- iron-webcrypto: 0.8.0
- radix3: 1.0.1
- ufo: 1.2.0
- uncrypto: 0.1.3
- unenv: 1.7.1
- dev: true
-
/h3@1.9.0:
resolution: {integrity: sha512-+F3ZqrNV/CFXXfZ2lXBINHi+rM4Xw3CDC5z2CDK3NMPocjonKipGLLDSkrqY9DOrioZNPTIdDMWfQKm//3X2DA==}
dependencies:
@@ -15579,6 +13888,7 @@ packages:
get-value: 2.0.6
has-values: 0.1.4
isobject: 2.1.0
+ dev: false
/has-value@1.0.0:
resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==}
@@ -15587,10 +13897,12 @@ packages:
get-value: 2.0.6
has-values: 1.0.0
isobject: 3.0.1
+ dev: false
/has-values@0.1.4:
resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
engines: {node: '>=0.10.0'}
+ dev: false
/has-values@1.0.0:
resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
@@ -15598,13 +13910,7 @@ packages:
dependencies:
is-number: 3.0.0
kind-of: 4.0.0
-
- /has@1.0.3:
- resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
- engines: {node: '>= 0.4.0'}
- dependencies:
- function-bind: 1.1.2
- dev: true
+ dev: false
/hasown@2.0.0:
resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
@@ -15703,18 +14009,24 @@ packages:
hasBin: true
dev: true
- /hermes-engine@0.11.0:
- resolution: {integrity: sha512-7aMUlZja2IyLYAcZ69NBnwJAR5ZOYlSllj0oMpx08a8HzxHOys0eKCzfphrf6D0vX1JGO1QQvVsQKe6TkYherw==}
+ /hermes-estree@0.15.0:
+ resolution: {integrity: sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==}
dev: true
- /hermes-estree@0.6.0:
- resolution: {integrity: sha512-2YTGzJCkhdmT6VuNprWjXnvTvw/3iPNw804oc7yknvQpNKo+vJGZmtvLLCghOZf0OwzKaNAzeIMp71zQbNl09w==}
+ /hermes-estree@0.18.0:
+ resolution: {integrity: sha512-WaIudIVKo5QWFqz1ta53HqSDuVxYST/MUuP9X7dqUpbHse3E2gzJq/7hEtgx84hh2XSNWN1AhYho3ThOA85uCA==}
dev: true
- /hermes-parser@0.6.0:
- resolution: {integrity: sha512-Vf58jBZca2+QBLR9h7B7mdg8oFz2g5ILz1iVouZ5DOrOrAfBmPfJjdjDT8jrO0f+iJ4/hSRrQHqHIjSnTaLUDQ==}
+ /hermes-parser@0.15.0:
+ resolution: {integrity: sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==}
dependencies:
- hermes-estree: 0.6.0
+ hermes-estree: 0.15.0
+ dev: true
+
+ /hermes-parser@0.18.0:
+ resolution: {integrity: sha512-DIIM6vsy30BU5hNkOXh6MR2r4ZAxVhbfyTnmfo/rqUf3KySlNWn9fWiOcpuGAdDN2o5sdPCpu6cep3a23d1Klw==}
+ dependencies:
+ hermes-estree: 0.18.0
dev: true
/hermes-profile-transformer@0.0.6:
@@ -15773,6 +14085,17 @@ packages:
/html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
+ /htmlparser2@3.10.1:
+ resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==}
+ dependencies:
+ domelementtype: 1.3.1
+ domhandler: 2.4.2
+ domutils: 1.7.0
+ entities: 1.1.2
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ dev: true
+
/htmlparser2@8.0.2:
resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
dependencies:
@@ -15970,13 +14293,13 @@ packages:
dependencies:
safer-buffer: 2.1.2
- /icss-utils@5.1.0(postcss@8.4.31):
+ /icss-utils@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: true
/ieee754@1.2.1:
@@ -15994,11 +14317,6 @@ packages:
engines: {node: '>= 4'}
dev: true
- /ignore@5.2.4:
- resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
- engines: {node: '>= 4'}
- dev: true
-
/ignore@5.3.0:
resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
engines: {node: '>= 4'}
@@ -16017,10 +14335,12 @@ packages:
dev: true
optional: true
- /image-size@0.6.3:
- resolution: {integrity: sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==}
- engines: {node: '>=4.0'}
+ /image-size@1.1.0:
+ resolution: {integrity: sha512-asnTHw2K8OlqT5kVnQwX+AGKQqpvLo95LbNzQ/C0ln3yzentZmAdd0ygoD004VC4Kkd4PV7J2iaPQkqwp9yuTw==}
+ engines: {node: '>=18.0.0'}
hasBin: true
+ dependencies:
+ queue: 6.0.2
dev: true
/image2uri@1.0.5:
@@ -16109,21 +14429,12 @@ packages:
mute-stream: 0.0.8
ora: 5.4.1
run-async: 2.4.1
- rxjs: 7.8.1
+ rxjs: 7.5.7
string-width: 4.2.3
strip-ansi: 6.0.1
through: 2.3.8
dev: true
- /internal-slot@1.0.5:
- resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.2
- has: 1.0.3
- side-channel: 1.0.4
- dev: true
-
/internal-slot@1.0.6:
resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
engines: {node: '>= 0.4'}
@@ -16173,10 +14484,6 @@ packages:
engines: {node: '>= 10'}
dev: true
- /iron-webcrypto@0.8.0:
- resolution: {integrity: sha512-gScdcWHjTGclCU15CIv2r069NoQrys1UeUFFfaO1hL++ytLHkVw7N5nXJmFf3J2LEDMz1PkrvC0m62JEeu1axQ==}
- dev: true
-
/iron-webcrypto@1.0.0:
resolution: {integrity: sha512-anOK1Mktt8U1Xi7fCM3RELTuYbnFikQY5VtrDj7kPgpejV7d43tWKhzgioO0zpkazLEL/j/iayRqnJhrGfqUsg==}
dev: true
@@ -16186,12 +14493,14 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
+ dev: false
/is-accessor-descriptor@1.0.0:
resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 6.0.3
+ dev: false
/is-arguments@1.1.1:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
@@ -16260,12 +14569,14 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
+ dev: false
/is-data-descriptor@1.0.0:
resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 6.0.3
+ dev: false
/is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
@@ -16281,6 +14592,7 @@ packages:
is-accessor-descriptor: 0.1.6
is-data-descriptor: 0.1.4
kind-of: 5.1.0
+ dev: false
/is-descriptor@1.0.2:
resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==}
@@ -16289,6 +14601,7 @@ packages:
is-accessor-descriptor: 1.0.0
is-data-descriptor: 1.0.0
kind-of: 6.0.3
+ dev: false
/is-directory@0.3.1:
resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
@@ -16309,6 +14622,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
is-plain-object: 2.0.4
+ dev: false
/is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
@@ -16371,6 +14685,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
+ dev: false
/is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
@@ -16467,11 +14782,6 @@ packages:
call-bind: 1.0.5
dev: true
- /is-stream@1.1.0:
- resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
@@ -16546,6 +14856,7 @@ packages:
/is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
+ dev: false
/is-wsl@1.1.0:
resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
@@ -16578,6 +14889,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
isarray: 1.0.0
+ dev: false
/isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
@@ -16596,7 +14908,7 @@ packages:
resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.1
@@ -16608,8 +14920,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.23.3
- '@babel/parser': 7.23.4
+ '@babel/core': 7.23.7
+ '@babel/parser': 7.23.6
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.1
@@ -16696,62 +15008,29 @@ packages:
engines: {node: '>= 6.9.x'}
dev: true
- /jest-diff@29.6.2:
- resolution: {integrity: sha512-t+ST7CB9GX5F2xKwhwCf0TAR17uNDiaPTZnVymP9lw0lssa9vG+AFyDZoeIHStU3WowFFwT+ky+er0WVl2yGhA==}
- 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.4.3
- pretty-format: 29.7.0
- dev: true
-
- /jest-get-type@26.3.0:
- resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==}
- engines: {node: '>= 10.14.2'}
- dev: true
-
- /jest-get-type@29.4.3:
- resolution: {integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==}
+ /jest-environment-node@29.7.0:
+ resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dev: true
-
- /jest-haste-map@27.5.1:
- resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@jest/types': 27.5.1
- '@types/graceful-fs': 4.1.6
+ '@jest/environment': 29.7.0
+ '@jest/fake-timers': 29.7.0
+ '@jest/types': 29.6.3
'@types/node': 12.20.55
- anymatch: 3.1.3
- fb-watchman: 2.0.2
- graceful-fs: 4.2.11
- jest-regex-util: 27.5.1
- jest-serializer: 27.5.1
- jest-util: 27.5.1
- jest-worker: 27.5.1
- micromatch: 4.0.5
- walker: 1.0.8
- optionalDependencies:
- fsevents: 2.3.3
+ jest-mock: 29.7.0
+ jest-util: 29.7.0
dev: true
- /jest-matcher-utils@29.6.2:
- resolution: {integrity: sha512-4LiAk3hSSobtomeIAzFTe+N8kL6z0JtF3n6I4fg29iIW7tt99R7ZcIFW34QkX+DuVrf+CUe6wuVOpm7ZKFJzZQ==}
+ /jest-get-type@29.6.3:
+ resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- chalk: 4.1.2
- jest-diff: 29.6.2
- jest-get-type: 29.4.3
- pretty-format: 29.7.0
dev: true
- /jest-message-util@29.6.2:
- resolution: {integrity: sha512-vnIGYEjoPSuRqV8W9t+Wow95SDp6KPX2Uf7EoeG9G99J2OVh7OSwpS4B6J0NfpEIpfkBNHlBZpA2rblEuEFhZQ==}
+ /jest-message-util@29.7.0:
+ resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/code-frame': 7.23.5
- '@jest/types': 29.6.1
+ '@jest/types': 29.6.3
'@types/stack-utils': 2.0.1
chalk: 4.1.2
graceful-fs: 4.2.11
@@ -16761,36 +15040,26 @@ packages:
stack-utils: 2.0.6
dev: true
- /jest-regex-util@27.5.1:
- resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- dev: true
-
- /jest-serializer@27.5.1:
- resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ /jest-mock@29.7.0:
+ resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
+ '@jest/types': 29.6.3
'@types/node': 12.20.55
- graceful-fs: 4.2.11
+ jest-util: 29.7.0
dev: true
- /jest-util@27.5.1:
- resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ /jest-serializer-html@7.1.0:
+ resolution: {integrity: sha512-xYL2qC7kmoYHJo8MYqJkzrl/Fdlx+fat4U1AqYg+kafqwcKPiMkOcjWHPKhueuNEgr+uemhGc+jqXYiwCyRyLA==}
dependencies:
- '@jest/types': 27.5.1
- '@types/node': 12.20.55
- chalk: 4.1.2
- ci-info: 3.8.0
- graceful-fs: 4.2.11
- picomatch: 2.3.1
+ diffable-html: 4.1.0
dev: true
- /jest-util@29.6.2:
- resolution: {integrity: sha512-3eX1qb6L88lJNCFlEADKOkjpXJQyZRiavX1INZ4tRnrBVr2COd3RgcTLyUiEXMNBlDU/cgYq6taUS0fExrWW4w==}
+ /jest-util@29.7.0:
+ resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.6.1
+ '@jest/types': 29.6.3
'@types/node': 12.20.55
chalk: 4.1.2
ci-info: 3.8.0
@@ -16798,16 +15067,16 @@ packages:
picomatch: 2.3.1
dev: true
- /jest-validate@26.6.2:
- resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==}
- engines: {node: '>= 10.14.2'}
+ /jest-validate@29.7.0:
+ resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 26.6.2
+ '@jest/types': 29.6.3
camelcase: 6.3.0
chalk: 4.1.2
- jest-get-type: 26.3.0
+ jest-get-type: 29.6.3
leven: 3.1.0
- pretty-format: 26.6.2
+ pretty-format: 29.7.0
dev: true
/jest-worker@27.5.1:
@@ -16819,9 +15088,14 @@ packages:
supports-color: 8.1.1
dev: true
- /jetifier@1.6.8:
- resolution: {integrity: sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==}
- hasBin: true
+ /jest-worker@29.7.0:
+ resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@types/node': 12.20.55
+ jest-util: 29.7.0
+ merge-stream: 2.0.0
+ supports-color: 8.1.1
dev: true
/jimp@0.16.13:
@@ -16851,6 +15125,7 @@ packages:
/joycon@3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
+ dev: true
/jpeg-js@0.4.4:
resolution: {integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==}
@@ -16888,16 +15163,16 @@ packages:
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
dev: true
- /jsc-android@250230.2.1:
- resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==}
+ /jsc-android@250231.0.0:
+ resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==}
dev: true
/jsc-safe-url@0.2.4:
resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
dev: true
- /jscodeshift@0.13.1:
- resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
+ /jscodeshift@0.14.0:
+ resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
hasBin: true
peerDependencies:
'@babel/preset-env': ^7.1.6
@@ -16905,23 +15180,23 @@ packages:
'@babel/preset-env':
optional: true
dependencies:
- '@babel/core': 7.23.3
- '@babel/parser': 7.23.4
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.3)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.3)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.3)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.23.3)
- '@babel/preset-flow': 7.22.5(@babel/core@7.23.3)
- '@babel/preset-typescript': 7.22.5(@babel/core@7.23.3)
- '@babel/register': 7.22.5(@babel/core@7.23.3)
- babel-core: 7.0.0-bridge.0(@babel/core@7.23.3)
+ '@babel/core': 7.23.7
+ '@babel/parser': 7.23.6
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/preset-flow': 7.22.5(@babel/core@7.23.7)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
+ '@babel/register': 7.22.5(@babel/core@7.23.7)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.23.7)
chalk: 4.1.2
- flow-parser: 0.121.0
+ flow-parser: 0.206.0
graceful-fs: 4.2.11
- micromatch: 3.1.10
+ micromatch: 4.0.5
neo-async: 2.6.2
node-dir: 0.1.17
- recast: 0.20.5
+ recast: 0.21.5
temp: 0.8.4
write-file-atomic: 2.4.3
transitivePeerDependencies:
@@ -16938,7 +15213,7 @@ packages:
optional: true
dependencies:
abab: 2.0.6
- acorn: 8.10.0
+ acorn: 8.11.3
acorn-globals: 7.0.1
cssom: 0.5.0
cssstyle: 2.3.0
@@ -16961,7 +15236,7 @@ packages:
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.13.0
+ ws: 8.15.1
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -17071,7 +15346,7 @@ packages:
resolution: {integrity: sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
eslint-visitor-keys: 3.4.3
espree: 9.6.1
semver: 7.5.4
@@ -17083,11 +15358,6 @@ packages:
/jsonc-parser@3.2.0:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
-
- /jsonfile@2.4.0:
- resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==}
- optionalDependencies:
- graceful-fs: 4.2.11
dev: true
/jsonfile@4.0.0:
@@ -17227,21 +15497,17 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
is-buffer: 1.1.6
+ dev: false
/kind-of@5.1.0:
resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
engines: {node: '>=0.10.0'}
+ dev: false
/kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- /klaw@1.3.1:
- resolution: {integrity: sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==}
- optionalDependencies:
- graceful-fs: 4.2.11
- dev: true
-
/kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
@@ -17354,6 +15620,15 @@ packages:
dependencies:
immediate: 3.0.6
+ /lighthouse-logger@1.4.2:
+ resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
+ dependencies:
+ debug: 2.6.9
+ marky: 1.2.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
@@ -17404,7 +15679,7 @@ packages:
mlly: 1.4.2
node-forge: 1.3.1
pathe: 1.1.1
- std-env: 3.6.0
+ std-env: 3.7.0
ufo: 1.3.2
untun: 0.1.3
uqr: 0.1.2
@@ -17549,7 +15824,7 @@ packages:
dependencies:
date-format: 4.0.14
debug: 4.3.4
- flatted: 3.2.7
+ flatted: 3.2.9
rfdc: 1.3.0
streamroller: 3.1.5
transitivePeerDependencies:
@@ -17583,14 +15858,9 @@ packages:
tslib: 2.6.1
dev: true
- /lru-cache@10.0.3:
- resolution: {integrity: sha512-B7gr+F6MkqB3uzINHXNctGieGsRTMwIBgxkp0yq/5BwcuDzD4A8wQpHQW6vDAm1uKSLQghmRdD9sKqf2vJ1cEg==}
- engines: {node: 14 || >=16.14}
-
/lru-cache@10.1.0:
resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==}
engines: {node: 14 || >=16.14}
- dev: true
/lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -17618,12 +15888,6 @@ packages:
sourcemap-codec: 1.4.8
dev: true
- /magic-string@0.25.9:
- resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
- dependencies:
- sourcemap-codec: 1.4.8
- dev: true
-
/magic-string@0.26.7:
resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
engines: {node: '>=12'}
@@ -17638,13 +15902,6 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.15
dev: true
- /magic-string@0.30.2:
- resolution: {integrity: sha512-lNZdu7pewtq/ZvWUp9Wpf/x7WzMTsR26TWV03BRZrXFsv+BI6dy8RAiKgm1uM/kyR0rCfUcqvOlXKG66KhIGug==}
- engines: {node: '>=12'}
- dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
- dev: true
-
/magic-string@0.30.5:
resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
engines: {node: '>=12'}
@@ -17759,17 +16016,23 @@ packages:
/map-cache@0.2.2:
resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
+ dev: false
/map-visit@1.0.0:
resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
engines: {node: '>=0.10.0'}
dependencies:
object-visit: 1.0.1
+ dev: false
/mark.js@8.11.1:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
dev: true
+ /marky@1.2.5:
+ resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==}
+ dev: true
+
/maxstache-stream@1.0.4:
resolution: {integrity: sha512-v8qlfPN0pSp7bdSoLo1NTjG43GXGqk5W2NWFnOCq2GlmFFqebGzPCjLKSbShuqIOVorOtZSAy7O/S1OCCRONUw==}
dependencies:
@@ -17845,229 +16108,118 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /metro-babel-transformer@0.70.4:
- resolution: {integrity: sha512-XUM2929qE2AR5iqNnMof80h5lDf6rEZWP9J47u2XQI41TZT5J3Ttk33OJ7/ysLhv7ZPYt/WLnjB8skf23UA+yw==}
- dependencies:
- '@babel/core': 7.23.3
- hermes-parser: 0.6.0
- metro-source-map: 0.70.4
- nullthrows: 1.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /metro-cache-key@0.70.4:
- resolution: {integrity: sha512-hZ5LMm54YCNmxxhKAnHdM9wGSji7bzyLWLSkJqY1u+yQjockQIEWR7uEFiBZ5up8K+eoiqmF5K8+VbrnZP8+Iw==}
- dev: true
-
- /metro-cache@0.70.4:
- resolution: {integrity: sha512-E78Psscwu3EHCwC+bGb9jXxFg8UL0zyWu5cjaBWrKa9NhIqiyCpUBrT0e9TfYxNdb7/OfMQUXW6oNm1HOZHPlg==}
- dependencies:
- metro-core: 0.70.4
- rimraf: 2.7.1
- dev: true
-
- /metro-config@0.70.4:
- resolution: {integrity: sha512-9ellClttQyXF5O487OiFNGxM87PSzsx0m61B7vdXzdyXhCwHk1a8J/8zn5WmOa9/Ix2dJ04N32NzeKgMWVhwQw==}
- dependencies:
- cosmiconfig: 5.2.1
- jest-validate: 26.6.2
- metro: 0.70.4
- metro-cache: 0.70.4
- metro-core: 0.70.4
- metro-runtime: 0.70.4
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - supports-color
- - utf-8-validate
- dev: true
-
- /metro-core@0.70.4:
- resolution: {integrity: sha512-g4o3TD/EHiNOEXkE3MsyqvspKoBuZ3KoJDQnS7NlSwWK4nG6xcw8UiW1W/YJOfDnn/EkXIq3XAUkUX4UWVXuuQ==}
- dependencies:
- jest-haste-map: 27.5.1
- lodash.throttle: 4.1.1
- metro-resolver: 0.70.4
- dev: true
-
- /metro-hermes-compiler@0.70.4:
- resolution: {integrity: sha512-Eor/8SIntD23kQxrhlrPegel+sg3e3xDEaNFOxL3Rljbozr1zFq9Pyd3RjK48BkbpGCZmgXSW1XUY1aqzbkePA==}
- dev: true
-
- /metro-inspector-proxy@0.70.4:
- resolution: {integrity: sha512-ZkJmVb8CSRVDk0jJX2b9r10KBBG0Qc4mtK3A/FicsnaZ02ZxTy+bnSMEkyW4fhjbHS6Y3h9aBTFOkrK/Jmy1lA==}
- hasBin: true
- dependencies:
- connect: 3.7.0
- debug: 2.6.9
- ws: 7.5.9
- yargs: 15.4.1
+ /metro-babel-transformer@0.80.2:
+ resolution: {integrity: sha512-QR+HCD5rswoLVMZOU95dda0XmrT3dDnm+pq+ql/Q6RCDBY0BUS7Z1l1mN9jq/MRBy2QOW+IKKgSMTIC9Khtbpw==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@babel/core': 7.23.7
+ hermes-parser: 0.18.0
+ nullthrows: 1.1.1
transitivePeerDependencies:
- - bufferutil
- supports-color
- - utf-8-validate
dev: true
- /metro-minify-uglify@0.70.4:
- resolution: {integrity: sha512-S/gtO75s/z6g8m1DOnZW1mm4ei2sTledowJ85rtBsZC8M7r/CAsSynVqkKkWjJ6Ro5TrlE7cfiTnQGojLXMWgg==}
+ /metro-cache-key@0.80.2:
+ resolution: {integrity: sha512-ldNEFiq9COBZSZOBgyHvil4dtIWZsJahbByGDh6f5jPrkj9cBih1rGeo9ix+MLl7aVh2cA3hHQjyponQsfXcnQ==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /metro-cache@0.80.2:
+ resolution: {integrity: sha512-ELz2GcXLDyT5w4awaL+6bb3X6Eg6RS5CcQ5CcXAgCCFqBwRuTBHkztK1rLyp7IX76Xb2wlz7781T9H4CCtxD5w==}
+ engines: {node: '>=18'}
dependencies:
- uglify-es: 3.3.9
+ metro-core: 0.80.2
+ rimraf: 3.0.2
dev: true
- /metro-react-native-babel-preset@0.70.4:
- resolution: {integrity: sha512-qcJuLqvjlKhrOOuQShhVzCjjp7kHZIXCL+ybnYBqOY2ALVCyR3aELH0aUtOztRpJYFnqAMDOJmGqNVi6cUd24g==}
- peerDependencies:
- '@babel/core': '*'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
+ /metro-config@0.80.2:
+ resolution: {integrity: sha512-3U7S3uakSwUyXp3E0V2mhLT+82EzIeBuOFav4mKNIq9dl9AW62x5o5e8q3bmyHwDWg+RZ8jIBkAURKrhS/eALw==}
+ engines: {node: '>=18'}
dependencies:
- '@babel/plugin-proposal-async-generator-functions': 7.20.7
- '@babel/plugin-proposal-class-properties': 7.18.6
- '@babel/plugin-proposal-export-default-from': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6
- '@babel/plugin-proposal-object-rest-spread': 7.20.7
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6
- '@babel/plugin-proposal-optional-chaining': 7.21.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-classes': 7.22.6
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.16.12)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-runtime': 7.22.9
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-typescript': 7.22.9
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/template': 7.22.15
- react-refresh: 0.4.3
+ connect: 3.7.0
+ cosmiconfig: 5.2.1
+ jest-validate: 29.7.0
+ metro: 0.80.2
+ metro-cache: 0.80.2
+ metro-core: 0.80.2
+ metro-runtime: 0.80.2
transitivePeerDependencies:
+ - bufferutil
+ - encoding
- supports-color
+ - utf-8-validate
dev: true
- /metro-react-native-babel-preset@0.70.4(@babel/core@7.23.3):
- resolution: {integrity: sha512-qcJuLqvjlKhrOOuQShhVzCjjp7kHZIXCL+ybnYBqOY2ALVCyR3aELH0aUtOztRpJYFnqAMDOJmGqNVi6cUd24g==}
- peerDependencies:
- '@babel/core': '*'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
+ /metro-core@0.80.2:
+ resolution: {integrity: sha512-RL1iHZlR+3tvrJIBE/W6YlwW7OH1ckcgCCEr7bxEqUTNRiraK2zTv2jJ4b7VS/Xftdzvungk8ls3FNem5MFrIw==}
+ engines: {node: '>=18'}
dependencies:
- '@babel/core': 7.23.3
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.3)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.3)
- '@babel/plugin-proposal-export-default-from': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.3)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.3)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.3)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.3)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.23.3)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-runtime': 7.22.9(@babel/core@7.23.3)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.23.3)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.3)
- '@babel/template': 7.22.15
- react-refresh: 0.4.3
- transitivePeerDependencies:
- - supports-color
+ lodash.throttle: 4.1.1
+ metro-resolver: 0.80.2
dev: true
- /metro-react-native-babel-transformer@0.70.4:
- resolution: {integrity: sha512-wDHPqzn0QJKGJIMucbyBb1nXMry1yN+/brsqcXSiyS04PerEU25UKb0KXYMGmjCoygxCs2K71nCF1PsscNOVMA==}
- peerDependencies:
- '@babel/core': '*'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
+ /metro-file-map@0.80.2:
+ resolution: {integrity: sha512-/GiFdE5nhtvviDPANH9j3SE6VG4j2DaaKia+0gzyVYwP+6Kjc2oADj6FCGFOXDdCizqeqASUSgEsp+06D8+tXw==}
+ engines: {node: '>=18'}
dependencies:
- babel-preset-fbjs: 3.4.0
- hermes-parser: 0.6.0
- metro-babel-transformer: 0.70.4
- metro-react-native-babel-preset: 0.70.4
- metro-source-map: 0.70.4
+ anymatch: 3.1.3
+ debug: 2.6.9
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
+ invariant: 2.2.4
+ jest-worker: 29.7.0
+ micromatch: 4.0.5
+ node-abort-controller: 3.1.1
nullthrows: 1.1.1
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /metro-resolver@0.70.4:
- resolution: {integrity: sha512-Dr+N54Av2raxP6IafBvIgwQKuYXbtfkDN0A4vwhiWM4exyQm+3eS8eRfByZKGYVAQ0iIK3WbXGpRo+pwhgj2yg==}
+ /metro-minify-terser@0.80.2:
+ resolution: {integrity: sha512-+0lN1uJsFKke+RaZVZE3vxD8vVuGDiH/roiUzTIktof2rBtBmXJAx+TYjy1SZQN48eHot9CaAXZ6MfiSVJiPew==}
+ engines: {node: '>=18'}
dependencies:
- absolute-path: 0.0.0
+ terser: 5.26.0
+ dev: true
+
+ /metro-resolver@0.80.2:
+ resolution: {integrity: sha512-0OmCsmlcBQWkJXx0YoYRTS+ArRT888WcgmgjwoJVQm+xdMRKuu67ihyF8EOpeVgOzbeo0IxVjkNmbJWOfficjA==}
+ engines: {node: '>=18'}
dev: true
- /metro-runtime@0.70.4:
- resolution: {integrity: sha512-f1kGOOos5hxIdlXxBvQVg1WMiHeV4vR4B4fGikbMGlPtZEuzdYbep0myKjCHJc6v88IPtUmcgj5uZmhny8+jGg==}
+ /metro-runtime@0.80.2:
+ resolution: {integrity: sha512-ruIlSEVnmJGbLnZIGf8/ra+qoD1Knft0R+5laUpp/KEGkD+GEr4XgP+5j5Uuq3v36qDLFTj1KXfQP5JVoeM8zw==}
+ engines: {node: '>=18'}
dependencies:
'@babel/runtime': 7.23.4
dev: true
- /metro-source-map@0.70.4:
- resolution: {integrity: sha512-4NLcyMll1KdSNKG4zM3ftT5JRqYaSBE4ww7D4cdz+niFMd+9iWmK5q2g+eOt29wKrMYpQMK0jLLaWFi9ol03UQ==}
+ /metro-source-map@0.80.2:
+ resolution: {integrity: sha512-fM6RwYCJrwfqVk8Z1ApvJ3+Zz7fso38AszmAXqFDXziOC0AfmMCv/W9FosE9BY+y5QJ7YcvW0RIYLQhpCn+V9w==}
+ engines: {node: '>=18'}
dependencies:
- '@babel/traverse': 7.22.8
- '@babel/types': 7.22.5
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
invariant: 2.2.4
- metro-symbolicate: 0.70.4
+ metro-symbolicate: 0.80.2
nullthrows: 1.1.1
- ob1: 0.70.4
+ ob1: 0.80.2
source-map: 0.5.7
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
dev: true
- /metro-symbolicate@0.70.4:
- resolution: {integrity: sha512-XJV040TcUj0uYGB+I2g9o6kX8RKj4Y7bQB/TOGsLevOdKn1gXb3PJ2ESooLl3HmyRDlrqasvdgWyCrkAlJI4Lw==}
- engines: {node: '>=8.3'}
+ /metro-symbolicate@0.80.2:
+ resolution: {integrity: sha512-G/gJbl/XRGlgjAQSmZ5Rtym//7MSaE2Bj+28BBVqF6fse5y2kw9J7weNDfLjRfKDNaMUoC4mjc6TYjW7gPuGng==}
+ engines: {node: '>=18'}
hasBin: true
dependencies:
invariant: 2.2.4
- metro-source-map: 0.70.4
+ metro-source-map: 0.80.2
nullthrows: 1.1.1
source-map: 0.5.7
through2: 2.0.5
@@ -18076,33 +16228,33 @@ packages:
- supports-color
dev: true
- /metro-transform-plugins@0.70.4:
- resolution: {integrity: sha512-U16mPSd4WrNyVP1k2uKrT5RAaJeUZPLn8dvzzL7YT2dv1mrQnjAGZ4wDR5q80EQhao05sc2ftw6oPBiPS4sgFg==}
+ /metro-transform-plugins@0.80.2:
+ resolution: {integrity: sha512-edokA2lPM3zzJRa55ze2mzVHCUNeJs4CPPrntdVOnf2WkEO/snV4RIgQDVkxFgPc8nI4iLB8cwZZQvdvH3v8gA==}
+ engines: {node: '>=18'}
dependencies:
- '@babel/core': 7.23.3
- '@babel/generator': 7.23.4
+ '@babel/core': 7.23.7
+ '@babel/generator': 7.23.6
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.4
+ '@babel/traverse': 7.23.7
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
dev: true
- /metro-transform-worker@0.70.4:
- resolution: {integrity: sha512-N6rVZF1yUi4rnJsG+/e1wyrdpy6s39PzzsvA+gAS4Vxfe0iBo91votavjL4GF+tuekui/PoxOq5nOWo5aRAHhg==}
- dependencies:
- '@babel/core': 7.23.3
- '@babel/generator': 7.23.4
- '@babel/parser': 7.23.4
- '@babel/types': 7.23.4
- babel-preset-fbjs: 3.4.0(@babel/core@7.23.3)
- metro: 0.70.4
- metro-babel-transformer: 0.70.4
- metro-cache: 0.70.4
- metro-cache-key: 0.70.4
- metro-hermes-compiler: 0.70.4
- metro-source-map: 0.70.4
- metro-transform-plugins: 0.70.4
+ /metro-transform-worker@0.80.2:
+ resolution: {integrity: sha512-QtAntH+8AA06PDpXqM6/N42cvgw665TXp9mKKwrYL/d4lVemNNJte0CJ71KO4MmYQ5UvSDonwbTlOXJOnR8m6w==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@babel/core': 7.23.7
+ '@babel/generator': 7.23.6
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
+ metro: 0.80.2
+ metro-babel-transformer: 0.80.2
+ metro-cache: 0.80.2
+ metro-cache-key: 0.80.2
+ metro-source-map: 0.80.2
+ metro-transform-plugins: 0.80.2
nullthrows: 1.1.1
transitivePeerDependencies:
- bufferutil
@@ -18111,61 +16263,55 @@ packages:
- utf-8-validate
dev: true
- /metro@0.70.4:
- resolution: {integrity: sha512-4Ff7jfCF7Jr/PVXvRGVRe5Sb0Qhqceh6i18aYEMfCS0pVsZZcTdXxgTdlB9KGnxSVxT8jjViid+oAAvNJcC2ug==}
+ /metro@0.80.2:
+ resolution: {integrity: sha512-iavBVpr3v4YD2XWUsL7peq/lUquX5KTH+dKc5Rw13XnDHDfoRgcMOmQjSn3xcFxP0R9P4uABML8YegAekoqjQg==}
+ engines: {node: '>=18'}
hasBin: true
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/core': 7.23.3
- '@babel/generator': 7.23.4
- '@babel/parser': 7.23.4
+ '@babel/core': 7.23.7
+ '@babel/generator': 7.23.6
+ '@babel/parser': 7.23.6
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.4
- '@babel/types': 7.23.4
- absolute-path: 0.0.0
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
accepts: 1.3.8
- async: 3.2.5
chalk: 4.1.2
ci-info: 2.0.0
connect: 3.7.0
debug: 2.6.9
denodeify: 1.2.1
error-stack-parser: 2.1.4
- fs-extra: 1.0.0
graceful-fs: 4.2.11
- hermes-parser: 0.6.0
- image-size: 0.6.3
+ hermes-parser: 0.18.0
+ image-size: 1.1.0
invariant: 2.2.4
- jest-haste-map: 27.5.1
- jest-worker: 27.5.1
+ jest-worker: 29.7.0
jsc-safe-url: 0.2.4
lodash.throttle: 4.1.1
- metro-babel-transformer: 0.70.4
- metro-cache: 0.70.4
- metro-cache-key: 0.70.4
- metro-config: 0.70.4
- metro-core: 0.70.4
- metro-hermes-compiler: 0.70.4
- metro-inspector-proxy: 0.70.4
- metro-minify-uglify: 0.70.4
- metro-react-native-babel-preset: 0.70.4(@babel/core@7.23.3)
- metro-resolver: 0.70.4
- metro-runtime: 0.70.4
- metro-source-map: 0.70.4
- metro-symbolicate: 0.70.4
- metro-transform-plugins: 0.70.4
- metro-transform-worker: 0.70.4
+ metro-babel-transformer: 0.80.2
+ metro-cache: 0.80.2
+ metro-cache-key: 0.80.2
+ metro-config: 0.80.2
+ metro-core: 0.80.2
+ metro-file-map: 0.80.2
+ metro-minify-terser: 0.80.2
+ metro-resolver: 0.80.2
+ metro-runtime: 0.80.2
+ metro-source-map: 0.80.2
+ metro-symbolicate: 0.80.2
+ metro-transform-plugins: 0.80.2
+ metro-transform-worker: 0.80.2
mime-types: 2.1.35
node-fetch: 2.7.0
nullthrows: 1.1.1
- rimraf: 2.7.1
+ rimraf: 3.0.2
serialize-error: 2.1.0
source-map: 0.5.7
strip-ansi: 6.0.1
- temp: 0.8.3
throat: 5.0.0
ws: 7.5.9
- yargs: 15.4.1
+ yargs: 17.7.2
transitivePeerDependencies:
- bufferutil
- encoding
@@ -18218,6 +16364,7 @@ packages:
to-regex: 3.0.2
transitivePeerDependencies:
- supports-color
+ dev: false
/micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
@@ -18425,6 +16572,7 @@ packages:
dependencies:
for-in: 1.0.2
is-extendable: 1.0.1
+ dev: false
/mkdirp-classic@0.5.3:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
@@ -18445,12 +16593,11 @@ packages:
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
engines: {node: '>=10'}
hasBin: true
- dev: false
/mlly@1.4.2:
resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==}
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
pathe: 1.1.1
pkg-types: 1.0.3
ufo: 1.3.2
@@ -18535,10 +16682,7 @@ packages:
to-regex: 3.0.2
transitivePeerDependencies:
- supports-color
-
- /napi-wasm@1.1.0:
- resolution: {integrity: sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg==}
- dev: true
+ dev: false
/natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
@@ -18595,7 +16739,7 @@ packages:
'@rollup/plugin-node-resolve': 13.3.0(rollup@2.79.1)
ajv: 8.12.0
ansi-colors: 4.1.3
- browserslist: 4.21.10
+ browserslist: 4.22.2
cacache: 15.3.0
chokidar: 3.5.3
commander: 8.3.0
@@ -18607,12 +16751,12 @@ packages:
jsonc-parser: 3.2.0
less: 4.1.3
ora: 5.4.1
- postcss: 8.4.27
- postcss-preset-env: 7.8.3(postcss@8.4.27)
- postcss-url: 10.1.3(postcss@8.4.27)
+ postcss: 8.4.32
+ postcss-preset-env: 7.8.3(postcss@8.4.32)
+ postcss-url: 10.1.3(postcss@8.4.32)
rollup: 2.79.1
rollup-plugin-sourcemaps: 0.6.3(@types/node@12.20.55)(rollup@2.79.1)
- rxjs: 7.8.1
+ rxjs: 7.5.7
sass: 1.64.1
stylus: 0.56.0
tslib: 2.6.1
@@ -18634,10 +16778,6 @@ packages:
node-gyp-build: 4.7.1
optional: true
- /nice-try@1.0.5:
- resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- dev: true
-
/nitropack-edge@2.7.0-28295243.3e9302a:
resolution: {integrity: sha512-mFQMcVZCddH8DPDTDcrlRiyQbxm8neOSJWHxlG7YjxZxAsmXKJUcqwHspmw/LwvPuLUqS1jEhlXGMjfywHXsQg==}
engines: {node: ^16.11.0 || >=17.0.0}
@@ -18662,7 +16802,7 @@ packages:
'@types/http-proxy': 1.17.14
'@vercel/nft': 0.24.4
archiver: 6.0.1
- c12: 1.5.1
+ c12: 1.6.1
chalk: 5.3.0
chokidar: 3.5.3
citty: 0.1.5
@@ -18671,7 +16811,7 @@ packages:
defu: 6.1.3
destr: 2.0.2
dot-prop: 8.0.2
- esbuild: 0.19.9
+ esbuild: 0.19.11
escape-string-regexp: 5.0.0
etag: 1.8.1
fs-extra: 11.2.0
@@ -18689,7 +16829,7 @@ packages:
mime: 3.0.0
mlly: 1.4.2
mri: 1.2.0
- node-fetch-native: 1.4.1
+ node-fetch-native: 1.6.1
ofetch: 1.3.3
ohash: 1.1.3
openapi-typescript: 6.7.3
@@ -18699,17 +16839,17 @@ packages:
pretty-bytes: 6.1.1
radix3: 1.1.0
rollup: 3.29.4
- rollup-plugin-visualizer: 5.11.0(rollup@3.29.4)
+ rollup-plugin-visualizer: 5.12.0(rollup@3.29.4)
scule: 1.1.1
semver: 7.5.4
serve-placeholder: 2.0.1
serve-static: 1.15.0
- std-env: 3.6.0
+ std-env: 3.7.0
ufo: 1.3.2
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.8.0
- unimport: 3.6.1(rollup@3.29.4)
+ unimport: 3.7.1(rollup@3.29.4)
unstorage: 1.10.1
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -18740,6 +16880,10 @@ packages:
engines: {node: '>=12.0.0'}
dev: true
+ /node-abort-controller@3.1.1:
+ resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
+ dev: true
+
/node-addon-api@3.2.1:
resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==}
@@ -18758,24 +16902,8 @@ packages:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
- /node-fetch-native@1.4.0:
- resolution: {integrity: sha512-F5kfEj95kX8tkDhUCYdV8dg3/8Olx/94zB8+ZNthFs6Bz31UpUi8Xh40TN3thLwXgrwXry1pEg9lJ++tLWTcqA==}
- dev: true
-
- /node-fetch-native@1.4.1:
- resolution: {integrity: sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==}
- dev: true
-
- /node-fetch@2.6.12:
- resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
- dependencies:
- whatwg-url: 5.0.0
+ /node-fetch-native@1.6.1:
+ resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==}
dev: true
/node-fetch@2.7.0:
@@ -18851,8 +16979,8 @@ packages:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
dev: true
- /node-releases@2.0.13:
- resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
+ /node-releases@2.0.14:
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
dev: true
/node-stream-zip@1.15.0:
@@ -18911,7 +17039,7 @@ packages:
engines: {node: '>=10'}
dependencies:
hosted-git-info: 4.1.0
- semver: 7.3.5
+ semver: 7.5.4
validate-npm-package-name: 3.0.0
dev: true
@@ -18932,7 +17060,7 @@ packages:
npm-install-checks: 4.0.0
npm-normalize-package-bin: 1.0.1
npm-package-arg: 8.1.5
- semver: 7.3.5
+ semver: 7.5.4
dev: true
/npm-registry-fetch@12.0.2:
@@ -18950,13 +17078,6 @@ packages:
- supports-color
dev: true
- /npm-run-path@2.0.2:
- resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
- engines: {node: '>=4'}
- dependencies:
- path-key: 2.0.1
- dev: true
-
/npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -19075,12 +17196,24 @@ packages:
- debug
dev: true
+ /nypm@0.3.4:
+ resolution: {integrity: sha512-1JLkp/zHBrkS3pZ692IqOaIKSYHmQXgqfELk6YTOfVBnwealAmPA1q2kKK7PHJAHSMBozerThEFZXP3G6o7Ukg==}
+ engines: {node: ^14.16.0 || >=16.10.0}
+ hasBin: true
+ dependencies:
+ citty: 0.1.5
+ execa: 8.0.1
+ pathe: 1.1.1
+ ufo: 1.3.2
+ dev: true
+
/oauth-sign@0.9.0:
resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
dev: true
- /ob1@0.70.4:
- resolution: {integrity: sha512-u7UUis2Scwy+RDdJ0T49Urb0yTQTyEYt37lHzWDqpLQSLYZZGT3ZNtCvB88Z9yKhhouKD4TNOGkBJgkFJ+84sg==}
+ /ob1@0.80.2:
+ resolution: {integrity: sha512-dF78RVxoZjzSTfOWiZh6iaRtTrKyMhTiDtr/nDJOIN5hKj0pNjY7z/NueYCUH4EDgFmabv4r+WEihSu+qCI7Mg==}
+ engines: {node: '>=18'}
dev: true
/object-assign@4.1.1:
@@ -19094,10 +17227,7 @@ packages:
copy-descriptor: 0.1.1
define-property: 0.2.5
kind-of: 3.2.2
-
- /object-inspect@1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
- dev: true
+ dev: false
/object-inspect@1.13.1:
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
@@ -19121,6 +17251,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
+ dev: false
/object.assign@4.1.5:
resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
@@ -19164,6 +17295,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
+ dev: false
/object.values@1.1.7:
resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
@@ -19182,7 +17314,7 @@ packages:
resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==}
dependencies:
destr: 2.0.2
- node-fetch-native: 1.4.1
+ node-fetch-native: 1.6.1
ufo: 1.3.2
dev: true
@@ -19239,6 +17371,14 @@ packages:
is-wsl: 1.1.0
dev: true
+ /open@7.4.2:
+ resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
+ engines: {node: '>=8'}
+ dependencies:
+ is-docker: 2.2.1
+ is-wsl: 2.2.0
+ dev: true
+
/open@8.4.0:
resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
engines: {node: '>=12'}
@@ -19313,7 +17453,7 @@ packages:
dependencies:
ansi-colors: 4.1.3
cli-progress: 3.12.0
- fast-glob: 3.3.1
+ fast-glob: 3.3.2
oslllo-potrace: 2.0.1
oslllo-svg2: 2.0.2
oslllo-validator: 3.1.0
@@ -19342,11 +17482,6 @@ packages:
resolution: {integrity: sha512-AlWY719RF02ujitly7Kk/0QlV+pXGFDHrHf9O2OKqyqgBieaPOIeuSkL8sRK6j2WK+/ZAURq2kZsY0d8JapUiw==}
dev: false
- /p-finally@1.0.0:
- resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
- engines: {node: '>=4'}
- dev: true
-
/p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
@@ -19558,6 +17693,7 @@ packages:
/pascalcase@0.1.1:
resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
engines: {node: '>=0.10.0'}
+ dev: false
/path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
@@ -19576,11 +17712,6 @@ packages:
resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
dev: true
- /path-key@2.0.1:
- resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
- engines: {node: '>=4'}
- dev: true
-
/path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
@@ -19598,7 +17729,7 @@ packages:
resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 10.0.3
+ lru-cache: 10.1.0
minipass: 7.0.3
dev: false
@@ -19734,15 +17865,6 @@ packages:
pathe: 1.1.1
dev: true
- /plist@3.1.0:
- resolution: {integrity: sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==}
- engines: {node: '>=10.4.0'}
- dependencies:
- '@xmldom/xmldom': 0.8.10
- base64-js: 1.5.1
- xmlbuilder: 15.1.1
- dev: true
-
/pngjs@3.4.0:
resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==}
engines: {node: '>=4.0.0'}
@@ -19762,14 +17884,15 @@ packages:
/posix-character-classes@0.1.1:
resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
engines: {node: '>=0.10.0'}
+ dev: false
- /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.27):
+ /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.32):
resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
@@ -19783,23 +17906,23 @@ packages:
postcss-selector-parser: 6.0.13
dev: true
- /postcss-clamp@4.1.0(postcss@8.4.27):
+ /postcss-clamp@4.1.0(postcss@8.4.32):
resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
engines: {node: '>=7.6.0'}
peerDependencies:
postcss: ^8.4.6
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
- /postcss-color-functional-notation@4.2.4(postcss@8.4.27):
+ /postcss-color-functional-notation@4.2.4(postcss@8.4.32):
resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -19813,13 +17936,13 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-color-hex-alpha@8.0.4(postcss@8.4.27):
+ /postcss-color-hex-alpha@8.0.4(postcss@8.4.32):
resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -19833,13 +17956,13 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-color-rebeccapurple@7.1.1(postcss@8.4.27):
+ /postcss-color-rebeccapurple@7.1.1(postcss@8.4.32):
resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -19853,13 +17976,13 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-custom-media@8.0.2(postcss@8.4.27):
+ /postcss-custom-media@8.0.2(postcss@8.4.32):
resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.3
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -19873,13 +17996,13 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-custom-properties@12.1.11(postcss@8.4.27):
+ /postcss-custom-properties@12.1.11(postcss@8.4.32):
resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -19893,13 +18016,13 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-custom-selectors@6.0.3(postcss@8.4.27):
+ /postcss-custom-selectors@6.0.3(postcss@8.4.32):
resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.3
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
@@ -19913,13 +18036,13 @@ packages:
postcss-selector-parser: 6.0.13
dev: true
- /postcss-dir-pseudo-class@6.0.5(postcss@8.4.27):
+ /postcss-dir-pseudo-class@6.0.5(postcss@8.4.32):
resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
@@ -19933,14 +18056,14 @@ packages:
postcss-selector-parser: 6.0.13
dev: true
- /postcss-double-position-gradients@3.1.2(postcss@8.4.27):
+ /postcss-double-position-gradients@3.1.2(postcss@8.4.32):
resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27)
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -19955,13 +18078,13 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-env-function@4.0.6(postcss@8.4.27):
+ /postcss-env-function@4.0.6(postcss@8.4.32):
resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -19975,13 +18098,13 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-focus-visible@6.0.4(postcss@8.4.27):
+ /postcss-focus-visible@6.0.4(postcss@8.4.32):
resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
@@ -19995,13 +18118,13 @@ packages:
postcss-selector-parser: 6.0.13
dev: true
- /postcss-focus-within@5.0.4(postcss@8.4.27):
+ /postcss-focus-within@5.0.4(postcss@8.4.32):
resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
@@ -20015,12 +18138,12 @@ packages:
postcss-selector-parser: 6.0.13
dev: true
- /postcss-font-variant@5.0.0(postcss@8.4.27):
+ /postcss-font-variant@5.0.0(postcss@8.4.32):
resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
dev: true
/postcss-font-variant@5.0.0(postcss@8.4.5):
@@ -20031,13 +18154,13 @@ packages:
postcss: 8.4.5
dev: true
- /postcss-gap-properties@3.0.5(postcss@8.4.27):
+ /postcss-gap-properties@3.0.5(postcss@8.4.32):
resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
dev: true
/postcss-gap-properties@3.0.5(postcss@8.4.5):
@@ -20049,13 +18172,13 @@ packages:
postcss: 8.4.5
dev: true
- /postcss-image-set-function@4.0.7(postcss@8.4.27):
+ /postcss-image-set-function@4.0.7(postcss@8.4.32):
resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -20081,12 +18204,12 @@ packages:
resolve: 1.22.8
dev: true
- /postcss-initial@4.0.1(postcss@8.4.27):
+ /postcss-initial@4.0.1(postcss@8.4.32):
resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
dev: true
/postcss-initial@4.0.1(postcss@8.4.5):
@@ -20097,14 +18220,14 @@ packages:
postcss: 8.4.5
dev: true
- /postcss-lab-function@4.2.1(postcss@8.4.27):
+ /postcss-lab-function@4.2.1(postcss@8.4.32):
resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27)
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -20133,13 +18256,13 @@ packages:
webpack: 5.76.1(esbuild@0.14.22)
dev: true
- /postcss-logical@5.0.4(postcss@8.4.27):
+ /postcss-logical@5.0.4(postcss@8.4.32):
resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
dev: true
/postcss-logical@5.0.4(postcss@8.4.5):
@@ -20151,13 +18274,13 @@ packages:
postcss: 8.4.5
dev: true
- /postcss-media-minmax@5.0.0(postcss@8.4.27):
+ /postcss-media-minmax@5.0.0(postcss@8.4.32):
resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
dev: true
/postcss-media-minmax@5.0.0(postcss@8.4.5):
@@ -20169,55 +18292,55 @@ packages:
postcss: 8.4.5
dev: true
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.31):
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.32):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: true
- /postcss-modules-local-by-default@4.0.3(postcss@8.4.31):
+ /postcss-modules-local-by-default@4.0.3(postcss@8.4.32):
resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
engines: {node: ^10 || ^12 || >= 14}
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.32)
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: true
- /postcss-modules-scope@3.0.0(postcss@8.4.31):
+ /postcss-modules-scope@3.0.0(postcss@8.4.32):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
- /postcss-modules-values@4.0.0(postcss@8.4.31):
+ /postcss-modules-values@4.0.0(postcss@8.4.32):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
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.32)
+ postcss: 8.4.32
dev: true
- /postcss-nesting@10.2.0(postcss@8.4.27):
+ /postcss-nesting@10.2.0(postcss@8.4.32):
resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
'@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13)
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
@@ -20232,22 +18355,22 @@ packages:
postcss-selector-parser: 6.0.13
dev: true
- /postcss-opacity-percentage@1.1.3(postcss@8.4.27):
+ /postcss-opacity-percentage@1.1.3(postcss@8.4.32):
resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
dev: true
- /postcss-overflow-shorthand@3.0.4(postcss@8.4.27):
+ /postcss-overflow-shorthand@3.0.4(postcss@8.4.32):
resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -20261,12 +18384,12 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-page-break@3.0.4(postcss@8.4.27):
+ /postcss-page-break@3.0.4(postcss@8.4.32):
resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
peerDependencies:
postcss: ^8
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
dev: true
/postcss-page-break@3.0.4(postcss@8.4.5):
@@ -20277,13 +18400,13 @@ packages:
postcss: 8.4.5
dev: true
- /postcss-place@7.0.5(postcss@8.4.27):
+ /postcss-place@7.0.5(postcss@8.4.32):
resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: true
@@ -20304,8 +18427,8 @@ packages:
postcss: ^8.4
dependencies:
autoprefixer: 10.4.14(postcss@8.4.5)
- browserslist: 4.21.10
- caniuse-lite: 1.0.30001518
+ browserslist: 4.22.2
+ caniuse-lite: 1.0.30001572
css-blank-pseudo: 3.0.3(postcss@8.4.5)
css-has-pseudo: 3.0.4(postcss@8.4.5)
css-prefers-color-scheme: 6.0.3(postcss@8.4.5)
@@ -20339,71 +18462,71 @@ packages:
postcss-selector-not: 5.0.0(postcss@8.4.5)
dev: true
- /postcss-preset-env@7.8.3(postcss@8.4.27):
+ /postcss-preset-env@7.8.3(postcss@8.4.32):
resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.27)
- '@csstools/postcss-color-function': 1.1.1(postcss@8.4.27)
- '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.27)
- '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.27)
- '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.27)
- '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.27)
- '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.27)
- '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.27)
- '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.27)
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27)
- '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.27)
- '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.27)
- '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.27)
- '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.27)
- autoprefixer: 10.4.14(postcss@8.4.27)
- browserslist: 4.21.10
- css-blank-pseudo: 3.0.3(postcss@8.4.27)
- css-has-pseudo: 3.0.4(postcss@8.4.27)
- css-prefers-color-scheme: 6.0.3(postcss@8.4.27)
+ '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.32)
+ '@csstools/postcss-color-function': 1.1.1(postcss@8.4.32)
+ '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.32)
+ '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.32)
+ '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.32)
+ '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.32)
+ '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.32)
+ '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.32)
+ '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.32)
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32)
+ '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.32)
+ '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.32)
+ '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.32)
+ '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.32)
+ autoprefixer: 10.4.14(postcss@8.4.32)
+ browserslist: 4.22.2
+ css-blank-pseudo: 3.0.3(postcss@8.4.32)
+ css-has-pseudo: 3.0.4(postcss@8.4.32)
+ css-prefers-color-scheme: 6.0.3(postcss@8.4.32)
cssdb: 7.7.0
- postcss: 8.4.27
- postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.27)
- postcss-clamp: 4.1.0(postcss@8.4.27)
- postcss-color-functional-notation: 4.2.4(postcss@8.4.27)
- postcss-color-hex-alpha: 8.0.4(postcss@8.4.27)
- postcss-color-rebeccapurple: 7.1.1(postcss@8.4.27)
- postcss-custom-media: 8.0.2(postcss@8.4.27)
- postcss-custom-properties: 12.1.11(postcss@8.4.27)
- postcss-custom-selectors: 6.0.3(postcss@8.4.27)
- postcss-dir-pseudo-class: 6.0.5(postcss@8.4.27)
- postcss-double-position-gradients: 3.1.2(postcss@8.4.27)
- postcss-env-function: 4.0.6(postcss@8.4.27)
- postcss-focus-visible: 6.0.4(postcss@8.4.27)
- postcss-focus-within: 5.0.4(postcss@8.4.27)
- postcss-font-variant: 5.0.0(postcss@8.4.27)
- postcss-gap-properties: 3.0.5(postcss@8.4.27)
- postcss-image-set-function: 4.0.7(postcss@8.4.27)
- postcss-initial: 4.0.1(postcss@8.4.27)
- postcss-lab-function: 4.2.1(postcss@8.4.27)
- postcss-logical: 5.0.4(postcss@8.4.27)
- postcss-media-minmax: 5.0.0(postcss@8.4.27)
- postcss-nesting: 10.2.0(postcss@8.4.27)
- postcss-opacity-percentage: 1.1.3(postcss@8.4.27)
- postcss-overflow-shorthand: 3.0.4(postcss@8.4.27)
- postcss-page-break: 3.0.4(postcss@8.4.27)
- postcss-place: 7.0.5(postcss@8.4.27)
- postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.27)
- postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.27)
- postcss-selector-not: 6.0.1(postcss@8.4.27)
+ postcss: 8.4.32
+ postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.32)
+ postcss-clamp: 4.1.0(postcss@8.4.32)
+ postcss-color-functional-notation: 4.2.4(postcss@8.4.32)
+ postcss-color-hex-alpha: 8.0.4(postcss@8.4.32)
+ postcss-color-rebeccapurple: 7.1.1(postcss@8.4.32)
+ postcss-custom-media: 8.0.2(postcss@8.4.32)
+ postcss-custom-properties: 12.1.11(postcss@8.4.32)
+ postcss-custom-selectors: 6.0.3(postcss@8.4.32)
+ postcss-dir-pseudo-class: 6.0.5(postcss@8.4.32)
+ postcss-double-position-gradients: 3.1.2(postcss@8.4.32)
+ postcss-env-function: 4.0.6(postcss@8.4.32)
+ postcss-focus-visible: 6.0.4(postcss@8.4.32)
+ postcss-focus-within: 5.0.4(postcss@8.4.32)
+ postcss-font-variant: 5.0.0(postcss@8.4.32)
+ postcss-gap-properties: 3.0.5(postcss@8.4.32)
+ postcss-image-set-function: 4.0.7(postcss@8.4.32)
+ postcss-initial: 4.0.1(postcss@8.4.32)
+ postcss-lab-function: 4.2.1(postcss@8.4.32)
+ postcss-logical: 5.0.4(postcss@8.4.32)
+ postcss-media-minmax: 5.0.0(postcss@8.4.32)
+ postcss-nesting: 10.2.0(postcss@8.4.32)
+ postcss-opacity-percentage: 1.1.3(postcss@8.4.32)
+ postcss-overflow-shorthand: 3.0.4(postcss@8.4.32)
+ postcss-page-break: 3.0.4(postcss@8.4.32)
+ postcss-place: 7.0.5(postcss@8.4.32)
+ postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.32)
+ postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.32)
+ postcss-selector-not: 6.0.1(postcss@8.4.32)
postcss-value-parser: 4.2.0
dev: true
- /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.27):
+ /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.32):
resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
@@ -20417,12 +18540,12 @@ packages:
postcss-selector-parser: 6.0.13
dev: true
- /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.27):
+ /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.32):
resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
peerDependencies:
postcss: ^8.0.3
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
dev: true
/postcss-replace-overflow-wrap@4.0.0(postcss@8.4.5):
@@ -20442,13 +18565,13 @@ packages:
postcss: 8.4.5
dev: true
- /postcss-selector-not@6.0.1(postcss@8.4.27):
+ /postcss-selector-not@6.0.1(postcss@8.4.32):
resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: true
@@ -20460,7 +18583,7 @@ packages:
util-deprecate: 1.0.2
dev: true
- /postcss-url@10.1.3(postcss@8.4.27):
+ /postcss-url@10.1.3(postcss@8.4.32):
resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==}
engines: {node: '>=10'}
peerDependencies:
@@ -20469,7 +18592,7 @@ packages:
make-dir: 3.1.0
mime: 2.5.2
minimatch: 3.0.5
- postcss: 8.4.27
+ postcss: 8.4.32
xxhashjs: 0.2.2
dev: true
@@ -20477,17 +18600,8 @@ packages:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
dev: true
- /postcss@8.4.27:
- resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.0.2
- dev: true
-
- /postcss@8.4.31:
- resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ /postcss@8.4.32:
+ resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.7
@@ -20559,15 +18673,6 @@ packages:
react-is: 17.0.2
dev: true
- /pretty-format@29.6.2:
- resolution: {integrity: sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/schemas': 29.6.0
- ansi-styles: 5.2.0
- react-is: 18.2.0
- dev: true
-
/pretty-format@29.7.0:
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -20705,11 +18810,6 @@ packages:
once: 1.4.0
dev: true
- /punycode@2.3.0:
- resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
- engines: {node: '>=6'}
- dev: true
-
/punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
@@ -20718,14 +18818,14 @@ packages:
/puppeteer@8.0.0:
resolution: {integrity: sha512-D0RzSWlepeWkxPPdK3xhTcefj8rjah1791GE82Pdjsri49sy11ci/JQsAO8K2NRukqvwEtcI+ImP5F4ZiMvtIQ==}
engines: {node: '>=10.18.1'}
- deprecated: < 19.4.0 is no longer supported
+ deprecated: < 21.3.7 is no longer supported
requiresBuild: true
dependencies:
debug: 4.3.4
devtools-protocol: 0.0.854822
extract-zip: 2.0.1
https-proxy-agent: 5.0.1
- node-fetch: 2.6.12
+ node-fetch: 2.7.0
pkg-dir: 4.2.0
progress: 2.0.3
proxy-from-env: 1.1.0
@@ -20773,8 +18873,10 @@ packages:
resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
dev: true
- /radix3@1.0.1:
- resolution: {integrity: sha512-y+AcwZ3HcUIGc9zGsNVf5+BY/LxL+z+4h4J3/pp8jxSmy1STaCocPS3qrj4tA5ehUSzqtqK+0Aygvz/r/8vy4g==}
+ /queue@6.0.2:
+ resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
+ dependencies:
+ inherits: 2.0.4
dev: true
/radix3@1.1.0:
@@ -20820,8 +18922,8 @@ packages:
flat: 5.0.2
dev: true
- /react-devtools-core@4.24.0:
- resolution: {integrity: sha512-Rw7FzYOOzcfyUPaAm9P3g0tFdGqGq2LLiAI+wjYcp6CsF3DeeMrRS3HZAho4s273C29G/DJhx0e8BpRE/QZNGg==}
+ /react-devtools-core@4.28.5:
+ resolution: {integrity: sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==}
dependencies:
shell-quote: 1.8.1
ws: 7.5.9
@@ -20839,6 +18941,7 @@ packages:
object-assign: 4.1.1
react: 17.0.2
scheduler: 0.20.2
+ dev: false
/react-dom@18.2.0(react@18.2.0):
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
@@ -20861,23 +18964,7 @@ packages:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
dev: true
- /react-native-codegen@0.69.2:
- resolution: {integrity: sha512-yPcgMHD4mqLbckqnWjFBaxomDnBREfRjDi2G/WxNyPBQLD+PXUEmZTkDx6QoOXN+Bl2SkpnNOSsLE2+/RUHoPw==}
- dependencies:
- '@babel/parser': 7.22.7
- flow-parser: 0.121.0
- jscodeshift: 0.13.1
- nullthrows: 1.1.1
- transitivePeerDependencies:
- - '@babel/preset-env'
- - supports-color
- dev: true
-
- /react-native-gradle-plugin@0.0.7:
- resolution: {integrity: sha512-+4JpbIx42zGTONhBTIXSyfyHICHC29VTvhkkoUOJAh/XHPEixpuBduYgf6Y4y9wsN1ARlQhBBoptTvXvAFQf5g==}
- dev: true
-
- /react-native-svg@14.1.0(react-native@0.69.12)(react@18.2.0):
+ /react-native-svg@14.1.0(react-native@0.73.1)(react@18.2.0):
resolution: {integrity: sha512-HeseElmEk+AXGwFZl3h56s0LtYD9HyGdrpg8yd9QM26X+d7kjETrRQ9vCjtxuT5dCZEIQ5uggU1dQhzasnsCWA==}
peerDependencies:
react: '*'
@@ -20886,50 +18973,54 @@ packages:
css-select: 5.1.0
css-tree: 1.1.3
react: 18.2.0
- react-native: 0.69.12(react@18.2.0)
+ react-native: 0.73.1(react@18.2.0)
dev: true
- /react-native@0.69.12(react@18.2.0):
- resolution: {integrity: sha512-kHOj4V0wD/hvjyiiXPP96fMBSRNnx0MXGTTrL43KppsWvKnOtvnQ/qSTWR0d3s6Hi4n7mx3Un+NqCuBKsf+5yg==}
- engines: {node: '>=14'}
+ /react-native@0.73.1(react@18.2.0):
+ resolution: {integrity: sha512-nLl9O2yKRh1nMXwsk4SUiD0ddd19RqlKgNU9AU8bTK/zD2xwnVOG56YK1/22SN67niWyoeG83vVg1eTk+S6ReA==}
+ engines: {node: '>=18'}
hasBin: true
peerDependencies:
- react: 18.0.0
+ react: 18.2.0
dependencies:
- '@jest/create-cache-key-function': 27.5.1
- '@react-native-community/cli': 8.0.7(react-native@0.69.12)
- '@react-native-community/cli-platform-android': 8.0.5
- '@react-native-community/cli-platform-ios': 8.0.6
- '@react-native/assets': 1.0.0
- '@react-native/normalize-color': 2.0.0
- '@react-native/polyfills': 2.0.0
+ '@jest/create-cache-key-function': 29.7.0
+ '@react-native-community/cli': 12.3.0
+ '@react-native-community/cli-platform-android': 12.3.0
+ '@react-native-community/cli-platform-ios': 12.3.0
+ '@react-native/assets-registry': 0.73.1
+ '@react-native/codegen': 0.73.2
+ '@react-native/community-cli-plugin': 0.73.11
+ '@react-native/gradle-plugin': 0.73.4
+ '@react-native/js-polyfills': 0.73.1
+ '@react-native/normalize-colors': 0.73.2
+ '@react-native/virtualized-lists': 0.73.4(react-native@0.73.1)
abort-controller: 3.0.0
anser: 1.4.10
+ ansi-regex: 5.0.1
base64-js: 1.5.1
+ deprecated-react-native-prop-types: 5.0.0
event-target-shim: 5.0.1
- hermes-engine: 0.11.0
+ flow-enums-runtime: 0.0.6
invariant: 2.2.4
- jsc-android: 250230.2.1
+ jest-environment-node: 29.7.0
+ jsc-android: 250231.0.0
memoize-one: 5.2.1
- metro-react-native-babel-transformer: 0.70.4
- metro-runtime: 0.70.4
- metro-source-map: 0.70.4
+ metro-runtime: 0.80.2
+ metro-source-map: 0.80.2
mkdirp: 0.5.6
nullthrows: 1.1.1
pretty-format: 26.6.2
promise: 8.3.0
react: 18.2.0
- react-devtools-core: 4.24.0
- react-native-codegen: 0.69.2
- react-native-gradle-plugin: 0.0.7
- react-refresh: 0.4.3
+ react-devtools-core: 4.28.5
+ react-refresh: 0.14.0
react-shallow-renderer: 16.15.0(react@18.2.0)
regenerator-runtime: 0.13.11
- scheduler: 0.21.0
+ scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: 0.1.10
- use-sync-external-store: 1.2.0(react@18.2.0)
whatwg-fetch: 3.6.17
ws: 6.2.2
+ yargs: 17.7.2
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
@@ -20949,11 +19040,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /react-refresh@0.4.3:
- resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/react-shallow-renderer@16.15.0(react@18.2.0):
resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
@@ -20970,6 +19056,7 @@ packages:
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
+ dev: false
/react@18.2.0:
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
@@ -21045,11 +19132,11 @@ packages:
resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==}
dev: true
- /recast@0.20.5:
- resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==}
+ /recast@0.21.5:
+ resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==}
engines: {node: '>= 4'}
dependencies:
- ast-types: 0.14.2
+ ast-types: 0.15.2
esprima: 4.0.1
source-map: 0.6.1
tslib: 2.6.1
@@ -21103,7 +19190,7 @@ packages:
/regenerator-transform@0.15.1:
resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
- '@babel/runtime': 7.16.7
+ '@babel/runtime': 7.23.4
dev: true
/regex-not@1.0.2:
@@ -21112,20 +19199,12 @@ packages:
dependencies:
extend-shallow: 3.0.2
safe-regex: 1.1.0
+ dev: false
/regex-parser@2.2.11:
resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==}
dev: true
- /regexp.prototype.flags@1.5.0:
- resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- functions-have-names: 1.2.3
- dev: true
-
/regexp.prototype.flags@1.5.1:
resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
engines: {node: '>= 0.4'}
@@ -21166,10 +19245,12 @@ packages:
/repeat-element@1.1.4:
resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
engines: {node: '>=0.10.0'}
+ dev: false
/repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
+ dev: false
/request@2.88.2:
resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==}
@@ -21232,7 +19313,6 @@ packages:
/resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- dev: true
/resolve-url-loader@5.0.0:
resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==}
@@ -21241,13 +19321,14 @@ packages:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.4.31
+ postcss: 8.4.32
source-map: 0.6.1
dev: true
/resolve-url@0.2.1:
resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
deprecated: https://github.com/lydell/resolve-url#deprecated
+ dev: false
/resolve@1.22.0:
resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}
@@ -21258,15 +19339,6 @@ packages:
supports-preserve-symlinks-flag: 1.0.0
dev: true
- /resolve@1.22.3:
- resolution: {integrity: sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==}
- hasBin: true
- dependencies:
- is-core-module: 2.13.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- dev: true
-
/resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -21295,6 +19367,7 @@ packages:
/ret@0.1.15:
resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
engines: {node: '>=0.12'}
+ dev: false
/retry@0.12.0:
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
@@ -21313,11 +19386,6 @@ packages:
resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
dev: true
- /rimraf@2.2.8:
- resolution: {integrity: sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==}
- hasBin: true
- dev: true
-
/rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
hasBin: true
@@ -21349,30 +19417,30 @@ packages:
is-plain-object: 3.0.1
dev: true
- /rollup-plugin-dts@5.3.1(rollup@3.27.0)(typescript@4.9.5):
- resolution: {integrity: sha512-gusMi+Z4gY/JaEQeXnB0RUdU82h1kF0WYzCWgVmV4p3hWXqelaKuCvcJawfeg+EKn2T1Ie+YWF2OiN1/L8bTVg==}
- engines: {node: '>=v14.21.3'}
+ /rollup-plugin-dts@6.1.0(rollup@4.9.2)(typescript@4.9.5):
+ resolution: {integrity: sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==}
+ engines: {node: '>=16'}
peerDependencies:
- rollup: ^3.0
- typescript: ^4.1 || ^5.0
+ rollup: ^3.29.4 || ^4
+ typescript: ^4.5 || ^5.0
dependencies:
- magic-string: 0.30.2
- rollup: 3.27.0
+ magic-string: 0.30.5
+ rollup: 4.9.2
typescript: 4.9.5
optionalDependencies:
'@babel/code-frame': 7.23.5
dev: true
- /rollup-plugin-dts@5.3.1(rollup@3.29.4)(typescript@4.9.5):
- resolution: {integrity: sha512-gusMi+Z4gY/JaEQeXnB0RUdU82h1kF0WYzCWgVmV4p3hWXqelaKuCvcJawfeg+EKn2T1Ie+YWF2OiN1/L8bTVg==}
- engines: {node: '>=v14.21.3'}
+ /rollup-plugin-dts@6.1.0(rollup@4.9.2)(typescript@5.3.3):
+ resolution: {integrity: sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==}
+ engines: {node: '>=16'}
peerDependencies:
- rollup: ^3.0
- typescript: ^4.1 || ^5.0
+ rollup: ^3.29.4 || ^4
+ typescript: ^4.5 || ^5.0
dependencies:
- magic-string: 0.30.2
- rollup: 3.29.4
- typescript: 4.9.5
+ magic-string: 0.30.5
+ rollup: 4.9.2
+ typescript: 5.3.3
optionalDependencies:
'@babel/code-frame': 7.23.5
dev: true
@@ -21391,43 +19459,24 @@ packages:
rollup: 2.79.1
dev: true
- /rollup-plugin-esbuild@4.10.3(esbuild@0.15.18)(rollup@3.29.4):
- resolution: {integrity: sha512-RILwUCgnCL5vo8vyZ/ZpwcqRuE5KmLizEv6BujBQfgXFZ6ggcS0FiYvQN+gsTJfWCMaU37l0Fosh4eEufyO97Q==}
- engines: {node: '>=12'}
+ /rollup-plugin-esbuild@6.1.0(esbuild@0.19.11)(rollup@4.9.2):
+ resolution: {integrity: sha512-HPpXU65V8bSpW8eSYPahtUJaJHmbxJGybuf/M8B3bz/6i11YaYHlNNJIQ38gSEV0FyohQOgVxJ2YMEEZtEmwvA==}
+ engines: {node: '>=14.18.0'}
peerDependencies:
- esbuild: '>=0.10.1'
- rollup: ^1.20.0 || ^2.0.0
+ esbuild: '>=0.18.0'
+ rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0
dependencies:
- '@rollup/pluginutils': 4.2.1
+ '@rollup/pluginutils': 5.1.0(rollup@4.9.2)
debug: 4.3.4
- es-module-lexer: 0.9.3
- esbuild: 0.15.18
- joycon: 3.1.1
- jsonc-parser: 3.2.0
- rollup: 3.29.4
+ es-module-lexer: 1.4.1
+ esbuild: 0.19.11
+ get-tsconfig: 4.7.2
+ rollup: 4.9.2
transitivePeerDependencies:
- supports-color
dev: false
- /rollup-plugin-license@3.0.1(rollup@3.27.0):
- resolution: {integrity: sha512-/lec6Y94Y3wMfTDeYTO/jSXII0GQ/XkDZCiqkMKxyU5D5nGPaxr/2JNYvAgYsoCYuOLGOanKDPjCCQiTT96p7A==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.0.0 || ^2.0.0 || ^3.0.0
- dependencies:
- commenting: 1.1.0
- glob: 7.2.3
- lodash: 4.17.21
- magic-string: 0.26.7
- mkdirp: 1.0.4
- moment: 2.29.4
- package-name-regex: 2.0.6
- rollup: 3.27.0
- spdx-expression-validate: 2.0.0
- spdx-satisfies: 5.0.1
- dev: true
-
- /rollup-plugin-license@3.2.0(rollup@3.29.4):
+ /rollup-plugin-license@3.2.0(rollup@4.9.2):
resolution: {integrity: sha512-gLtSOTE3hZ/mDgxg1HvYz87timTpLlyWXnV7OTyYMhn+Esek+xKxAOjtTsYnfMFGtsBWX+hvqC4b2Ct5ABpE6A==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -21440,10 +19489,9 @@ packages:
mkdirp: 3.0.1
moment: 2.29.4
package-name-regex: 2.0.6
- rollup: 3.29.4
+ rollup: 4.9.2
spdx-expression-validate: 2.0.0
spdx-satisfies: 5.0.1
- dev: false
/rollup-plugin-sourcemaps@0.6.3(@types/node@12.20.55)(rollup@2.79.1):
resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==}
@@ -21461,21 +19509,8 @@ packages:
source-map-resolve: 0.6.0
dev: true
- /rollup-plugin-svelte@7.1.6(rollup@3.27.0)(svelte@4.1.2):
- resolution: {integrity: sha512-nVFRBpGWI2qUY1OcSiEEA/kjCY2+vAjO9BI8SzA7NRrh2GTunLd6w2EYmnMt/atgdg8GvcNjLsmZmbQs/u4SQA==}
- engines: {node: '>=10'}
- peerDependencies:
- rollup: '>=2.0.0'
- svelte: '>=3.5.0'
- dependencies:
- '@rollup/pluginutils': 4.2.1
- resolve.exports: 2.0.2
- rollup: 3.27.0
- svelte: 4.1.2
- dev: true
-
- /rollup-plugin-visualizer@5.11.0(rollup@3.29.4):
- resolution: {integrity: sha512-exM0Ms2SN3AgTzMeW7y46neZQcyLY7eKwWAop1ZoRTCZwyrIRdMMJ6JjToAJbML77X/9N8ZEpmXG4Z/Clb9k8g==}
+ /rollup-plugin-visualizer@5.12.0(rollup@3.29.4):
+ resolution: {integrity: sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==}
engines: {node: '>=14'}
hasBin: true
peerDependencies:
@@ -21491,19 +19526,19 @@ packages:
yargs: 17.7.2
dev: true
- /rollup-plugin-visualizer@5.9.2(rollup@3.29.4):
- resolution: {integrity: sha512-waHktD5mlWrYFrhOLbti4YgQCn1uR24nYsNuXxg7LkPH8KdTXVWR9DNY1WU0QqokyMixVXJS4J04HNrVTMP01A==}
+ /rollup-plugin-visualizer@5.12.0(rollup@4.9.2):
+ resolution: {integrity: sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==}
engines: {node: '>=14'}
hasBin: true
peerDependencies:
- rollup: 2.x || 3.x
+ rollup: 2.x || 3.x || 4.x
peerDependenciesMeta:
rollup:
optional: true
dependencies:
open: 8.4.2
picomatch: 2.3.1
- rollup: 3.29.4
+ rollup: 4.9.2
source-map: 0.7.4
yargs: 17.7.2
dev: false
@@ -21511,17 +19546,17 @@ packages:
/rollup-preset-solid@2.0.1:
resolution: {integrity: sha512-CPJn3SqADlIxhAW3jwZuAFRyZcz7HPeUAz4f+6BzulxHnK4v6tgoTbMvk8vEsfsvHwiTmX93KHIKdf79aTdVSA==}
dependencies:
- '@babel/core': 7.22.9
- '@babel/preset-env': 7.22.9(@babel/core@7.22.9)
- '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9)
- '@rollup/plugin-babel': 6.0.3(@babel/core@7.22.9)(rollup@3.27.0)
- '@rollup/plugin-node-resolve': 15.1.0(rollup@3.27.0)
- '@rollup/plugin-terser': 0.1.0(rollup@3.27.0)
- babel-preset-solid: 1.7.7(@babel/core@7.22.9)
+ '@babel/core': 7.23.7
+ '@babel/preset-env': 7.22.9(@babel/core@7.23.7)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
+ '@rollup/plugin-babel': 6.0.3(@babel/core@7.23.7)(rollup@3.29.4)
+ '@rollup/plugin-node-resolve': 15.2.3(rollup@3.29.4)
+ '@rollup/plugin-terser': 0.1.0(rollup@3.29.4)
+ babel-preset-solid: 1.8.6(@babel/core@7.23.7)
colorette: 2.0.20
esbuild: 0.15.18
merge-anything: 5.1.7
- rollup: 3.27.0
+ rollup: 3.29.4
typescript: 4.9.5
transitivePeerDependencies:
- '@types/babel__core'
@@ -21536,40 +19571,33 @@ packages:
fsevents: 2.3.3
dev: true
- /rollup@3.27.0:
- resolution: {integrity: sha512-aOltLCrYZ0FhJDm7fCqwTjIUEVjWjcydKBV/Zeid6Mn8BWgDCUBBWT5beM5ieForYNo/1ZHuGJdka26kvQ3Gzg==}
- engines: {node: '>=14.18.0', npm: '>=8.0.0'}
- hasBin: true
- optionalDependencies:
- 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
+ dev: true
- /rollup@4.5.2:
- resolution: {integrity: sha512-CRK1uoROBfkcqrZKyaFcqCcZWNsvJ6yVYZkqTlRocZhO2s5yER6Z3f/QaYtO8RGyloPnmhwgzuPQpNGeK210xQ==}
+ /rollup@4.9.2:
+ resolution: {integrity: sha512-66RB8OtFKUTozmVEh3qyNfH+b+z2RXBVloqO2KCC/pjFaGaHtxP9fVfOQKPSGXg2mElmjmxjW/fZ7iKrEpMH5Q==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.5.2
- '@rollup/rollup-android-arm64': 4.5.2
- '@rollup/rollup-darwin-arm64': 4.5.2
- '@rollup/rollup-darwin-x64': 4.5.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.5.2
- '@rollup/rollup-linux-arm64-gnu': 4.5.2
- '@rollup/rollup-linux-arm64-musl': 4.5.2
- '@rollup/rollup-linux-x64-gnu': 4.5.2
- '@rollup/rollup-linux-x64-musl': 4.5.2
- '@rollup/rollup-win32-arm64-msvc': 4.5.2
- '@rollup/rollup-win32-ia32-msvc': 4.5.2
- '@rollup/rollup-win32-x64-msvc': 4.5.2
+ '@rollup/rollup-android-arm-eabi': 4.9.2
+ '@rollup/rollup-android-arm64': 4.9.2
+ '@rollup/rollup-darwin-arm64': 4.9.2
+ '@rollup/rollup-darwin-x64': 4.9.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.9.2
+ '@rollup/rollup-linux-arm64-gnu': 4.9.2
+ '@rollup/rollup-linux-arm64-musl': 4.9.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.9.2
+ '@rollup/rollup-linux-x64-gnu': 4.9.2
+ '@rollup/rollup-linux-x64-musl': 4.9.2
+ '@rollup/rollup-win32-arm64-msvc': 4.9.2
+ '@rollup/rollup-win32-ia32-msvc': 4.9.2
+ '@rollup/rollup-win32-x64-msvc': 4.9.2
fsevents: 2.3.3
- dev: true
/rrweb-cssom@0.6.0:
resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
@@ -21601,13 +19629,7 @@ packages:
dev: true
/rxjs@7.5.7:
- resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==}
- dependencies:
- tslib: 2.6.1
- dev: true
-
- /rxjs@7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+ resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==}
dependencies:
tslib: 2.6.1
dev: true
@@ -21647,6 +19669,7 @@ packages:
resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
dependencies:
ret: 0.1.15
+ dev: false
/safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
@@ -21660,7 +19683,7 @@ packages:
rimraf: 2.7.1
dev: true
- /sandpack-vue3@3.1.7(@lezer/common@1.1.2)(vue@3.3.4):
+ /sandpack-vue3@3.1.7(@lezer/common@1.2.0)(vue@3.4.3):
resolution: {integrity: sha512-MYdjtEvtrmxzajiKi6S0LIdd0pAR+Sv0lR8d4XVz6c0fcfDSWg1cw6Cv3RhSG7YIH+zxRlaIbENnwIVBSpW/Kg==}
engines: {node: '>=16'}
peerDependencies:
@@ -21669,7 +19692,7 @@ packages:
vue:
optional: true
dependencies:
- '@codemirror/autocomplete': 6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.1.2)
+ '@codemirror/autocomplete': 6.9.1(@codemirror/language@6.9.0)(@codemirror/state@6.2.1)(@codemirror/view@6.19.0)(@lezer/common@1.2.0)
'@codemirror/commands': 6.2.5
'@codemirror/lang-css': 6.2.1(@codemirror/view@6.19.0)
'@codemirror/lang-html': 6.4.6
@@ -21680,11 +19703,11 @@ packages:
'@codesandbox/sandpack-client': 2.7.1
'@lezer/highlight': 1.1.6
'@stitches/core': 1.2.8
- ansi-to-vue3: 0.1.2(vue@3.3.4)
+ ansi-to-vue3: 0.1.2(vue@3.4.3)
clean-set: 1.1.2
dequal: 2.0.3
lz-string: 1.5.0
- vue: 3.3.4
+ vue: 3.4.3(typescript@4.9.5)
transitivePeerDependencies:
- '@lezer/common'
dev: false
@@ -21754,17 +19777,18 @@ packages:
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
+ dev: false
- /scheduler@0.21.0:
- resolution: {integrity: sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ==}
+ /scheduler@0.23.0:
+ resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
dependencies:
loose-envify: 1.4.0
- dev: true
- /scheduler@0.23.0:
- resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
+ /scheduler@0.24.0-canary-efb381bbf-20230505:
+ resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==}
dependencies:
loose-envify: 1.4.0
+ dev: true
/schema-utils@2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
@@ -21849,14 +19873,6 @@ packages:
lru-cache: 6.0.0
dev: true
- /semver@7.5.2:
- resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- lru-cache: 6.0.0
- dev: false
-
/semver@7.5.4:
resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
engines: {node: '>=10'}
@@ -21896,8 +19912,8 @@ packages:
randombytes: 2.1.0
dev: true
- /seroval@0.5.1:
- resolution: {integrity: sha512-ZfhQVB59hmIauJG5Ydynupy8KHyr5imGNtdDhbZG68Ufh1Ynkv9KOYOAABf71oVbQxJ8VkWnMHAjEHE7fWkH5g==}
+ /seroval@0.15.1:
+ resolution: {integrity: sha512-OPVtf0qmeC7RW+ScVX+7aOS+xoIM7pWcZ0jOWg2aTZigCydgRB04adfteBRbecZnnrO1WuGQ+C3tLeBBzX2zSQ==}
engines: {node: '>=10'}
dev: true
@@ -21964,6 +19980,7 @@ packages:
is-extendable: 0.1.1
is-plain-object: 2.0.4
split-string: 3.1.0
+ dev: false
/setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
@@ -21983,24 +20000,12 @@ packages:
kind-of: 6.0.3
dev: true
- /shebang-command@1.2.0:
- resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- shebang-regex: 1.0.0
- dev: true
-
/shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
- /shebang-regex@1.0.0:
- resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
@@ -22025,7 +20030,7 @@ packages:
dependencies:
call-bind: 1.0.5
get-intrinsic: 1.2.2
- object-inspect: 1.12.3
+ object-inspect: 1.13.1
dev: true
/siginfo@2.0.0:
@@ -22039,16 +20044,6 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- /simple-git@3.19.1:
- resolution: {integrity: sha512-Ck+rcjVaE1HotraRAS8u/+xgTvToTuoMkT9/l9lvuP5jftwnYUp6DwuJzsKErHgfyRk8IB8pqGHWEbM3tLgV1w==}
- dependencies:
- '@kwsites/file-exists': 1.1.1
- '@kwsites/promise-deferred': 1.1.1
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/simple-git@3.21.0:
resolution: {integrity: sha512-oTzw9248AF5bDTMk9MrxsRzEzivMlY+DWH0yWS4VYpMhNLhDWnN06pCtaUyPnqv/FpsdeNmRqmZugMABHRPdDA==}
dependencies:
@@ -22057,7 +20052,6 @@ packages:
debug: 4.3.4
transitivePeerDependencies:
- supports-color
- dev: true
/simple-string-table@1.0.0:
resolution: {integrity: sha512-iflPccjsYtTN+Rqj35v/G+i9A04g2HgOPkPp/B5evznUD4VZ4egi/qcFwrUHgGZwJMZz+Aq5elow4Qqsodfflw==}
@@ -22118,12 +20112,14 @@ packages:
define-property: 1.0.0
isobject: 3.0.1
snapdragon-util: 3.0.1
+ dev: false
/snapdragon-util@3.0.1:
resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
+ dev: false
/snapdragon@0.8.2:
resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
@@ -22139,6 +20135,7 @@ packages:
use: 3.1.1
transitivePeerDependencies:
- supports-color
+ dev: false
/socket.io-adapter@2.5.2:
resolution: {integrity: sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==}
@@ -22212,22 +20209,22 @@ packages:
ip: 2.0.0
smart-buffer: 4.2.0
- /solid-js@1.7.8:
- resolution: {integrity: sha512-XHBWk1FvFd0JMKljko7FfhefJMTSgYEuVKcQ2a8hzRXfiuSJAGsrPPafqEo+f6l+e8Oe3cROSpIL6kbzjC1fjQ==}
+ /solid-js@1.8.7:
+ resolution: {integrity: sha512-9dzrSVieh2zj3SnJ02II6xZkonR6c+j/91b7XZUNcC6xSaldlqjjGh98F1fk5cRJ8ZTkzqF5fPIWDxEOs6QZXA==}
dependencies:
- csstype: 3.1.2
- seroval: 0.5.1
+ csstype: 3.1.3
+ seroval: 0.15.1
dev: true
- /solid-refresh@0.5.3(solid-js@1.7.8):
+ /solid-refresh@0.5.3(solid-js@1.8.7):
resolution: {integrity: sha512-Otg5it5sjOdZbQZJnvo99TEBAr6J7PQ5AubZLNU6szZzg3RQQ5MX04oteBIIGDs0y2Qv8aXKm9e44V8z+UnFdw==}
peerDependencies:
solid-js: ^1.3
dependencies:
- '@babel/generator': 7.23.4
+ '@babel/generator': 7.23.6
'@babel/helper-module-imports': 7.22.15
- '@babel/types': 7.23.4
- solid-js: 1.7.8
+ '@babel/types': 7.23.6
+ solid-js: 1.8.7
dev: true
/sorcery@0.11.0:
@@ -22265,6 +20262,7 @@ packages:
resolve-url: 0.2.1
source-map-url: 0.4.1
urix: 0.1.0
+ dev: false
/source-map-resolve@0.6.0:
resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==}
@@ -22290,6 +20288,7 @@ packages:
/source-map-url@0.4.1:
resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
deprecated: See https://github.com/lydell/source-map-url#deprecated
+ dev: false
/source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
@@ -22382,6 +20381,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
extend-shallow: 3.0.2
+ dev: false
/split2@1.1.1:
resolution: {integrity: sha512-cfurE2q8LamExY+lJ9Ex3ZfBwqAPduzOKVscPDXNCLLMvyaeD3DTz1yk7fVIs6Chco+12XeD0BB6HEoYzPYbXA==}
@@ -22471,6 +20471,7 @@ packages:
dependencies:
define-property: 0.2.5
object-copy: 0.1.0
+ dev: false
/statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
@@ -22482,19 +20483,15 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /std-env@3.5.0:
- resolution: {integrity: sha512-JGUEaALvL0Mf6JCfYnJOTcobY+Nc7sG/TemDRBqCA0wEr4DER7zDchaaixTlmOxAjG1uRJmX82EQcxwTQTkqVA==}
- dev: true
-
- /std-env@3.6.0:
- resolution: {integrity: sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==}
+ /std-env@3.7.0:
+ resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
dev: true
/stop-iteration-iterator@1.0.0:
resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
engines: {node: '>= 0.4'}
dependencies:
- internal-slot: 1.0.5
+ internal-slot: 1.0.6
dev: true
/streamroller@3.1.5:
@@ -22612,11 +20609,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /strip-eof@1.0.0:
- resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
@@ -22642,7 +20634,11 @@ packages:
/strip-literal@1.3.0:
resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
+ dev: true
+
+ /strnum@1.0.5:
+ resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
dev: true
/strong-log-transformer@2.1.0:
@@ -22721,6 +20717,7 @@ packages:
/supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
+ requiresBuild: true
dependencies:
has-flag: 3.0.0
dev: true
@@ -22754,15 +20751,15 @@ packages:
peerDependencies:
svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0
dependencies:
- '@jridgewell/trace-mapping': 0.3.18
+ '@jridgewell/trace-mapping': 0.3.20
chokidar: 3.5.3
- fast-glob: 3.3.1
+ fast-glob: 3.3.2
import-fresh: 3.3.0
picocolors: 1.0.0
sade: 1.8.1
svelte: 4.1.2
- svelte-preprocess: 5.0.4(svelte@4.1.2)(typescript@5.1.6)
- typescript: 5.1.6
+ svelte-preprocess: 5.0.4(svelte@4.1.2)(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- '@babel/core'
- coffeescript
@@ -22784,7 +20781,7 @@ packages:
svelte: 4.1.2
dev: true
- /svelte-preprocess@5.0.4(svelte@4.1.2)(typescript@5.1.6):
+ /svelte-preprocess@5.0.4(svelte@4.1.2)(typescript@5.3.3):
resolution: {integrity: sha512-ABia2QegosxOGsVlsSBJvoWeXy1wUKSfF7SWJdTjLAbx/Y3SrVevvvbFNQqrSJw89+lNSsM58SipmZJ5SRi5iw==}
engines: {node: '>= 14.10.0'}
requiresBuild: true
@@ -22828,10 +20825,10 @@ packages:
sorcery: 0.11.0
strip-indent: 3.0.0
svelte: 4.1.2
- typescript: 5.1.6
+ typescript: 5.3.3
dev: true
- /svelte2tsx@0.6.27(svelte@4.1.2)(typescript@5.1.6):
+ /svelte2tsx@0.6.27(svelte@4.1.2)(typescript@5.3.3):
resolution: {integrity: sha512-E1uPW1o6VsbRz+nUk3fznZ2lSmCITAJoNu8AYefWSvIwE2pSB01i5sId4RMbWNzfcwCQl1DcgGShCPcldl4rvg==}
peerDependencies:
svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0
@@ -22840,7 +20837,7 @@ packages:
dedent-js: 1.0.1
pascal-case: 3.1.2
svelte: 4.1.2
- typescript: 5.1.6
+ typescript: 5.3.3
dev: true
/svelte@4.1.2:
@@ -22849,8 +20846,8 @@ packages:
dependencies:
'@ampproject/remapping': 2.2.1
'@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.18
- acorn: 8.10.0
+ '@jridgewell/trace-mapping': 0.3.20
+ acorn: 8.11.3
aria-query: 5.3.0
axobject-query: 3.2.1
code-red: 1.0.3
@@ -22858,7 +20855,7 @@ packages:
estree-walker: 3.0.3
is-reference: 3.0.1
locate-character: 3.0.0
- magic-string: 0.30.2
+ magic-string: 0.30.5
periscopic: 3.1.0
dev: true
@@ -22890,19 +20887,6 @@ packages:
svg-pathdata: 6.0.3
dev: false
- /svgo@3.0.2:
- resolution: {integrity: sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==}
- engines: {node: '>=14.0.0'}
- hasBin: true
- dependencies:
- '@trysound/sax': 0.2.0
- commander: 7.2.0
- css-select: 5.1.0
- css-tree: 2.3.1
- csso: 5.0.5
- picocolors: 1.0.0
- dev: false
-
/svgo@3.0.5:
resolution: {integrity: sha512-HQKHEo73pMNOlDlBcLgZRcHW2+1wo7bFYayAXkGN0l/2+h68KjlfZyMRhdhaGvoHV2eApOovl12zoFz42sT6rQ==}
engines: {node: '>=14.0.0'}
@@ -22929,7 +20913,6 @@ packages:
css-what: 6.1.0
csso: 5.0.5
picocolors: 1.0.0
- dev: true
/svgpath@2.6.0:
resolution: {integrity: sha512-OIWR6bKzXvdXYyO4DK/UWa1VA1JeKq8E+0ug2DG98Y/vOmMpfZNj+TIG988HjfYSqtcy/hFOtZq/n/j5GSESNg==}
@@ -23031,12 +21014,9 @@ packages:
mkdirp: 1.0.4
yallist: 4.0.0
- /temp@0.8.3:
- resolution: {integrity: sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==}
- engines: {'0': node >=0.8.0}
- dependencies:
- os-tmpdir: 1.0.2
- rimraf: 2.2.8
+ /temp-dir@2.0.0:
+ resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
+ engines: {node: '>=8'}
dev: true
/temp@0.8.4:
@@ -23077,18 +21057,7 @@ packages:
hasBin: true
dependencies:
'@jridgewell/source-map': 0.3.5
- acorn: 8.11.2
- commander: 2.20.3
- source-map-support: 0.5.21
- dev: true
-
- /terser@5.24.0:
- resolution: {integrity: sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- '@jridgewell/source-map': 0.3.5
- acorn: 8.11.2
+ acorn: 8.11.3
commander: 2.20.3
source-map-support: 0.5.21
dev: true
@@ -23099,7 +21068,7 @@ packages:
hasBin: true
dependencies:
'@jridgewell/source-map': 0.3.5
- acorn: 8.11.2
+ acorn: 8.11.3
commander: 2.20.3
source-map-support: 0.5.21
dev: true
@@ -23165,6 +21134,11 @@ packages:
engines: {node: '>=14.0.0'}
dev: true
+ /tinypool@0.7.0:
+ resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==}
+ engines: {node: '>=14.0.0'}
+ dev: true
+
/tinypool@0.8.1:
resolution: {integrity: sha512-zBTCK0cCgRROxvs9c0CGK838sPkeokNGdQVUUwHAbynHFlmyJYj825f/oRs528HaIJ97lo0pLIlDUzwN+IorWg==}
engines: {node: '>=14.0.0'}
@@ -23209,6 +21183,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
+ dev: false
/to-regex-range@2.1.1:
resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
@@ -23216,6 +21191,7 @@ packages:
dependencies:
is-number: 3.0.0
repeat-string: 1.6.1
+ dev: false
/to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
@@ -23231,6 +21207,7 @@ packages:
extend-shallow: 3.0.2
regex-not: 1.0.2
safe-regex: 1.1.0
+ dev: false
/toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
@@ -23257,7 +21234,7 @@ packages:
engines: {node: '>=0.8'}
dependencies:
psl: 1.9.0
- punycode: 2.3.0
+ punycode: 2.3.1
dev: true
/tough-cookie@4.1.3:
@@ -23265,7 +21242,7 @@ packages:
engines: {node: '>=6'}
dependencies:
psl: 1.9.0
- punycode: 2.3.0
+ punycode: 2.3.1
universalify: 0.2.0
url-parse: 1.5.10
dev: true
@@ -23278,7 +21255,7 @@ packages:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
engines: {node: '>=12'}
dependencies:
- punycode: 2.3.0
+ punycode: 2.3.1
dev: true
/tr46@5.0.0:
@@ -23329,8 +21306,8 @@ packages:
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
'@types/node': 12.20.55
- acorn: 8.10.0
- acorn-walk: 8.2.0
+ acorn: 8.11.3
+ acorn-walk: 8.3.0
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
@@ -23516,10 +21493,9 @@ packages:
resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
engines: {node: '>=4.2.0'}
hasBin: true
- dev: true
- /typescript@5.1.6:
- resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
+ /typescript@5.3.3:
+ resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
engines: {node: '>=14.17'}
hasBin: true
dev: true
@@ -23528,24 +21504,10 @@ packages:
resolution: {integrity: sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==}
dev: true
- /ufo@1.2.0:
- resolution: {integrity: sha512-RsPyTbqORDNDxqAdQPQBpgqhWle1VcTSou/FraClYlHf6TZnQcGslpLcAphNR+sQW4q5lLWLbOsRlh9j24baQg==}
- dev: true
-
/ufo@1.3.2:
resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==}
dev: true
- /uglify-es@3.3.9:
- resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==}
- engines: {node: '>=0.8.0'}
- deprecated: support for ECMAScript is superseded by `uglify-js` as of v3.13.0
- hasBin: true
- dependencies:
- commander: 2.13.0
- source-map: 0.6.1
- dev: true
-
/unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
@@ -23569,14 +21531,10 @@ packages:
/unctx@2.3.1:
resolution: {integrity: sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==}
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
estree-walker: 3.0.3
magic-string: 0.30.5
- unplugin: 1.5.1
- dev: true
-
- /undici-types@5.26.5:
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ unplugin: 1.6.0
dev: true
/undici@5.28.2:
@@ -23586,23 +21544,13 @@ packages:
'@fastify/busboy': 2.1.0
dev: true
- /unenv@1.7.1:
- resolution: {integrity: sha512-iINrdDcqoAjGqoIeOW85TIfI13KGgW1VWwqNO/IzcvvZ/JGBApMAQPZhWcKhE5oC/woFSpCSXg5lc7r1UaLPng==}
- dependencies:
- consola: 3.2.3
- defu: 6.1.2
- mime: 3.0.0
- node-fetch-native: 1.4.0
- pathe: 1.1.1
- dev: true
-
/unenv@1.8.0:
resolution: {integrity: sha512-uIGbdCWZfhRRmyKj1UioCepQ0jpq638j/Cf0xFTn4zD1nGJ2lSdzYHLzfdXN791oo/0juUiSWW1fBklXMTsuqg==}
dependencies:
consola: 3.2.3
defu: 6.1.3
mime: 3.0.0
- node-fetch-native: 1.4.1
+ node-fetch-native: 1.6.1
pathe: 1.1.1
dev: true
@@ -23629,11 +21577,13 @@ packages:
engines: {node: '>=4'}
dev: true
- /unimport@3.6.1(rollup@3.29.4):
- resolution: {integrity: sha512-zKzbp8AQ+l8QK3XrONtUBdgBbMI8TkGh8hBYF77ZkVqMLLIAHwGSwJRFolPQMBx/5pezeRKvmu2gzlqnxRZeqQ==}
+ /unimport@3.7.1(rollup@3.29.4):
+ resolution: {integrity: sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==}
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
+ acorn: 8.11.3
escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
fast-glob: 3.3.2
local-pkg: 0.5.0
magic-string: 0.30.5
@@ -23642,7 +21592,7 @@ packages:
pkg-types: 1.0.3
scule: 1.1.1
strip-literal: 1.3.0
- unplugin: 1.5.1
+ unplugin: 1.6.0
transitivePeerDependencies:
- rollup
dev: true
@@ -23655,6 +21605,7 @@ packages:
get-value: 2.0.6
is-extendable: 0.1.1
set-value: 2.0.1
+ dev: false
/unique-filename@1.1.1:
resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
@@ -23738,11 +21689,6 @@ packages:
engines: {node: '>= 4.0.0'}
dev: true
- /universalify@2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
- engines: {node: '>= 10.0.0'}
- dev: false
-
/universalify@2.0.1:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
@@ -23752,10 +21698,10 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /unplugin@1.5.1:
- resolution: {integrity: sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==}
+ /unplugin@1.6.0:
+ resolution: {integrity: sha512-BfJEpWBu3aE/AyHx8VaNE/WgouoQxgH9baAiH82JjX8cqVyi3uJQstqwD5J+SZxIK326SZIhsSZlALXVBCknTQ==}
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
chokidar: 3.5.3
webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.1
@@ -23767,6 +21713,7 @@ packages:
dependencies:
has-value: 0.3.1
isobject: 3.0.1
+ dev: false
/unstorage@1.10.1:
resolution: {integrity: sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==}
@@ -23817,7 +21764,7 @@ packages:
listhen: 1.5.5
lru-cache: 10.1.0
mri: 1.2.0
- node-fetch-native: 1.4.1
+ node-fetch-native: 1.6.1
ofetch: 1.3.3
ufo: 1.3.2
transitivePeerDependencies:
@@ -23833,24 +21780,13 @@ packages:
pathe: 1.1.1
dev: true
- /update-browserslist-db@1.0.11(browserslist@4.21.10):
- resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.21.10
- escalade: 3.1.1
- picocolors: 1.0.0
- dev: true
-
- /update-browserslist-db@1.0.13(browserslist@4.22.1):
+ /update-browserslist-db@1.0.13(browserslist@4.22.2):
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.22.2
escalade: 3.1.1
picocolors: 1.0.0
dev: true
@@ -23862,12 +21798,13 @@ packages:
/uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
- punycode: 2.3.0
+ punycode: 2.3.1
dev: true
/urix@0.1.0:
resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
deprecated: Please see https://github.com/lydell/urix#deprecated
+ dev: false
/url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
@@ -23880,17 +21817,10 @@ packages:
resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
dev: true
- /use-sync-external-store@1.2.0(react@18.2.0):
- resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- react: 18.2.0
- dev: true
-
/use@3.1.1:
resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
engines: {node: '>=0.10.0'}
+ dev: false
/utif@2.0.1:
resolution: {integrity: sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==}
@@ -23973,7 +21903,7 @@ packages:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- /vite-node@0.32.4(@types/node@20.9.2):
+ /vite-node@0.32.4(@types/node@12.20.55):
resolution: {integrity: sha512-L2gIw+dCxO0LK14QnUMoqSYpa9XRGnTTTDjW2h19Mr+GR0EFj4vx52W41gFXfMLqpA00eK4ZjOVYo1Xk//LFEw==}
engines: {node: '>=v14.18.0'}
hasBin: true
@@ -23983,7 +21913,29 @@ packages:
mlly: 1.4.2
pathe: 1.1.1
picocolors: 1.0.0
- vite: 4.5.0(@types/node@20.9.2)
+ vite: 4.5.1(@types/node@12.20.55)
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: true
+
+ /vite-node@0.34.2(@types/node@12.20.55):
+ resolution: {integrity: sha512-JtW249Zm3FB+F7pQfH56uWSdlltCo1IOkZW5oHBzeQo0iX4jtC7o1t9aILMGd9kVekXBP2lfJBEQt9rBh07ebA==}
+ engines: {node: '>=v14.18.0'}
+ hasBin: true
+ dependencies:
+ cac: 6.7.14
+ debug: 4.3.4
+ mlly: 1.4.2
+ pathe: 1.1.1
+ picocolors: 1.0.0
+ vite: 4.5.1(@types/node@12.20.55)
transitivePeerDependencies:
- '@types/node'
- less
@@ -23995,8 +21947,8 @@ packages:
- terser
dev: true
- /vite-node@1.0.4:
- resolution: {integrity: sha512-9xQQtHdsz5Qn8hqbV7UKqkm8YkJhzT/zr41Dmt5N7AlD8hJXw/Z7y0QiD5I8lnTthV9Rvcvi0QW7PI0Fq83ZPg==}
+ /vite-node@1.1.1:
+ resolution: {integrity: sha512-2bGE5w4jvym5v8llF6Gu1oBrmImoNSs4WmRVcavnG2me6+8UQntTqLiAMFyiAobp+ZXhj5ZFhI7SmLiFr/jrow==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
dependencies:
@@ -24004,7 +21956,7 @@ packages:
debug: 4.3.4
pathe: 1.1.1
picocolors: 1.0.0
- vite: 5.0.2
+ vite: 5.0.10
transitivePeerDependencies:
- '@types/node'
- less
@@ -24016,7 +21968,7 @@ packages:
- terser
dev: true
- /vite-plugin-singlefile@0.5.1(vite@4.5.0):
+ /vite-plugin-singlefile@0.5.1(vite@5.0.10):
resolution: {integrity: sha512-yA9lWd6bSet0Br4/s34YPNnVBlDl2MbxlHDRrLrBCncD7q+HO5GGsw29Ymp+ydZ3eb4UU2GECgX2MJZW+qnoeQ==}
peerDependencies:
vite: ^2.1.2
@@ -24025,30 +21977,30 @@ packages:
esbuild: 0.9.7
rollup: 2.79.1
rollup-plugin-esbuild: 3.0.4(esbuild@0.9.7)(rollup@2.79.1)
- vite: 4.5.0(@types/node@20.9.2)
+ vite: 5.0.10
dev: true
- /vite-plugin-solid@2.8.0(solid-js@1.7.8)(vite@4.5.0):
+ /vite-plugin-solid@2.8.0(solid-js@1.8.7)(vite@5.0.10):
resolution: {integrity: sha512-n5FAm7ZmTl94VWUoiJCgG7bouF2NlC9CA1wY/qbVnkFbYDWk++bFWyNoU48aLJ+lMtzNeYzJypJXOHzFKxL9xA==}
peerDependencies:
solid-js: ^1.7.2
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
dependencies:
- '@babel/core': 7.23.3
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.3)
+ '@babel/core': 7.23.7
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
'@types/babel__core': 7.20.5
- babel-preset-solid: 1.8.6(@babel/core@7.23.3)
+ babel-preset-solid: 1.8.6(@babel/core@7.23.7)
merge-anything: 5.1.7
- solid-js: 1.7.8
- solid-refresh: 0.5.3(solid-js@1.7.8)
- vite: 4.5.0(@types/node@20.9.2)
- vitefu: 0.2.5(vite@4.5.0)
+ solid-js: 1.8.7
+ solid-refresh: 0.5.3(solid-js@1.8.7)
+ vite: 5.0.10
+ vitefu: 0.2.5(vite@5.0.10)
transitivePeerDependencies:
- supports-color
dev: true
- /vite@4.5.0(@types/node@20.9.2):
- resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
+ /vite@4.5.1(@types/node@12.20.55):
+ resolution: {integrity: sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -24075,16 +22027,16 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 20.9.2
+ '@types/node': 12.20.55
esbuild: 0.18.20
- postcss: 8.4.31
+ postcss: 8.4.32
rollup: 3.29.4
optionalDependencies:
fsevents: 2.3.3
dev: true
- /vite@5.0.2:
- resolution: {integrity: sha512-6CCq1CAJCNM1ya2ZZA7+jS2KgnhbzvxakmlIjN24cF/PXhRMzpM/z8QgsVJA/Dm5fWUWnVEsmtBoMhmerPxT0g==}
+ /vite@5.0.10:
+ resolution: {integrity: sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -24111,25 +22063,14 @@ packages:
terser:
optional: true
dependencies:
- esbuild: 0.19.6
- postcss: 8.4.31
- rollup: 4.5.2
+ esbuild: 0.19.11
+ postcss: 8.4.32
+ rollup: 4.9.2
optionalDependencies:
fsevents: 2.3.3
dev: true
- /vitefu@0.2.4(vite@4.5.0):
- resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==}
- peerDependencies:
- vite: ^3.0.0 || ^4.0.0
- peerDependenciesMeta:
- vite:
- optional: true
- dependencies:
- vite: 4.5.0(@types/node@20.9.2)
- dev: true
-
- /vitefu@0.2.5(vite@4.5.0):
+ /vitefu@0.2.5(vite@5.0.10):
resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
peerDependencies:
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
@@ -24137,7 +22078,7 @@ packages:
vite:
optional: true
dependencies:
- vite: 4.5.0(@types/node@20.9.2)
+ vite: 5.0.10
dev: true
/vitepress@1.0.0-rc.30(@algolia/client-search@4.22.0)(fuse.js@6.6.2)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@4.9.5):
@@ -24155,18 +22096,18 @@ packages:
'@docsearch/css': 3.5.2
'@docsearch/js': 3.5.2(@algolia/client-search@4.22.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)
'@types/markdown-it': 13.0.7
- '@vitejs/plugin-vue': 4.5.0(vite@5.0.2)(vue@3.3.8)
+ '@vitejs/plugin-vue': 4.5.0(vite@5.0.10)(vue@3.4.3)
'@vue/devtools-api': 6.5.1
- '@vueuse/core': 10.6.1(vue@3.3.8)
- '@vueuse/integrations': 10.6.1(focus-trap@7.5.4)(fuse.js@6.6.2)(vue@3.3.8)
+ '@vueuse/core': 10.6.1(vue@3.4.3)
+ '@vueuse/integrations': 10.6.1(focus-trap@7.5.4)(fuse.js@6.6.2)(vue@3.4.3)
focus-trap: 7.5.4
mark.js: 8.11.1
minisearch: 6.3.0
mrmime: 1.0.1
shikiji: 0.7.4
shikiji-transformers: 0.7.4
- vite: 5.0.2
- vue: 3.3.8(typescript@4.9.5)
+ vite: 5.0.10
+ vue: 3.4.3(typescript@4.9.5)
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -24195,7 +22136,7 @@ packages:
- universal-cookie
dev: true
- /vitest@0.32.4(jsdom@20.0.3):
+ /vitest@0.32.4:
resolution: {integrity: sha512-3czFm8RnrsWwIzVDu/Ca48Y/M+qh3vOnF16czJm98Q/AN1y3B6PBsyV8Re91Ty5s7txKNjEhpgtGPcfdbh2MZg==}
engines: {node: '>=v14.18.0'}
hasBin: true
@@ -24228,28 +22169,93 @@ packages:
dependencies:
'@types/chai': 4.3.10
'@types/chai-subset': 1.3.5
- '@types/node': 20.9.2
+ '@types/node': 12.20.55
'@vitest/expect': 0.32.4
'@vitest/runner': 0.32.4
'@vitest/snapshot': 0.32.4
'@vitest/spy': 0.32.4
'@vitest/utils': 0.32.4
- acorn: 8.11.2
+ acorn: 8.11.3
acorn-walk: 8.3.0
cac: 6.7.14
chai: 4.3.10
debug: 4.3.4
- jsdom: 20.0.3
local-pkg: 0.4.3
magic-string: 0.30.5
pathe: 1.1.1
picocolors: 1.0.0
- std-env: 3.5.0
+ std-env: 3.7.0
strip-literal: 1.3.0
tinybench: 2.5.1
tinypool: 0.5.0
- vite: 4.5.0(@types/node@20.9.2)
- vite-node: 0.32.4(@types/node@20.9.2)
+ vite: 4.5.1(@types/node@12.20.55)
+ vite-node: 0.32.4(@types/node@12.20.55)
+ why-is-node-running: 2.2.2
+ transitivePeerDependencies:
+ - less
+ - lightningcss
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: true
+
+ /vitest@0.34.2(jsdom@23.0.1):
+ resolution: {integrity: sha512-WgaIvBbjsSYMq/oiMlXUI7KflELmzM43BEvkdC/8b5CAod4ryAiY2z8uR6Crbi5Pjnu5oOmhKa9sy7uk6paBxQ==}
+ engines: {node: '>=v14.18.0'}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@vitest/browser': '*'
+ '@vitest/ui': '*'
+ happy-dom: '*'
+ jsdom: '*'
+ playwright: '*'
+ safaridriver: '*'
+ webdriverio: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+ playwright:
+ optional: true
+ safaridriver:
+ optional: true
+ webdriverio:
+ optional: true
+ dependencies:
+ '@types/chai': 4.3.10
+ '@types/chai-subset': 1.3.5
+ '@types/node': 12.20.55
+ '@vitest/expect': 0.34.2
+ '@vitest/runner': 0.34.2
+ '@vitest/snapshot': 0.34.2
+ '@vitest/spy': 0.34.2
+ '@vitest/utils': 0.34.2
+ acorn: 8.11.3
+ acorn-walk: 8.3.0
+ cac: 6.7.14
+ chai: 4.3.10
+ debug: 4.3.4
+ jsdom: 23.0.1
+ local-pkg: 0.4.3
+ magic-string: 0.30.5
+ pathe: 1.1.1
+ picocolors: 1.0.0
+ std-env: 3.7.0
+ strip-literal: 1.3.0
+ tinybench: 2.5.1
+ tinypool: 0.7.0
+ vite: 4.5.1(@types/node@12.20.55)
+ vite-node: 0.34.2(@types/node@12.20.55)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -24261,8 +22267,8 @@ packages:
- terser
dev: true
- /vitest@1.0.4(jsdom@23.0.1):
- resolution: {integrity: sha512-s1GQHp/UOeWEo4+aXDOeFBJwFzL6mjycbQwwKWX2QcYfh/7tIerS59hWQ20mxzupTJluA2SdwiBuWwQHH67ckg==}
+ /vitest@1.1.1(jsdom@20.0.3):
+ resolution: {integrity: sha512-Ry2qs4UOu/KjpXVfOCfQkTnwSXYGrqTbBZxw6reIYEFjSy1QUARRg5pxiI5BEXy+kBVntxUYNMlq4Co+2vD3fQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -24286,27 +22292,27 @@ packages:
jsdom:
optional: true
dependencies:
- '@vitest/expect': 1.0.4
- '@vitest/runner': 1.0.4
- '@vitest/snapshot': 1.0.4
- '@vitest/spy': 1.0.4
- '@vitest/utils': 1.0.4
+ '@vitest/expect': 1.1.1
+ '@vitest/runner': 1.1.1
+ '@vitest/snapshot': 1.1.1
+ '@vitest/spy': 1.1.1
+ '@vitest/utils': 1.1.1
acorn-walk: 8.3.0
cac: 6.7.14
chai: 4.3.10
debug: 4.3.4
execa: 8.0.1
- jsdom: 23.0.1
+ jsdom: 20.0.3
local-pkg: 0.5.0
magic-string: 0.30.5
pathe: 1.1.1
picocolors: 1.0.0
- std-env: 3.6.0
+ std-env: 3.7.0
strip-literal: 1.3.0
tinybench: 2.5.1
tinypool: 0.8.1
- vite: 5.0.2
- vite-node: 1.0.4
+ vite: 5.0.10
+ vite-node: 1.1.1
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -24327,22 +22333,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /vue-demi@0.14.5(vue@3.3.4):
- resolution: {integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.0.0-0 || ^2.6.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
- dependencies:
- vue: 3.3.4
- dev: false
+ /vue-component-type-helpers@1.8.27:
+ resolution: {integrity: sha512-0vOfAtI67UjeO1G6UiX5Kd76CqaQ67wrRZiOe7UAb9Jm6GzlUr/fC7CV90XfwapJRjpCMaZFhv1V0ajWRmE9Dg==}
+ dev: true
- /vue-demi@0.14.6(vue@3.3.8):
+ /vue-demi@0.14.6(vue@3.4.3):
resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
engines: {node: '>=12'}
hasBin: true
@@ -24354,8 +22349,7 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 3.3.8(typescript@4.9.5)
- dev: true
+ vue: 3.4.3(typescript@4.9.5)
/vue-template-compiler@2.7.14(vue@2.7.14):
resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==}
@@ -24369,46 +22363,26 @@ packages:
/vue@2.7.14:
resolution: {integrity: sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==}
+ deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details.
dependencies:
'@vue/compiler-sfc': 2.7.14
- csstype: 3.1.2
+ csstype: 3.1.3
dev: true
- /vue@3.2.45:
- resolution: {integrity: sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==}
- dependencies:
- '@vue/compiler-dom': 3.2.45
- '@vue/compiler-sfc': 3.2.45
- '@vue/runtime-dom': 3.2.45
- '@vue/server-renderer': 3.2.45(vue@3.2.45)
- '@vue/shared': 3.2.45
- dev: true
-
- /vue@3.3.4:
- resolution: {integrity: sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==}
- dependencies:
- '@vue/compiler-dom': 3.3.4
- '@vue/compiler-sfc': 3.3.4
- '@vue/runtime-dom': 3.3.4
- '@vue/server-renderer': 3.3.4(vue@3.3.4)
- '@vue/shared': 3.3.4
- dev: false
-
- /vue@3.3.8(typescript@4.9.5):
- resolution: {integrity: sha512-5VSX/3DabBikOXMsxzlW8JyfeLKlG9mzqnWgLQLty88vdZL7ZJgrdgBOmrArwxiLtmS+lNNpPcBYqrhE6TQW5w==}
+ /vue@3.4.3(typescript@4.9.5):
+ resolution: {integrity: sha512-GjN+culMAGv/mUbkIv8zMKItno8npcj5gWlXkSxf1SPTQf8eJ4A+YfHIvQFyL1IfuJcMl3soA7SmN1fRxbf/wA==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@vue/compiler-dom': 3.3.8
- '@vue/compiler-sfc': 3.3.8
- '@vue/runtime-dom': 3.3.8
- '@vue/server-renderer': 3.3.8(vue@3.3.8)
- '@vue/shared': 3.3.8
+ '@vue/compiler-dom': 3.4.3
+ '@vue/compiler-sfc': 3.4.3
+ '@vue/runtime-dom': 3.4.3
+ '@vue/server-renderer': 3.4.3(vue@3.4.3)
+ '@vue/shared': 3.4.3
typescript: 4.9.5
- dev: true
/w3c-keyname@2.2.8:
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
@@ -24550,7 +22524,7 @@ packages:
strip-ansi: 7.1.0
webpack: 5.76.1(esbuild@0.14.22)
webpack-dev-middleware: 5.3.0(webpack@5.76.1)
- ws: 8.13.0
+ ws: 8.15.1
transitivePeerDependencies:
- '@types/express'
- bufferutil
@@ -24605,9 +22579,9 @@ packages:
'@webassemblyjs/ast': 1.11.1
'@webassemblyjs/wasm-edit': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.11.2
- acorn-import-assertions: 1.9.0(acorn@8.11.2)
- browserslist: 4.21.10
+ acorn: 8.11.3
+ acorn-import-assertions: 1.9.0(acorn@8.11.3)
+ browserslist: 4.22.2
chrome-trace-event: 1.0.3
enhanced-resolve: 5.15.0
es-module-lexer: 0.9.3
@@ -24718,17 +22692,6 @@ packages:
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
dev: true
- /which-typed-array@1.1.11:
- resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==}
- engines: {node: '>= 0.4'}
- dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
- dev: true
-
/which-typed-array@1.1.13:
resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
engines: {node: '>= 0.4'}
@@ -24848,19 +22811,6 @@ packages:
optional: true
dev: true
- /ws@8.13.0:
- resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
- 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.15.1:
resolution: {integrity: sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==}
engines: {node: '>=10.0.0'}
@@ -24919,11 +22869,6 @@ packages:
resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
engines: {node: '>=4.0'}
- /xmlbuilder@15.1.1:
- resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==}
- engines: {node: '>=8.0'}
- dev: true
-
/xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
dev: true
@@ -24975,7 +22920,6 @@ packages:
/yaml@2.3.2:
resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==}
engines: {node: '>= 14'}
- dev: false
/yargs-parser@18.1.3:
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
diff --git a/tools/rollup-plugins/package.json b/tools/rollup-plugins/package.json
index f7ad6bd8a15..63e7d40a397 100644
--- a/tools/rollup-plugins/package.json
+++ b/tools/rollup-plugins/package.json
@@ -11,10 +11,10 @@
"dependencies": {
"@atomico/rollup-plugin-sizes": "^1.1.4",
"@rollup/plugin-replace": "^5.0.5",
- "esbuild": "^0.15.18",
- "rollup": "^3.29.4",
- "rollup-plugin-esbuild": "^4.10.3",
+ "esbuild": "^0.19.11",
+ "rollup": "^4.9.2",
+ "rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-license": "^3.2.0",
- "rollup-plugin-visualizer": "^5.9.2"
+ "rollup-plugin-visualizer": "^5.12.0"
}
}