diff --git a/apps/blog-app/src/app/app.config.ts b/apps/blog-app/src/app/app.config.ts index 653ebe096..55ea02cab 100644 --- a/apps/blog-app/src/app/app.config.ts +++ b/apps/blog-app/src/app/app.config.ts @@ -1,4 +1,5 @@ import { provideContent, withMarkdownRenderer } from '@analogjs/content'; +import { withShikiHighlighter } from '@analogjs/content/shiki-highlighter'; import { provideFileRouter } from '@analogjs/router'; import { provideHttpClient } from '@angular/common/http'; import { ApplicationConfig } from '@angular/core'; @@ -13,7 +14,12 @@ export const appConfig: ApplicationConfig = { provideHttpClient(), provideClientHydration(), provideContent( - withMarkdownRenderer({ loadMermaid: () => import('mermaid') }) + withMarkdownRenderer({ loadMermaid: () => import('mermaid') }), + withShikiHighlighter({ + highlighter: { + additionalLangs: ['mermaid'], + }, + }) ), provideFileRouter( withInMemoryScrolling({ anchorScrolling: 'enabled' }), diff --git a/apps/blog-app/src/content/2022-12-31-my-second-post.md b/apps/blog-app/src/content/2022-12-31-my-second-post.md index 96d5ae743..57af7cec4 100644 --- a/apps/blog-app/src/content/2022-12-31-my-second-post.md +++ b/apps/blog-app/src/content/2022-12-31-my-second-post.md @@ -18,6 +18,22 @@ function sum(n1: number, n2: number): number { } ``` +```angular-ts +@Component({ + template: ` + @if (show()) { +
'
+ );
+
+ testCode = "```diff-typescript\nconsole.log('Hello, world!');\n```";
+ result = await service.render(testCode);
+
+ expect(result).toContain(
+ ''
+ );
+ });
+
+ it('render should fall back to language-only highlighting if `diff` plugin is not imported', async () => {
+ const { service } = setup();
+ delete window.Prism.languages['diff'];
+ let testCode = "```diff-javascript\nconsole.log('Hello, world!');\n```";
+ let result = await service.render(testCode);
+
+ expect(result).toContain(
+ ''
+ );
+
+ testCode = "```diff-typescript\nconsole.log('Hello, world!');\n```";
+ result = await service.render(testCode);
+
+ expect(result).toContain(
+ ''
+ );
+ });
+});
diff --git a/packages/content/prism-highlighter/src/lib/prism-highlighter.ts b/packages/content/prism-highlighter/src/lib/prism-highlighter.ts
new file mode 100644
index 000000000..feb20bc48
--- /dev/null
+++ b/packages/content/prism-highlighter/src/lib/prism-highlighter.ts
@@ -0,0 +1,67 @@
+import { MarkedContentHighlighter } from '@analogjs/content';
+import { Injectable } from '@angular/core';
+import { markedHighlight } from 'marked-highlight';
+
+import 'prismjs';
+import 'prismjs/components/prism-bash';
+import 'prismjs/components/prism-css';
+import 'prismjs/components/prism-javascript';
+import 'prismjs/components/prism-json';
+import 'prismjs/components/prism-markup';
+import 'prismjs/components/prism-typescript';
+import 'prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard';
+import 'prismjs/plugins/toolbar/prism-toolbar';
+import './prism/angular';
+
+declare const Prism: typeof import('prismjs');
+
+@Injectable()
+export class PrismHighlighter extends MarkedContentHighlighter {
+ override augmentCodeBlock(code: string, lang: string): string {
+ const classes =
+ lang.startsWith('diff') && Prism.languages['diff']
+ ? `language-${lang} diff-highlight`
+ : `language-${lang.replace('diff-', '')}`;
+ return `${code}
`;
+ }
+
+ override getHighlightExtension() {
+ return markedHighlight({
+ async: true,
+ highlight: (code: string, lang: string) => {
+ let diff = lang?.startsWith('diff-');
+ lang = diff ? lang.replace('diff-', '') : lang || 'typescript';
+
+ if (diff && !Prism.languages['diff']) {
+ diff = false;
+ console.warn(`Notice:
+ ---------------------------------------------------------------------------------------
+ The \`diff\` language and plugin are not available in the provided setup.
+ To enable it, add the following imports your \`main.ts\`:
+ import 'prismjs/components/prism-diff';
+ import 'prismjs/plugins/diff-highlight/prism-diff-highlight';
+ ---------------------------------------------------------------------------------------
+ `);
+ }
+
+ if (!Prism.languages[lang]) {
+ if (lang !== 'mermaid') {
+ console.warn(`Notice:
+ ---------------------------------------------------------------------------------------
+ The requested language '${lang}' is not available in the provided setup.
+ To enable it, add the following import your \`main.ts\`:
+ import 'prismjs/components/prism-${lang}';
+ ---------------------------------------------------------------------------------------
+ `);
+ }
+ return code;
+ }
+ return Prism.highlight(
+ code,
+ diff ? Prism.languages['diff'] : Prism.languages[lang],
+ lang
+ );
+ },
+ });
+ }
+}
diff --git a/packages/content/src/lib/prism/angular.js b/packages/content/prism-highlighter/src/lib/prism/angular.js
similarity index 100%
rename from packages/content/src/lib/prism/angular.js
rename to packages/content/prism-highlighter/src/lib/prism/angular.js
diff --git a/packages/content/shiki-highlighter/README.md b/packages/content/shiki-highlighter/README.md
new file mode 100644
index 000000000..1bab02b63
--- /dev/null
+++ b/packages/content/shiki-highlighter/README.md
@@ -0,0 +1,3 @@
+# @analogjs/content/shiki-highlighter
+
+Secondary entry point of `@analogjs/content`. It can be used by importing from `@analogjs/content/shiki-highlighter`.
diff --git a/packages/content/shiki-highlighter/ng-package.json b/packages/content/shiki-highlighter/ng-package.json
new file mode 100644
index 000000000..c781f0df4
--- /dev/null
+++ b/packages/content/shiki-highlighter/ng-package.json
@@ -0,0 +1,5 @@
+{
+ "lib": {
+ "entryFile": "src/index.ts"
+ }
+}
diff --git a/packages/content/shiki-highlighter/src/index.ts b/packages/content/shiki-highlighter/src/index.ts
new file mode 100644
index 000000000..854e3730b
--- /dev/null
+++ b/packages/content/shiki-highlighter/src/index.ts
@@ -0,0 +1,54 @@
+import { withHighlighter } from '@analogjs/content';
+import { Provider } from '@angular/core';
+import type { BundledLanguage } from 'shiki';
+import {
+ defaultHighlighterOptions,
+ SHIKI_CONTAINER_OPTION,
+ SHIKI_HIGHLIGHT_OPTIONS,
+ SHIKI_HIGHLIGHTER_OPTIONS,
+ ShikiHighlighter,
+ type ShikiHighlighterOptions,
+ type ShikiHighlightOptions,
+} from './lib/shiki-highlighter';
+
+export { ShikiHighlighter };
+
+export interface WithShikiHighlighterOptions {
+ highlighter?: Partial & {
+ additionalLangs?: BundledLanguage[];
+ };
+ highlight?: ShikiHighlightOptions;
+ container?: string;
+}
+
+export function withShikiHighlighter({
+ highlighter = {},
+ highlight = {},
+ container = '%s',
+}: WithShikiHighlighterOptions = {}): Provider {
+ if (!highlighter.themes) {
+ if (highlight.theme) {
+ highlighter.themes = [highlight.theme];
+ } else if (highlight.themes && typeof highlight.themes === 'object') {
+ highlighter.themes = Object.values(highlight.themes) as string[];
+ } else {
+ highlighter.themes = defaultHighlighterOptions.themes;
+ }
+ }
+
+ if (!highlighter.langs) {
+ highlighter.langs = defaultHighlighterOptions.langs;
+ }
+
+ if (highlighter.additionalLangs) {
+ highlighter.langs.push(...highlighter.additionalLangs);
+ delete highlighter.additionalLangs;
+ }
+
+ return [
+ { provide: SHIKI_HIGHLIGHTER_OPTIONS, useValue: highlighter },
+ { provide: SHIKI_HIGHLIGHT_OPTIONS, useValue: highlight },
+ { provide: SHIKI_CONTAINER_OPTION, useValue: container },
+ withHighlighter({ useClass: ShikiHighlighter }),
+ ];
+}
diff --git a/packages/content/shiki-highlighter/src/lib/shiki-highlighter.spec.ts b/packages/content/shiki-highlighter/src/lib/shiki-highlighter.spec.ts
new file mode 100644
index 000000000..0e70d0027
--- /dev/null
+++ b/packages/content/shiki-highlighter/src/lib/shiki-highlighter.spec.ts
@@ -0,0 +1,30 @@
+import {
+ MarkdownContentRendererService,
+ MarkedSetupService,
+} from '@analogjs/content';
+import { withShikiHighlighter } from '../index';
+import { TestBed } from '@angular/core/testing';
+
+describe('ShikiHighlighter', () => {
+ function setup() {
+ TestBed.configureTestingModule({
+ providers: [
+ MarkdownContentRendererService,
+ MarkedSetupService,
+ withShikiHighlighter(),
+ ],
+ });
+ return { service: TestBed.inject(MarkdownContentRendererService) };
+ }
+
+ it('render should correctly highlight code blocks with shiki', async () => {
+ const { service } = setup();
+
+ const testCode =
+ '```angular-ts\n@Component({\ntemplate: `Hello, world!
`\n})\nexport class MyCmp {}\n```';
+ const result = await service.render(testCode);
+ expect(result).toContain(
+ '[0];
+export type ShikiHighlightOptions = Partial<
+ Omit, 'lang'>
+> &
+ CodeOptionsMeta &
+ Partial> &
+ Partial>;
+
+export const defaultHighlighterOptions = {
+ langs: [
+ 'json',
+ 'ts',
+ 'tsx',
+ 'js',
+ 'jsx',
+ 'html',
+ 'css',
+ 'angular-html',
+ 'angular-ts',
+ ],
+ themes: ['github-dark', 'github-light'],
+};
+
+export const [
+ SHIKI_HIGHLIGHTER_OPTIONS,
+ SHIKI_HIGHLIGHT_OPTIONS,
+ SHIKI_CONTAINER_OPTION,
+] = [
+ new InjectionToken('SHIKI_HIGHLIGHTER_OPTIONS'),
+ new InjectionToken('SHIKI_HIGHLIGHT_OPTIONS'),
+ new InjectionToken('SHIKI_CONTAINER_OPTION'),
+];
+
+@Injectable()
+export class ShikiHighlighter extends MarkedContentHighlighter {
+ private readonly highlighterOptions = inject(SHIKI_HIGHLIGHTER_OPTIONS);
+ private readonly highlightOptions = inject(SHIKI_HIGHLIGHT_OPTIONS);
+ private readonly highlighterContainer = inject(SHIKI_CONTAINER_OPTION);
+ private readonly hasLoadMermaid = inject(MERMAID_IMPORT_TOKEN, {
+ optional: true,
+ });
+ private readonly highlighter = getHighlighter(this.highlighterOptions);
+
+ override getHighlightExtension() {
+ return markedShiki({
+ container: this.highlighterContainer,
+ highlight: async (code, lang, props) => {
+ if (this.hasLoadMermaid && lang === 'mermaid') {
+ return `${code}
`;
+ }
+
+ const { codeToHtml } = await this.highlighter;
+ return codeToHtml(
+ code,
+ Object.assign(
+ {
+ lang,
+ // required by `transformerMeta*`
+ meta: { __raw: props.join(' ') },
+ themes: { dark: 'github-dark', light: 'github-light' },
+ },
+ this.highlightOptions
+ )
+ );
+ },
+ });
+ }
+}
diff --git a/packages/content/src/index.ts b/packages/content/src/index.ts
index c2abd4eb4..00d9d5808 100644
--- a/packages/content/src/index.ts
+++ b/packages/content/src/index.ts
@@ -7,8 +7,13 @@ export {
MarkdownContentRendererService,
provideContent,
withMarkdownRenderer,
+ MERMAID_IMPORT_TOKEN,
} from './lib/markdown-content-renderer.service';
export { default as MarkdownRouteComponent } from './lib/markdown-route.component';
export { default as MarkdownComponent } from './lib/markdown.component';
export { parseRawContentFile } from './lib/parse-raw-content-file';
export { MarkedSetupService } from './lib/marked-setup.service';
+export {
+ MarkedContentHighlighter,
+ withHighlighter,
+} from './lib/marked-content-highlighter';
diff --git a/packages/content/src/lib/markdown-content-renderer.service.spec.ts b/packages/content/src/lib/markdown-content-renderer.service.spec.ts
index 7c8cf1dc1..e91f2b4b6 100644
--- a/packages/content/src/lib/markdown-content-renderer.service.spec.ts
+++ b/packages/content/src/lib/markdown-content-renderer.service.spec.ts
@@ -20,10 +20,10 @@ describe('MarkdownContentRendererService', () => {
it('should transform markdown and return a TOC', async () => {
const { service } = setup();
const content = `
-# Level 1
+# Level 1
## Level 2
-lorem ipsum ....
+lorem ipsum ....
# Level 1
## Level 2
@@ -63,40 +63,4 @@ Lorem ipsum 2....
''
);
});
-
- it('render should correctly highlight diff code blocks', async () => {
- const { service } = setup();
- window.Prism.languages['diff'] = {};
- let testCode = "```diff-javascript\nconsole.log('Hello, world!');\n```";
- let result = await service.render(testCode);
-
- expect(result).toContain(
- ''
- );
-
- testCode = "```diff-typescript\nconsole.log('Hello, world!');\n```";
- result = await service.render(testCode);
-
- expect(result).toContain(
- ''
- );
- });
-
- it('render should fall back to language-only highlighting if `diff` plugin is not imported', async () => {
- const { service } = setup();
- window.Prism.languages['diff'] = undefined;
- let testCode = "```diff-javascript\nconsole.log('Hello, world!');\n```";
- let result = await service.render(testCode);
-
- expect(result).toContain(
- ''
- );
-
- testCode = "```diff-typescript\nconsole.log('Hello, world!');\n```";
- result = await service.render(testCode);
-
- expect(result).toContain(
- ''
- );
- });
});
diff --git a/packages/content/src/lib/marked-content-highlighter.ts b/packages/content/src/lib/marked-content-highlighter.ts
new file mode 100644
index 000000000..d0f1be88b
--- /dev/null
+++ b/packages/content/src/lib/marked-content-highlighter.ts
@@ -0,0 +1,30 @@
+import {
+ AbstractType,
+ Injectable,
+ Provider,
+ ProviderToken,
+ Type,
+} from '@angular/core';
+
+export interface MarkedContentHighlighter {
+ augmentCodeBlock?(code: string, lang: string): string;
+}
+
+@Injectable()
+export abstract class MarkedContentHighlighter {
+ abstract getHighlightExtension(): import('marked').marked.MarkedExtension;
+}
+
+export function withHighlighter(
+ provider: (
+ | { useValue: MarkedContentHighlighter }
+ | {
+ useClass:
+ | Type
+ | AbstractType;
+ }
+ | { useFactory: (...deps: any[]) => MarkedContentHighlighter }
+ ) & { deps?: ProviderToken[] }
+): Provider {
+ return { provide: MarkedContentHighlighter, ...provider } as Provider;
+}
diff --git a/packages/content/src/lib/marked-setup.service.ts b/packages/content/src/lib/marked-setup.service.ts
index 2a2d52838..21249d836 100644
--- a/packages/content/src/lib/marked-setup.service.ts
+++ b/packages/content/src/lib/marked-setup.service.ts
@@ -2,27 +2,18 @@
* Credit goes to Scully for original implementation
* https://github.com/scullyio/scully/blob/main/libs/scully/src/lib/fileHanderPlugins/markdown.ts
*/
-import { Injectable } from '@angular/core';
+import { inject, Injectable } from '@angular/core';
import { marked } from 'marked';
import { gfmHeadingId } from 'marked-gfm-heading-id';
-import { markedHighlight } from 'marked-highlight';
-
-import 'prismjs';
-import 'prismjs/components/prism-bash';
-import 'prismjs/components/prism-css';
-import 'prismjs/components/prism-javascript';
-import 'prismjs/components/prism-json';
-import 'prismjs/components/prism-markup';
-import 'prismjs/components/prism-typescript';
-import 'prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard';
-import 'prismjs/plugins/toolbar/prism-toolbar';
-import './prism/angular';
-
-declare const Prism: typeof import('prismjs');
+import { mangle } from 'marked-mangle';
+import { MarkedContentHighlighter } from './marked-content-highlighter';
@Injectable()
export class MarkedSetupService {
private readonly marked: typeof marked;
+ private readonly highlighter = inject(MarkedContentHighlighter, {
+ optional: true,
+ });
constructor() {
const renderer = new marked.Renderer();
@@ -37,63 +28,25 @@ export class MarkedSetupService {
return '' + code + '
';
}
- const classes =
- lang.startsWith('diff') && Prism.languages['diff']
- ? `language-${lang} diff-highlight`
- : `language-${lang.replace('diff-', '')}`;
- return `${code}
`;
+ if (this.highlighter?.augmentCodeBlock) {
+ return this.highlighter?.augmentCodeBlock(code, lang);
+ }
+
+ return `${code}
`;
};
- marked.use(
- gfmHeadingId(),
- markedHighlight({
- async: true,
- highlight: (code: string, lang: string) => {
- let diff = lang?.startsWith('diff-');
- lang = diff ? lang.replace('diff-', '') : lang || 'typescript';
+ const extensions = [gfmHeadingId(), mangle()];
- if (diff && !Prism.languages['diff']) {
- diff = false;
- console.warn(`Notice:
- ---------------------------------------------------------------------------------------
- The \`diff\` language and plugin are not available in the provided setup.
- To enable it, add the following imports your \`main.ts\`:
- import 'prismjs/components/prism-diff';
- import 'prismjs/plugins/diff-highlight/prism-diff-highlight';
- ---------------------------------------------------------------------------------------
- `);
- }
+ if (this.highlighter) {
+ extensions.push(this.highlighter.getHighlightExtension());
+ }
- if (!Prism.languages[lang]) {
- if (lang !== 'mermaid') {
- console.warn(`Notice:
- ---------------------------------------------------------------------------------------
- The requested language '${lang}' is not available in the provided setup.
- To enable it, add the following import your \`main.ts\`:
- import 'prismjs/components/prism-${lang}';
- ---------------------------------------------------------------------------------------
- `);
- }
- return code;
- }
- return Prism.highlight(
- code,
- diff ? Prism.languages['diff'] : Prism.languages[lang],
- lang
- );
- },
- }),
- {
- renderer,
- pedantic: false,
- gfm: true,
- breaks: false,
- sanitize: false,
- smartypants: false,
- xhtml: false,
- mangle: false,
- }
- );
+ marked.use(...extensions, {
+ renderer,
+ pedantic: false,
+ gfm: true,
+ breaks: false,
+ });
this.marked = marked;
}
diff --git a/packages/content/tsconfig.lib.json b/packages/content/tsconfig.lib.json
index 4097c7c62..7e4e57402 100644
--- a/packages/content/tsconfig.lib.json
+++ b/packages/content/tsconfig.lib.json
@@ -8,6 +8,6 @@
"types": [],
"allowJs": true
},
- "exclude": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts"],
- "include": ["src/**/*.ts"]
+ "exclude": ["jest.config.ts", "**/*.test.ts", "**/*.spec.ts"],
+ "include": ["**/*.ts"]
}
diff --git a/packages/create-analog/template-blog/src/app/app.config.ts b/packages/create-analog/template-blog/src/app/app.config.ts
index f05f9e529..d1d922fd8 100644
--- a/packages/create-analog/template-blog/src/app/app.config.ts
+++ b/packages/create-analog/template-blog/src/app/app.config.ts
@@ -3,6 +3,7 @@ import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
import { provideClientHydration } from '@angular/platform-browser';
import { provideFileRouter } from '@analogjs/router';
import { provideContent, withMarkdownRenderer } from '@analogjs/content';
+import { withPrismHighlighter } from '@analogjs/content/prism-highlighter';
export const appConfig: ApplicationConfig = {
providers: [
@@ -10,6 +11,6 @@ export const appConfig: ApplicationConfig = {
provideFileRouter(),
provideHttpClient(withFetch()),
provideClientHydration(),
- provideContent(withMarkdownRenderer()),
+ provideContent(withMarkdownRenderer(), withPrismHighlighter()),
],
};
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 97e3c894f..c24fe65db 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -100,7 +100,7 @@ importers:
version: 7.8.0
semver:
specifier: ^7.5.1
- version: 7.5.1
+ version: 7.6.2
superjson:
specifier: ^2.2.1
version: 2.2.1
@@ -115,7 +115,7 @@ importers:
version: 0.2.1
zod:
specifier: ^3.21.4
- version: 3.21.4
+ version: 3.23.8
zone.js:
specifier: ^0.14.0
version: 0.14.0
@@ -306,6 +306,12 @@ importers:
lint-staged:
specifier: ^13.1.0
version: 13.1.0
+ marked-mangle:
+ specifier: ^1.1.7
+ version: 1.1.7(marked@5.0.2)
+ marked-shiki:
+ specifier: ^1.1.0
+ version: 1.1.0(marked@5.0.2)(shiki@1.6.1)
minimist:
specifier: ^1.2.7
version: 1.2.7
@@ -323,16 +329,16 @@ importers:
version: 1.30.0
postcss:
specifier: ^8.4.21
- version: 8.4.21
+ version: 8.4.38
postcss-import:
specifier: ~15.1.0
- version: 15.1.0(postcss@8.4.21)
+ version: 15.1.0(postcss@8.4.38)
postcss-preset-env:
specifier: ~8.0.1
- version: 8.0.1(postcss@8.4.21)
+ version: 8.0.1(postcss@8.4.38)
postcss-url:
specifier: ~10.1.3
- version: 10.1.3(postcss@8.4.21)
+ version: 10.1.3(postcss@8.4.38)
prettier:
specifier: ^2.8.3
version: 2.8.3
@@ -351,12 +357,15 @@ importers:
semantic-release-replace-plugin:
specifier: ^1.2.7
version: 1.2.7(semantic-release@22.0.12)
+ shiki:
+ specifier: ^1.6.1
+ version: 1.6.1
start-server-and-test:
specifier: ^1.15.4
version: 1.15.5
tailwindcss:
specifier: ^3.0.2
- version: 3.0.2(autoprefixer@10.4.19)(postcss@8.4.21)(ts-node@10.9.1)
+ version: 3.0.2(autoprefixer@10.4.19)(postcss@8.4.38)(ts-node@10.9.1)
ts-jest:
specifier: 29.1.0
version: 29.1.0(@babel/core@7.21.8)(esbuild@0.19.5)(jest@29.5.0)(typescript@5.4.3)
@@ -388,14 +397,6 @@ importers:
specifier: ^3.0.2
version: 3.0.2
- apps/analog-app-e2e-cypress: {}
-
- apps/analog-app-e2e-playwright: {}
-
- apps/astro-app-e2e-playwright: {}
-
- apps/blog-app-e2e-cypress: {}
-
apps/docs-app:
dependencies:
'@docusaurus/core':
@@ -403,10 +404,10 @@ importers:
version: 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
'@docusaurus/preset-classic':
specifier: 3.1.0
- version: 3.1.0(@algolia/client-search@4.22.1)(@swc/core@1.3.99)(@types/react@18.2.22)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.3)
+ version: 3.1.0(@algolia/client-search@4.23.3)(@swc/core@1.3.99)(@types/react@18.0.27)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.14.0)(typescript@5.4.3)
'@mdx-js/react':
specifier: 3.0.0
- version: 3.0.0(@types/react@18.2.22)(react@18.2.0)
+ version: 3.0.0(@types/react@18.0.27)(react@18.2.0)
clsx:
specifier: 2.1.0
version: 2.1.0
@@ -436,142 +437,158 @@ packages:
/@adobe/css-tools@4.3.1:
resolution: {integrity: sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==}
- /@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(search-insights@2.13.0):
+ /@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0):
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(search-insights@2.13.0)
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
dev: false
- /@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(search-insights@2.13.0):
+ /@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0):
resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==}
peerDependencies:
search-insights: '>= 1 < 3'
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
- search-insights: 2.13.0
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)
+ search-insights: 2.14.0
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
dev: false
- /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1):
+ /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3):
resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
- '@algolia/client-search': 4.22.1
- algoliasearch: 4.22.1
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)
+ '@algolia/client-search': 4.23.3
+ algoliasearch: 4.23.3
dev: false
- /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1):
+ /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3):
resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
- '@algolia/client-search': 4.22.1
- algoliasearch: 4.22.1
+ '@algolia/client-search': 4.23.3
+ algoliasearch: 4.23.3
dev: false
- /@algolia/cache-browser-local-storage@4.22.1:
- resolution: {integrity: sha512-Sw6IAmOCvvP6QNgY9j+Hv09mvkvEIDKjYW8ow0UDDAxSXy664RBNQk3i/0nt7gvceOJ6jGmOTimaZoY1THmU7g==}
+ /@algolia/cache-browser-local-storage@4.23.3:
+ resolution: {integrity: sha512-vRHXYCpPlTDE7i6UOy2xE03zHF2C8MEFjPN2v7fRbqVpcOvAUQK81x3Kc21xyb5aSIpYCjWCZbYZuz8Glyzyyg==}
dependencies:
- '@algolia/cache-common': 4.22.1
+ '@algolia/cache-common': 4.23.3
dev: false
- /@algolia/cache-common@4.22.1:
- resolution: {integrity: sha512-TJMBKqZNKYB9TptRRjSUtevJeQVXRmg6rk9qgFKWvOy8jhCPdyNZV1nB3SKGufzvTVbomAukFR8guu/8NRKBTA==}
+ /@algolia/cache-common@4.23.3:
+ resolution: {integrity: sha512-h9XcNI6lxYStaw32pHpB1TMm0RuxphF+Ik4o7tcQiodEdpKK+wKufY6QXtba7t3k8eseirEMVB83uFFF3Nu54A==}
dev: false
- /@algolia/cache-in-memory@4.22.1:
- resolution: {integrity: sha512-ve+6Ac2LhwpufuWavM/aHjLoNz/Z/sYSgNIXsinGofWOysPilQZPUetqLj8vbvi+DHZZaYSEP9H5SRVXnpsNNw==}
+ /@algolia/cache-in-memory@4.23.3:
+ resolution: {integrity: sha512-yvpbuUXg/+0rbcagxNT7un0eo3czx2Uf0y4eiR4z4SD7SiptwYTpbuS0IHxcLHG3lq22ukx1T6Kjtk/rT+mqNg==}
dependencies:
- '@algolia/cache-common': 4.22.1
+ '@algolia/cache-common': 4.23.3
dev: false
- /@algolia/client-account@4.22.1:
- resolution: {integrity: sha512-k8m+oegM2zlns/TwZyi4YgCtyToackkOpE+xCaKCYfBfDtdGOaVZCM5YvGPtK+HGaJMIN/DoTL8asbM3NzHonw==}
+ /@algolia/client-account@4.23.3:
+ resolution: {integrity: sha512-hpa6S5d7iQmretHHF40QGq6hz0anWEHGlULcTIT9tbUssWUriN9AUXIFQ8Ei4w9azD0hc1rUok9/DeQQobhQMA==}
dependencies:
- '@algolia/client-common': 4.22.1
- '@algolia/client-search': 4.22.1
- '@algolia/transporter': 4.22.1
+ '@algolia/client-common': 4.23.3
+ '@algolia/client-search': 4.23.3
+ '@algolia/transporter': 4.23.3
dev: false
- /@algolia/client-analytics@4.22.1:
- resolution: {integrity: sha512-1ssi9pyxyQNN4a7Ji9R50nSdISIumMFDwKNuwZipB6TkauJ8J7ha/uO60sPJFqQyqvvI+px7RSNRQT3Zrvzieg==}
+ /@algolia/client-analytics@4.23.3:
+ resolution: {integrity: sha512-LBsEARGS9cj8VkTAVEZphjxTjMVCci+zIIiRhpFun9jGDUlS1XmhCW7CTrnaWeIuCQS/2iPyRqSy1nXPjcBLRA==}
dependencies:
- '@algolia/client-common': 4.22.1
- '@algolia/client-search': 4.22.1
- '@algolia/requester-common': 4.22.1
- '@algolia/transporter': 4.22.1
+ '@algolia/client-common': 4.23.3
+ '@algolia/client-search': 4.23.3
+ '@algolia/requester-common': 4.23.3
+ '@algolia/transporter': 4.23.3
dev: false
- /@algolia/client-common@4.22.1:
- resolution: {integrity: sha512-IvaL5v9mZtm4k4QHbBGDmU3wa/mKokmqNBqPj0K7lcR8ZDKzUorhcGp/u8PkPC/e0zoHSTvRh7TRkGX3Lm7iOQ==}
+ /@algolia/client-common@4.23.3:
+ resolution: {integrity: sha512-l6EiPxdAlg8CYhroqS5ybfIczsGUIAC47slLPOMDeKSVXYG1n0qGiz4RjAHLw2aD0xzh2EXZ7aRguPfz7UKDKw==}
dependencies:
- '@algolia/requester-common': 4.22.1
- '@algolia/transporter': 4.22.1
+ '@algolia/requester-common': 4.23.3
+ '@algolia/transporter': 4.23.3
dev: false
- /@algolia/client-personalization@4.22.1:
- resolution: {integrity: sha512-sl+/klQJ93+4yaqZ7ezOttMQ/nczly/3GmgZXJ1xmoewP5jmdP/X/nV5U7EHHH3hCUEHeN7X1nsIhGPVt9E1cQ==}
+ /@algolia/client-personalization@4.23.3:
+ resolution: {integrity: sha512-3E3yF3Ocr1tB/xOZiuC3doHQBQ2zu2MPTYZ0d4lpfWads2WTKG7ZzmGnsHmm63RflvDeLK/UVx7j2b3QuwKQ2g==}
dependencies:
- '@algolia/client-common': 4.22.1
- '@algolia/requester-common': 4.22.1
- '@algolia/transporter': 4.22.1
+ '@algolia/client-common': 4.23.3
+ '@algolia/requester-common': 4.23.3
+ '@algolia/transporter': 4.23.3
dev: false
- /@algolia/client-search@4.22.1:
- resolution: {integrity: sha512-yb05NA4tNaOgx3+rOxAmFztgMTtGBi97X7PC3jyNeGiwkAjOZc2QrdZBYyIdcDLoI09N0gjtpClcackoTN0gPA==}
+ /@algolia/client-search@4.23.3:
+ resolution: {integrity: sha512-P4VAKFHqU0wx9O+q29Q8YVuaowaZ5EM77rxfmGnkHUJggh28useXQdopokgwMeYw2XUht49WX5RcTQ40rZIabw==}
dependencies:
- '@algolia/client-common': 4.22.1
- '@algolia/requester-common': 4.22.1
- '@algolia/transporter': 4.22.1
+ '@algolia/client-common': 4.23.3
+ '@algolia/requester-common': 4.23.3
+ '@algolia/transporter': 4.23.3
dev: false
/@algolia/events@4.0.1:
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
dev: false
- /@algolia/logger-common@4.22.1:
- resolution: {integrity: sha512-OnTFymd2odHSO39r4DSWRFETkBufnY2iGUZNrMXpIhF5cmFE8pGoINNPzwg02QLBlGSaLqdKy0bM8S0GyqPLBg==}
+ /@algolia/logger-common@4.23.3:
+ resolution: {integrity: sha512-y9kBtmJwiZ9ZZ+1Ek66P0M68mHQzKRxkW5kAAXYN/rdzgDN0d2COsViEFufxJ0pb45K4FRcfC7+33YB4BLrZ+g==}
dev: false
- /@algolia/logger-console@4.22.1:
- resolution: {integrity: sha512-O99rcqpVPKN1RlpgD6H3khUWylU24OXlzkavUAMy6QZd1776QAcauE3oP8CmD43nbaTjBexZj2nGsBH9Tc0FVA==}
+ /@algolia/logger-console@4.23.3:
+ resolution: {integrity: sha512-8xoiseoWDKuCVnWP8jHthgaeobDLolh00KJAdMe9XPrWPuf1by732jSpgy2BlsLTaT9m32pHI8CRfrOqQzHv3A==}
dependencies:
- '@algolia/logger-common': 4.22.1
+ '@algolia/logger-common': 4.23.3
dev: false
- /@algolia/requester-browser-xhr@4.22.1:
- resolution: {integrity: sha512-dtQGYIg6MteqT1Uay3J/0NDqD+UciHy3QgRbk7bNddOJu+p3hzjTRYESqEnoX/DpEkaNYdRHUKNylsqMpgwaEw==}
+ /@algolia/recommend@4.23.3:
+ resolution: {integrity: sha512-9fK4nXZF0bFkdcLBRDexsnGzVmu4TSYZqxdpgBW2tEyfuSSY54D4qSRkLmNkrrz4YFvdh2GM1gA8vSsnZPR73w==}
dependencies:
- '@algolia/requester-common': 4.22.1
+ '@algolia/cache-browser-local-storage': 4.23.3
+ '@algolia/cache-common': 4.23.3
+ '@algolia/cache-in-memory': 4.23.3
+ '@algolia/client-common': 4.23.3
+ '@algolia/client-search': 4.23.3
+ '@algolia/logger-common': 4.23.3
+ '@algolia/logger-console': 4.23.3
+ '@algolia/requester-browser-xhr': 4.23.3
+ '@algolia/requester-common': 4.23.3
+ '@algolia/requester-node-http': 4.23.3
+ '@algolia/transporter': 4.23.3
dev: false
- /@algolia/requester-common@4.22.1:
- resolution: {integrity: sha512-dgvhSAtg2MJnR+BxrIFqlLtkLlVVhas9HgYKMk2Uxiy5m6/8HZBL40JVAMb2LovoPFs9I/EWIoFVjOrFwzn5Qg==}
+ /@algolia/requester-browser-xhr@4.23.3:
+ resolution: {integrity: sha512-jDWGIQ96BhXbmONAQsasIpTYWslyjkiGu0Quydjlowe+ciqySpiDUrJHERIRfELE5+wFc7hc1Q5hqjGoV7yghw==}
+ dependencies:
+ '@algolia/requester-common': 4.23.3
+ dev: false
+
+ /@algolia/requester-common@4.23.3:
+ resolution: {integrity: sha512-xloIdr/bedtYEGcXCiF2muajyvRhwop4cMZo+K2qzNht0CMzlRkm8YsDdj5IaBhshqfgmBb3rTg4sL4/PpvLYw==}
dev: false
- /@algolia/requester-node-http@4.22.1:
- resolution: {integrity: sha512-JfmZ3MVFQkAU+zug8H3s8rZ6h0ahHZL/SpMaSasTCGYR5EEJsCc8SI5UZ6raPN2tjxa5bxS13BRpGSBUens7EA==}
+ /@algolia/requester-node-http@4.23.3:
+ resolution: {integrity: sha512-zgu++8Uj03IWDEJM3fuNl34s746JnZOWn1Uz5taV1dFyJhVM/kTNw9Ik7YJWiUNHJQXcaD8IXD1eCb0nq/aByA==}
dependencies:
- '@algolia/requester-common': 4.22.1
+ '@algolia/requester-common': 4.23.3
dev: false
- /@algolia/transporter@4.22.1:
- resolution: {integrity: sha512-kzWgc2c9IdxMa3YqA6TN0NW5VrKYYW/BELIn7vnLyn+U/RFdZ4lxxt9/8yq3DKV5snvoDzzO4ClyejZRdV3lMQ==}
+ /@algolia/transporter@4.23.3:
+ resolution: {integrity: sha512-Wjl5gttqnf/gQKJA+dafnD0Y6Yw97yvfY8R9h0dQltX1GXTgNs1zWgvtWW0tHl1EgMdhAyw189uWiZMnL3QebQ==}
dependencies:
- '@algolia/cache-common': 4.22.1
- '@algolia/logger-common': 4.22.1
- '@algolia/requester-common': 4.22.1
+ '@algolia/cache-common': 4.23.3
+ '@algolia/logger-common': 4.23.3
+ '@algolia/requester-common': 4.23.3
dev: false
/@ampproject/remapping@2.2.1:
@@ -696,7 +713,7 @@ packages:
semver: 7.6.2
source-map-loader: 5.0.0(webpack@5.91.0)
source-map-support: 0.5.21
- tailwindcss: 3.0.2(autoprefixer@10.4.19)(postcss@8.4.21)(ts-node@10.9.1)
+ tailwindcss: 3.0.2(autoprefixer@10.4.19)(postcss@8.4.38)(ts-node@10.9.1)
terser: 5.31.0
tree-kill: 1.2.2
tslib: 2.6.2
@@ -894,7 +911,7 @@ packages:
postcss: 8.4.38
sass: 1.77.2
semver: 7.6.2
- tailwindcss: 3.0.2(autoprefixer@10.4.19)(postcss@8.4.21)(ts-node@10.9.1)
+ tailwindcss: 3.0.2(autoprefixer@10.4.19)(postcss@8.4.38)(ts-node@10.9.1)
typescript: 5.4.3
undici: 6.18.0
vite: 5.2.11(@types/node@18.19.15)(less@4.2.0)(sass@1.77.2)(stylus@0.59.0)(terser@5.31.0)
@@ -976,7 +993,7 @@ packages:
chokidar: 3.6.0
convert-source-map: 1.9.0
reflect-metadata: 0.2.1
- semver: 7.6.1
+ semver: 7.6.2
tslib: 2.6.2
typescript: 5.4.3
yargs: 17.7.2
@@ -1191,7 +1208,7 @@ packages:
remark-parse: 11.0.0
remark-rehype: 11.1.0
remark-smartypants: 2.0.0
- shiki: 1.6.0
+ shiki: 1.6.1
unified: 11.0.4
unist-util-remove-position: 5.0.0
unist-util-visit: 5.0.0
@@ -1404,15 +1421,6 @@ packages:
'@jridgewell/trace-mapping': 0.3.18
jsesc: 2.5.2
- /@babel/generator@7.23.0:
- resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.0
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.18
- jsesc: 2.5.2
-
/@babel/generator@7.23.6:
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
@@ -1437,11 +1445,18 @@ packages:
dependencies:
'@babel/types': 7.24.5
+ /@babel/helper-annotate-as-pure@7.24.6:
+ resolution: {integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: false
+
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
/@babel/helper-compilation-targets@7.22.10:
resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==}
@@ -1463,24 +1478,6 @@ packages:
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.23.7):
- resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@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.24.5
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.23.7)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.24.5
- semver: 6.3.1
- dev: false
-
/@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.5):
resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
engines: {node: '>=6.9.0'}
@@ -1498,18 +1495,6 @@ packages:
'@babel/helper-split-export-declaration': 7.24.5
semver: 6.3.1
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7):
- resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-annotate-as-pure': 7.22.5
- regexpu-core: 5.3.2
- semver: 6.3.1
- dev: false
-
/@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.5):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
@@ -1521,18 +1506,6 @@ packages:
regexpu-core: 5.3.2
semver: 6.3.1
- /@babel/helper-create-regexp-features-plugin@7.22.5(@babel/core@7.23.7):
- resolution: {integrity: sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-annotate-as-pure': 7.22.5
- regexpu-core: 5.3.2
- semver: 6.3.1
- dev: false
-
/@babel/helper-create-regexp-features-plugin@7.22.5(@babel/core@7.24.5):
resolution: {integrity: sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==}
engines: {node: '>=6.9.0'}
@@ -1544,21 +1517,6 @@ packages:
regexpu-core: 5.3.2
semver: 6.3.1
- /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
- debug: 4.3.4(supports-color@8.1.1)
- lodash.debounce: 4.0.8
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.5):
resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
@@ -1612,6 +1570,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.23.0
+ dev: false
/@babel/helper-module-imports@7.22.5:
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
@@ -1625,6 +1584,13 @@ packages:
dependencies:
'@babel/types': 7.24.0
+ /@babel/helper-module-imports@7.24.6:
+ resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.6
+ dev: false
+
/@babel/helper-module-transforms@7.22.9(@babel/core@7.21.8):
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
engines: {node: '>=6.9.0'}
@@ -1638,33 +1604,6 @@ packages:
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.5
- /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.7):
- resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@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
- '@babel/helper-split-export-declaration': 7.24.5
- '@babel/helper-validator-identifier': 7.22.20
- dev: false
-
- /@babel/helper-module-transforms@7.23.0(@babel/core@7.24.5):
- resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.24.5
- '@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.24.5
- '@babel/helper-validator-identifier': 7.22.20
-
/@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
@@ -1679,33 +1618,6 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
dev: false
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.5):
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.24.5
- '@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.24.5
- '@babel/helper-validator-identifier': 7.22.20
-
- /@babel/helper-module-transforms@7.24.5(@babel/core@7.23.7):
- resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-simple-access': 7.24.5
- '@babel/helper-split-export-declaration': 7.24.5
- '@babel/helper-validator-identifier': 7.24.5
- dev: false
-
/@babel/helper-module-transforms@7.24.5(@babel/core@7.24.4):
resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==}
engines: {node: '>=6.9.0'}
@@ -1741,6 +1653,7 @@ packages:
/@babel/helper-plugin-utils@7.22.5:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
+ dev: false
/@babel/helper-plugin-utils@7.24.0:
resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
@@ -1750,16 +1663,9 @@ packages:
resolution: {integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7):
- resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
+ /@babel/helper-plugin-utils@7.24.6:
+ resolution: {integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@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.20
dev: false
/@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.5):
@@ -1773,18 +1679,6 @@ packages:
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
- /@babel/helper-replace-supers@7.24.1(@babel/core@7.23.7):
- resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.24.5
- '@babel/helper-optimise-call-expression': 7.22.5
- dev: false
-
/@babel/helper-replace-supers@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
engines: {node: '>=6.9.0'}
@@ -1842,6 +1736,11 @@ packages:
resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-string-parser@7.24.6:
+ resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
/@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
@@ -1862,9 +1761,10 @@ packages:
resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option@7.22.15:
- resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
+ /@babel/helper-validator-identifier@7.24.6:
+ resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==}
engines: {node: '>=6.9.0'}
+ dev: false
/@babel/helper-validator-option@7.22.5:
resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
@@ -1874,6 +1774,11 @@ packages:
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-validator-option@7.24.6:
+ resolution: {integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
/@babel/helper-wrap-function@7.22.20:
resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
engines: {node: '>=6.9.0'}
@@ -2005,16 +1910,6 @@ packages:
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==}
engines: {node: '>=6.9.0'}
@@ -2024,18 +1919,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==}
engines: {node: '>=6.9.0'}
@@ -2047,17 +1930,6 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.5)
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==}
engines: {node: '>=6.9.0'}
@@ -2081,15 +1953,6 @@ packages:
'@babel/helper-split-export-declaration': 7.24.5
'@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.24.5)
- /@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:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- dev: false
-
/@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
@@ -2098,15 +1961,6 @@ packages:
dependencies:
'@babel/core': 7.24.5
- /@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
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
@@ -2123,15 +1977,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7):
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
@@ -2140,16 +1985,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.5):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
@@ -2168,15 +2003,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.22.5
- dev: false
-
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
@@ -2185,15 +2011,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
@@ -2202,16 +2019,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==}
engines: {node: '>=6.9.0'}
@@ -2221,16 +2028,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
engines: {node: '>=6.9.0'}
@@ -2240,62 +2037,25 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- dev: false
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5):
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5):
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
-
- /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.24.5):
- resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
-
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.7):
- resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.24.5):
- resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.24.5):
+ resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -2311,13 +2071,14 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ /@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.5):
+ resolution: {integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.6
dev: false
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5):
@@ -2328,15 +2089,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
@@ -2345,15 +2097,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
@@ -2362,15 +2105,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
@@ -2379,15 +2113,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
@@ -2396,15 +2121,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
@@ -2413,16 +2129,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.5):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
@@ -2432,16 +2138,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
@@ -2460,16 +2156,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.7):
- resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.24.5):
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
@@ -2479,17 +2165,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@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:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.5):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
@@ -2500,16 +2175,6 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==}
engines: {node: '>=6.9.0'}
@@ -2519,19 +2184,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.5):
resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
engines: {node: '>=6.9.0'}
@@ -2544,18 +2196,6 @@ packages:
'@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
- /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.23.7):
- resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
engines: {node: '>=6.9.0'}
@@ -2567,16 +2207,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5)
- /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==}
engines: {node: '>=6.9.0'}
@@ -2586,16 +2216,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-block-scoping@7.24.5(@babel/core@7.24.5):
resolution: {integrity: sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==}
engines: {node: '>=6.9.0'}
@@ -2605,17 +2225,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.23.7):
- resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
engines: {node: '>=6.9.0'}
@@ -2626,18 +2235,6 @@ packages:
'@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.5):
resolution: {integrity: sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==}
engines: {node: '>=6.9.0'}
@@ -2649,23 +2246,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5)
- /@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.7):
- resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.23.7)
- '@babel/helper-split-export-declaration': 7.24.5
- globals: 11.12.0
- dev: false
-
/@babel/plugin-transform-classes@7.24.5(@babel/core@7.24.5):
resolution: {integrity: sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==}
engines: {node: '>=6.9.0'}
@@ -2682,17 +2262,6 @@ packages:
'@babel/helper-split-export-declaration': 7.24.5
globals: 11.12.0
- /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/template': 7.24.0
- dev: false
-
/@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==}
engines: {node: '>=6.9.0'}
@@ -2703,16 +2272,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/template': 7.24.0
- /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-destructuring@7.24.5(@babel/core@7.24.5):
resolution: {integrity: sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==}
engines: {node: '>=6.9.0'}
@@ -2722,17 +2281,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==}
engines: {node: '>=6.9.0'}
@@ -2743,16 +2291,6 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==}
engines: {node: '>=6.9.0'}
@@ -2762,17 +2300,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==}
engines: {node: '>=6.9.0'}
@@ -2783,17 +2310,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
- /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==}
engines: {node: '>=6.9.0'}
@@ -2804,17 +2320,6 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==}
engines: {node: '>=6.9.0'}
@@ -2825,17 +2330,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5)
- /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.7):
- resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- dev: false
-
/@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==}
engines: {node: '>=6.9.0'}
@@ -2846,18 +2340,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==}
engines: {node: '>=6.9.0'}
@@ -2869,17 +2351,6 @@ packages:
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==}
engines: {node: '>=6.9.0'}
@@ -2890,16 +2361,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
- /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==}
engines: {node: '>=6.9.0'}
@@ -2909,17 +2370,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==}
engines: {node: '>=6.9.0'}
@@ -2930,16 +2380,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
- /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==}
engines: {node: '>=6.9.0'}
@@ -2949,17 +2389,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==}
engines: {node: '>=6.9.0'}
@@ -2970,41 +2399,6 @@ packages:
'@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.7):
- resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-simple-access': 7.22.5
- dev: false
-
- /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.24.5):
- resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-simple-access': 7.22.5
-
- /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-simple-access': 7.22.5
- dev: false
-
/@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
engines: {node: '>=6.9.0'}
@@ -3012,23 +2406,10 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.5)
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
'@babel/helper-simple-access': 7.22.5
- /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-validator-identifier': 7.22.20
- dev: false
-
/@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==}
engines: {node: '>=6.9.0'}
@@ -3037,21 +2418,10 @@ packages:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.5)
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
'@babel/helper-validator-identifier': 7.22.20
- /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==}
engines: {node: '>=6.9.0'}
@@ -3059,19 +2429,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
-
- /@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:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.7)
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- dev: false
/@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.5):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
@@ -3083,16 +2442,6 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==}
engines: {node: '>=6.9.0'}
@@ -3102,17 +2451,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==}
engines: {node: '>=6.9.0'}
@@ -3123,17 +2461,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
- /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==}
engines: {node: '>=6.9.0'}
@@ -3144,20 +2471,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
- /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-object-rest-spread@7.24.5(@babel/core@7.24.5):
resolution: {integrity: sha512-7EauQHszLGM3ay7a161tTQH7fj+3vVM/gThlz5HpFtnygTxjrlvoeq7MPVA1Vy9Q555OB8SnAOsMkLShNkkrHA==}
engines: {node: '>=6.9.0'}
@@ -3170,213 +2483,105 @@ packages:
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5)
- /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.5):
- resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
-
- /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
- dev: false
-
- /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.5):
- resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
-
- /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- dev: false
-
- /@babel/plugin-transform-optional-chaining@7.24.5(@babel/core@7.24.5):
- resolution: {integrity: sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
-
- /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
- /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.23.7):
- resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
- /@babel/plugin-transform-parameters@7.24.5(@babel/core@7.24.5):
- resolution: {integrity: sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
-
- /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
- /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.5):
- resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
+ resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
- /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
+ /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.23.7)
+ '@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
- dev: false
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
- /@babel/plugin-transform-private-property-in-object@7.24.5(@babel/core@7.24.5):
- resolution: {integrity: sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==}
+ /@babel/plugin-transform-optional-chaining@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
- /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
+ /@babel/plugin-transform-parameters@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- dev: false
- /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.5):
- resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==}
+ /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-react-constant-elements@7.18.12(@babel/core@7.24.5):
- resolution: {integrity: sha512-Q99U9/ttiu+LMnRU8psd23HhvwXmKWDQIpocm0JKaICcZHnw+mdQbHm6xnSy7dOl8I5PELakYtNBubNQlBXbZw==}
+ /@babel/plugin-transform-private-property-in-object@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- dev: false
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
- /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==}
+ /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- dev: false
- /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.24.5):
- resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==}
+ /@babel/plugin-transform-react-constant-elements@7.24.6(@babel/core@7.24.5):
+ resolution: {integrity: sha512-vQfyXRtG/kNIcTYRd/49uJnwvMig9X3R4XsTVXRml2RFupZFY+2RDuK+/ymb+MfX2WuIHAgUZc2xEvQrnI7QCg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.6
dev: false
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.7):
- resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
+ /@babel/plugin-transform-react-display-name@7.24.6(@babel/core@7.24.5):
+ resolution: {integrity: sha512-/3iiEEHDsJuj9QU09gbyWGSUxDboFcD7Nj6dnHIlboWSodxXAoaY/zlNMHeYAC0WsERMqgO9a7UaM77CsYgWcg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.6
dev: false
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.5):
- resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
+ /@babel/plugin-transform-react-jsx-development@7.24.6(@babel/core@7.24.5):
+ resolution: {integrity: sha512-F7EsNp5StNDouSSdYyDSxh4J+xvj/JqG+Cb6s2fA+jCyHOzigG5vTwgH8tU2U8Voyiu5zCG9bAK49wTr/wPH0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx': 7.24.6(@babel/core@7.24.5)
dev: false
/@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.7):
@@ -3399,34 +2604,6 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.7):
- resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@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.24.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.7)
- '@babel/types': 7.22.15
- dev: false
-
- /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.24.5):
- resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.24.5)
- '@babel/types': 7.22.15
- dev: false
-
/@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5):
resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
engines: {node: '>=6.9.0'}
@@ -3440,37 +2617,29 @@ packages:
'@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
'@babel/types': 7.24.5
- /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
- /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.24.5):
- resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==}
+ /@babel/plugin-transform-react-jsx@7.24.6(@babel/core@7.24.5):
+ resolution: {integrity: sha512-pCtPHhpRZHfwdA5G1Gpk5mIzMA99hv0R8S/Ket50Rw+S+8hkt3wBWqdqHaPw0CuUYxdshUgsPiLQ5fAs4ASMhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.5)
+ '@babel/types': 7.24.6
dev: false
- /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
+ /@babel/plugin-transform-react-pure-annotations@7.24.6(@babel/core@7.24.5):
+ resolution: {integrity: sha512-0HoDQlFJJkXRyV2N+xOpUETbKHcouSwijRQbKWVtxsPoq5bbB30qZag9/pSc5xcWVYjTHlLsBsY+hZDnzQTPNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- regenerator-transform: 0.15.2
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
dev: false
/@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.5):
@@ -3483,16 +2652,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
regenerator-transform: 0.15.2
- /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==}
engines: {node: '>=6.9.0'}
@@ -3502,23 +2661,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-runtime@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-fa0hnfmiXc9fq/weK34MUV0drz2pOL/vfKWvN7Qw127hiUPabFCUMgAbYWcchRzMJit4o5ARsK/s+5h0249pLw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.7)
- babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7)
- babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.7)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.5):
resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
engines: {node: '>=6.9.0'}
@@ -3535,16 +2677,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==}
engines: {node: '>=6.9.0'}
@@ -3554,17 +2686,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- dev: false
-
/@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==}
engines: {node: '>=6.9.0'}
@@ -3575,16 +2696,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==}
engines: {node: '>=6.9.0'}
@@ -3594,16 +2705,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==}
engines: {node: '>=6.9.0'}
@@ -3613,16 +2714,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-typeof-symbol@7.24.5(@babel/core@7.24.5):
resolution: {integrity: sha512-UTGnhYVZtTAjdwOTzT+sCyXmTn8AhaxOS/MjG9REclZ6ULHWF9KoCZur0HSGU7hk8PdBFKKbYe6+gqdXWz84Jg==}
engines: {node: '>=6.9.0'}
@@ -3632,19 +2723,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-typescript@7.22.11(@babel/core@7.23.7):
- resolution: {integrity: sha512-0E4/L+7gfvHub7wsbTv03oRtD69X31LByy44fGmFzbZScpupFByMcgCJ0VbBTkzyjSJKuRoGN8tcijOWKTmqOA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.7)
- dev: false
-
/@babel/plugin-transform-typescript@7.22.11(@babel/core@7.24.5):
resolution: {integrity: sha512-0E4/L+7gfvHub7wsbTv03oRtD69X31LByy44fGmFzbZScpupFByMcgCJ0VbBTkzyjSJKuRoGN8tcijOWKTmqOA==}
engines: {node: '>=6.9.0'}
@@ -3657,16 +2735,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.24.5)
- /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==}
engines: {node: '>=6.9.0'}
@@ -3676,17 +2744,6 @@ packages:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==}
engines: {node: '>=6.9.0'}
@@ -3697,17 +2754,6 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==}
engines: {node: '>=6.9.0'}
@@ -3718,17 +2764,6 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.24.5
- dev: false
-
/@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==}
engines: {node: '>=6.9.0'}
@@ -3739,97 +2774,6 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.5
- /@babel/preset-env@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-SY27X/GtTz/L4UryMNJ6p4fH4nsgWbz84y9FE0bQeWJP6O5BhgVCt53CotQKHCOeXJel8VyhlhujhlltKms/CA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@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.23.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@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.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@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.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.23.7)
- '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.23.7)
- '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.7)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-umd': 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-new-target': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.7)
- babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.7)
- babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7)
- babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.7)
- core-js-compat: 3.35.0
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@babel/preset-env@7.24.5(@babel/core@7.24.5):
resolution: {integrity: sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==}
engines: {node: '>=6.9.0'}
@@ -3921,17 +2865,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.7):
- resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/types': 7.23.9
- esutils: 2.0.3
- dev: false
-
/@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
@@ -3939,51 +2872,22 @@ packages:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.5
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
esutils: 2.0.3
- /@babel/preset-react@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.7)
- '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.7)
- dev: false
-
- /@babel/preset-react@7.23.3(@babel/core@7.24.5):
- resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==}
+ /@babel/preset-react@7.24.6(@babel/core@7.24.5):
+ resolution: {integrity: sha512-8mpzh1bWvmINmwM3xpz6ahu57mNaWavMm+wBNjQ4AFu1nghKBiIRET7l/Wmj4drXany/BBGjJZngICcD98F1iw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.5)
- '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.24.5)
- dev: false
-
- /@babel/preset-typescript@7.22.11(@babel/core@7.23.7):
- resolution: {integrity: sha512-tWY5wyCZYBGY7IlalfKI1rLiGlIfnwsRHZqlky0HVv8qviwQ1Uo/05M6+s+TcTCVa6Bmoo2uJW5TMFX6Wa4qVg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.7)
- '@babel/plugin-transform-typescript': 7.22.11(@babel/core@7.23.7)
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ '@babel/plugin-transform-react-display-name': 7.24.6(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx': 7.24.6(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx-development': 7.24.6(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-pure-annotations': 7.24.6(@babel/core@7.24.5)
dev: false
/@babel/preset-typescript@7.22.11(@babel/core@7.24.5):
@@ -3993,20 +2897,20 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5)
'@babel/plugin-transform-typescript': 7.22.11(@babel/core@7.24.5)
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- /@babel/runtime-corejs3@7.23.8:
- resolution: {integrity: sha512-2ZzmcDugdm0/YQKFVYsXiwUN7USPX8PM7cytpb4PFl87fM+qYPSvTZX//8tyeJB1j0YDmafBJEbl5f8NfLyuKw==}
+ /@babel/runtime-corejs3@7.24.6:
+ resolution: {integrity: sha512-tbC3o8uHK9xMgMsvUm9qGqxVpbv6yborMBLbDteHIc7JDNHsTV0vDMQ5j1O1NXvO+BDELtL9KgoWYaUVIVGt8w==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.35.0
+ core-js-pure: 3.37.1
regenerator-runtime: 0.14.0
dev: false
@@ -4024,13 +2928,6 @@ packages:
regenerator-runtime: 0.13.11
dev: true
- /@babel/runtime@7.23.7:
- resolution: {integrity: sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: 0.14.0
- dev: false
-
/@babel/runtime@7.24.5:
resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==}
engines: {node: '>=6.9.0'}
@@ -4083,7 +2980,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.0
+ '@babel/generator': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.22.5
'@babel/helper-hoist-variables': 7.22.5
@@ -4202,6 +3099,15 @@ packages:
'@babel/helper-validator-identifier': 7.24.5
to-fast-properties: 2.0.0
+ /@babel/types@7.24.6:
+ resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
+ to-fast-properties: 2.0.0
+ dev: false
+
/@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -4455,100 +3361,100 @@ packages:
'@csstools/css-tokenizer': 2.0.0
dev: true
- /@csstools/postcss-cascade-layers@3.0.0(postcss@8.4.21):
+ /@csstools/postcss-cascade-layers@3.0.0(postcss@8.4.38):
resolution: {integrity: sha512-CpjItl5zYoROgc3f7+ptPOXJr0sFDf+0CUEmwQMd/JOAmpP9scXtAWvoFwkFKIjBDE6swqbamjIMwmYVCBL6rg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 2.1.0(postcss-selector-parser@6.0.12)(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/selector-specificity': 2.1.0(postcss-selector-parser@6.0.12)(postcss@8.4.38)
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
- /@csstools/postcss-color-function@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-color-function@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-rB3Ur+Ns2aOEBMz3zFyjmU6uBBGko84yRD1G6Re/v2p1GRzjz8/o738syQLoxRb1TNcND0YsiKoUeaRuwfk9yw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-font-format-keywords@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-font-format-keywords@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-/ew2ScjfoN4dBWhs3CQhVp47VPVO4MVzTdpjygiW9bXj3e2MyoMXuWoBksA1LdREMh5UhrEjBmtwFIx7R2oVIA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-hwb-function@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-hwb-function@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-1rXMiRapGL6tQJsGKzvEY78DSDc4lZXQzPkHwRBuwoJvRAdtXWQyR00Jk73TOFkmVtmo5bdbS6Rnm1f01lpmlg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-ic-unit@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-ic-unit@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-R120sQLhdNFH1K3cBpTLAwqu41L9r9BF5K+6tWMMbCpSiUXhNcYCJWbghf2546No9HBiWGL8YLZabsuaHKAEKg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-is-pseudo-class@3.0.0(postcss@8.4.21):
+ /@csstools/postcss-is-pseudo-class@3.0.0(postcss@8.4.38):
resolution: {integrity: sha512-rz3Ch3gxMeOdMDppuikEmlI3jhnkQd/OM/xAmSjPeCfhYPy37BlNTgsxpaPVizkhkMOfibH/eMkzeXNbXdBBXw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 2.1.0(postcss-selector-parser@6.0.12)(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/selector-specificity': 2.1.0(postcss-selector-parser@6.0.12)(postcss@8.4.38)
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
- /@csstools/postcss-logical-float-and-clear@1.0.0(postcss@8.4.21):
+ /@csstools/postcss-logical-float-and-clear@1.0.0(postcss@8.4.38):
resolution: {integrity: sha512-duwyZx5NHEi3DYtk8vTnZ/QwxXYIm7OaXPEfDflbwEIlpB1wNbY9m7TnLT4vZRPv6yAxHEDoHJXS/Zj36mC7uw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
- /@csstools/postcss-logical-resize@1.0.0(postcss@8.4.21):
+ /@csstools/postcss-logical-resize@1.0.0(postcss@8.4.38):
resolution: {integrity: sha512-gsySHNBxhHI76I0MmoHz+OJ+EWlEl7TQFKdpRmKG0bfdYZVZaAexAHXLulJL3Tp3ifcD0ev9fSsIPYGeKTx2qA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-logical-viewport-units@1.0.1(postcss@8.4.21):
+ /@csstools/postcss-logical-viewport-units@1.0.1(postcss@8.4.38):
resolution: {integrity: sha512-KAZyurROvdd0oFsD33LBXQYq15r25MOpPnpSsZvnPnPIFM0I9XL0EDPILgKiRRQbdjx0SvCWRtxtT4BiOkxpig==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/css-tokenizer': 2.0.0
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
- /@csstools/postcss-media-queries-aspect-ratio-number-values@1.0.0(postcss@8.4.21):
+ /@csstools/postcss-media-queries-aspect-ratio-number-values@1.0.0(postcss@8.4.38):
resolution: {integrity: sha512-gC5RQSI/42TbaOdPZoObcL4lhLYggBzTp/PTypcmLMp8JLPQdlJq2Ys0t8pxfDw98GvsHZahUbhPxJaebbCT1w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -4557,107 +3463,107 @@ packages:
'@csstools/css-parser-algorithms': 1.0.0(@csstools/css-tokenizer@1.0.0)
'@csstools/css-tokenizer': 1.0.0
'@csstools/media-query-list-parser': 1.0.0(@csstools/css-parser-algorithms@1.0.0)(@csstools/css-tokenizer@1.0.0)
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
- /@csstools/postcss-nested-calc@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-nested-calc@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-omq/2O2ZENbCa/UY9i6uo4MloNMXZg/lqMv0utOwlNFUgdrpMdnDKWcNRiHV5OvlOnvg188MRyzHwQjqapbJ7w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-normalize-display-values@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-normalize-display-values@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-mN5ycsvVkPjt81fVo33p142imrhSBN3LAvvuP6qfkQ6C3452IWO1ZcbYQ/QYcYBymChsmbXmk1jQNZ2kZOFZag==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-oklab-function@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-oklab-function@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-PONCTLUqo0GFGG+adf6ZUJt7icC8s1SYxC18S9AQhRAGp4m9Fe9EnpaJofikCuZYHkrxr8ngh6D1mSHwA9aryQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-progressive-custom-properties@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-progressive-custom-properties@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-jQl/sQRcMwgaWWzmy65LtxVWnSvRFnhnaRVCvHaMLf5ZT2LRE5w3EG7Z4FqV6IK4L/vB/GSZSzl8AEA9CXN8Zg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-scope-pseudo-class@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-scope-pseudo-class@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-YvsluKH7w/R86BLDl9urwpMUc5PAdeRdrWj20AcHCmr9+2FdsIuWZxYWnof6kNdVYGpK1ox7lXXuCz06VBowPw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
- /@csstools/postcss-stepped-value-functions@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-stepped-value-functions@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-6PWwbiolpSx9Lbmdq39wvt9XKYjWlnIq5cRkAKrZA1lJsL09GRmYdwjYjBuESe6mrkysOED4CIMwEJ+EbginLA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-text-decoration-shorthand@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-text-decoration-shorthand@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-+Ce+VVbEj2/TJUGUULiMyC/30JruYpCcADwWSW8kLUoO35XWQWQW09MCRFhTS50AHvIuzYG8lZ5TeFXuVAt/uw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-trigonometric-functions@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-trigonometric-functions@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-T7SZreVZUX0b2m3+X25Bp7cW2eJWfsCm40NoERSZPxsW6He8zuz+Hx6opOVelMyoM8YvYIBOFns8eNCHX7WL/Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-unset-value@2.0.0(postcss@8.4.21):
+ /@csstools/postcss-unset-value@2.0.0(postcss@8.4.38):
resolution: {integrity: sha512-dx15RWSMlYsgtcl4YkVOe7Rd8tEEx8AEBnxpURI7AQa4dDJC3utZWD3am4Ynx2aoGu5C5lMF/RvSA3+uRpHPXw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
- /@csstools/selector-specificity@2.1.0(postcss-selector-parser@6.0.12)(postcss@8.4.21):
+ /@csstools/selector-specificity@2.1.0(postcss-selector-parser@6.0.12)(postcss@8.4.38):
resolution: {integrity: sha512-zJ6hb3FDgBbO8d2e83vg6zq7tNvDqSq9RwdwfzJ8tdm9JHNvANq2fqwyRn6mlpUb7CwTs5ILdUrGwi9Gk4vY5w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
postcss-selector-parser: ^6.0.10
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
@@ -4698,12 +3604,12 @@ packages:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
- /@docsearch/css@3.5.2:
- resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==}
+ /@docsearch/css@3.6.0:
+ resolution: {integrity: sha512-+sbxb71sWre+PwDK7X2T8+bhS6clcVMLwBPznX45Qu6opJcgRjAp7gYSDzVFp187J+feSj5dNBN1mJoi6ckkUQ==}
dev: false
- /@docsearch/react@3.5.2(@algolia/client-search@4.22.1)(@types/react@18.2.22)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0):
- resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==}
+ /@docsearch/react@3.6.0(@algolia/client-search@4.23.3)(@types/react@18.0.27)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.14.0):
+ resolution: {integrity: sha512-HUFut4ztcVNmqy9gp/wxNbC7pTOHhgVVkHVGCACTuLhUKUhKAF9KYHJtMiLUJxEqiFLQiuri1fWF8zqwM/cu1w==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
react: '>= 16.8.0 < 19.0.0'
@@ -4719,14 +3625,14 @@ packages:
search-insights:
optional: true
dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(search-insights@2.13.0)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
- '@docsearch/css': 3.5.2
- '@types/react': 18.2.22
- algoliasearch: 4.22.1
+ '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0)
+ '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)
+ '@docsearch/css': 3.6.0
+ '@types/react': 18.0.27
+ algoliasearch: 4.23.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- search-insights: 2.13.0
+ search-insights: 2.14.0
transitivePeerDependencies:
- '@algolia/client-search'
dev: false
@@ -4739,16 +3645,16 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/generator': 7.23.6
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-transform-runtime': 7.23.7(@babel/core@7.23.7)
- '@babel/preset-env': 7.23.7(@babel/core@7.23.7)
- '@babel/preset-react': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-typescript': 7.22.11(@babel/core@7.23.7)
- '@babel/runtime': 7.23.7
- '@babel/runtime-corejs3': 7.23.8
- '@babel/traverse': 7.23.7
+ '@babel/core': 7.24.5
+ '@babel/generator': 7.24.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.5)
+ '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
+ '@babel/preset-react': 7.24.6(@babel/core@7.24.5)
+ '@babel/preset-typescript': 7.22.11(@babel/core@7.24.5)
+ '@babel/runtime': 7.24.5
+ '@babel/runtime-corejs3': 7.24.6
+ '@babel/traverse': 7.24.5
'@docusaurus/cssnano-preset': 3.1.0
'@docusaurus/logger': 3.1.0
'@docusaurus/mdx-loader': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)(react-dom@18.2.0)(react@18.2.0)
@@ -4758,58 +3664,58 @@ packages:
'@docusaurus/utils-validation': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.16(postcss@8.4.33)
- babel-loader: 9.1.3(@babel/core@7.23.7)(webpack@5.89.0)
+ autoprefixer: 10.4.19(postcss@8.4.38)
+ babel-loader: 9.1.3(@babel/core@7.24.5)(webpack@5.91.0)
babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
chalk: 4.1.2
- chokidar: 3.5.3
+ chokidar: 3.6.0
clean-css: 5.3.3
cli-table3: 0.6.3
- combine-promises: 1.1.0
+ combine-promises: 1.2.0
commander: 5.1.0
- copy-webpack-plugin: 11.0.0(webpack@5.89.0)
- core-js: 3.35.0
- css-loader: 6.8.1(webpack@5.89.0)
- css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.3)(esbuild@0.19.5)(webpack@5.89.0)
- cssnano: 5.1.15(postcss@8.4.33)
+ copy-webpack-plugin: 11.0.0(webpack@5.91.0)
+ core-js: 3.37.1
+ css-loader: 6.10.0(webpack@5.91.0)
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.3)(esbuild@0.19.5)(webpack@5.91.0)
+ cssnano: 5.1.15(postcss@8.4.38)
del: 6.1.1
detect-port: 1.5.1
escape-html: 1.0.3
eta: 2.2.0
- file-loader: 6.2.0(webpack@5.89.0)
- fs-extra: 11.1.1
+ file-loader: 6.2.0(webpack@5.91.0)
+ fs-extra: 11.2.0
html-minifier-terser: 7.2.0
html-tags: 3.3.1
- html-webpack-plugin: 5.6.0(webpack@5.89.0)
+ html-webpack-plugin: 5.6.0(webpack@5.91.0)
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.7.6(webpack@5.89.0)
- postcss: 8.4.33
- postcss-loader: 7.3.4(postcss@8.4.33)(typescript@5.4.3)(webpack@5.89.0)
+ mini-css-extract-plugin: 2.9.0(webpack@5.91.0)
+ postcss: 8.4.38
+ postcss-loader: 7.3.4(postcss@8.4.38)(typescript@5.4.3)(webpack@5.91.0)
prompts: 2.4.2
react: 18.2.0
- react-dev-utils: 12.0.1(eslint@8.57.0)(typescript@5.4.3)(webpack@5.89.0)
+ react-dev-utils: 12.0.1(eslint@8.57.0)(typescript@5.4.3)(webpack@5.91.0)
react-dom: 18.2.0(react@18.2.0)
react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
- react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.89.0)
+ react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.91.0)
react-router: 5.3.4(react@18.2.0)
react-router-config: 5.1.1(react-router@5.3.4)(react@18.2.0)
react-router-dom: 5.3.4(react@18.2.0)
- rtl-detect: 1.0.4
- semver: 7.5.4
+ rtl-detect: 1.1.2
+ semver: 7.6.2
serve-handler: 6.1.5
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.9(@swc/core@1.3.99)(esbuild@0.19.5)(webpack@5.89.0)
+ terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.19.5)(webpack@5.91.0)
tslib: 2.6.2
update-notifier: 6.0.2
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.89.0)
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
- webpack-bundle-analyzer: 4.10.1
- webpack-dev-server: 4.15.1(webpack@5.89.0)
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
+ webpack-bundle-analyzer: 4.10.2
+ webpack-dev-server: 4.15.1(webpack@5.91.0)
webpack-merge: 5.10.0
- webpackbar: 5.0.2(webpack@5.89.0)
+ webpackbar: 5.0.2(webpack@5.91.0)
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
@@ -4855,18 +3761,18 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/parser': 7.23.6
- '@babel/traverse': 7.23.7
+ '@babel/parser': 7.24.5
+ '@babel/traverse': 7.24.5
'@docusaurus/logger': 3.1.0
'@docusaurus/utils': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
'@docusaurus/utils-validation': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
- '@mdx-js/mdx': 3.0.0
+ '@mdx-js/mdx': 3.0.1
'@slorber/remark-comment': 1.0.0
escape-html: 1.0.3
- estree-util-value-to-estree: 3.0.1
+ estree-util-value-to-estree: 3.1.1
file-loader: 6.2.0(webpack@5.91.0)
fs-extra: 11.2.0
- image-size: 1.0.2
+ image-size: 1.1.1
mdast-util-mdx: 3.0.0
mdast-util-to-string: 4.0.0
react: 18.2.0
@@ -4901,12 +3807,12 @@ packages:
'@docusaurus/react-loadable': 5.5.2(react@18.2.0)
'@docusaurus/types': 3.1.0(@swc/core@1.3.99)(esbuild@0.19.5)(react-dom@18.2.0)(react@18.2.0)
'@types/history': 4.7.11
- '@types/react': 18.2.22
- '@types/react-router-config': 5.0.6
+ '@types/react': 18.0.27
+ '@types/react-router-config': 5.0.11
'@types/react-router-dom': 5.3.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
+ react-helmet-async: 2.0.5(react@18.2.0)
react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
transitivePeerDependencies:
- '@swc/core'
@@ -4939,8 +3845,8 @@ packages:
srcset: 4.0.0
tslib: 2.6.2
unist-util-visit: 5.0.0
- utility-types: 3.10.0
- webpack: 5.90.1(@swc/core@1.3.99)(esbuild@0.19.5)
+ utility-types: 3.11.0
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -4975,15 +3881,15 @@ packages:
'@docusaurus/utils': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
'@docusaurus/utils-validation': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
'@types/react-router-config': 5.0.11
- combine-promises: 1.1.0
+ combine-promises: 1.2.0
fs-extra: 11.2.0
js-yaml: 4.1.0
lodash: 4.17.21
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
- utility-types: 3.10.0
- webpack: 5.90.1(@swc/core@1.3.99)(esbuild@0.19.5)
+ utility-types: 3.11.0
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -5019,7 +3925,7 @@ packages:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
- webpack: 5.90.1(@swc/core@1.3.99)(esbuild@0.19.5)
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -5052,7 +3958,7 @@ packages:
fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-json-view-lite: 1.2.1(react@18.2.0)
+ react-json-view-lite: 1.4.0(react@18.2.0)
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
@@ -5186,7 +4092,7 @@ packages:
fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- sitemap: 7.1.1
+ sitemap: 7.1.2
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
@@ -5207,7 +4113,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/preset-classic@3.1.0(@algolia/client-search@4.22.1)(@swc/core@1.3.99)(@types/react@18.2.22)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.3):
+ /@docusaurus/preset-classic@3.1.0(@algolia/client-search@4.23.3)(@swc/core@1.3.99)(@types/react@18.0.27)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.14.0)(typescript@5.4.3):
resolution: {integrity: sha512-xGLQRFmmT9IinAGUDVRYZ54Ys28USNbA3OTXQXnSJLPr1rCY7CYnHI4XoOnKWrNnDiAI4ruMzunXWyaElUYCKQ==}
engines: {node: '>=18.0'}
peerDependencies:
@@ -5223,9 +4129,9 @@ packages:
'@docusaurus/plugin-google-gtag': 3.1.0(@swc/core@1.3.99)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
'@docusaurus/plugin-google-tag-manager': 3.1.0(@swc/core@1.3.99)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
'@docusaurus/plugin-sitemap': 3.1.0(@swc/core@1.3.99)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
- '@docusaurus/theme-classic': 3.1.0(@swc/core@1.3.99)(@types/react@18.2.22)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/theme-classic': 3.1.0(@swc/core@1.3.99)(@types/react@18.0.27)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
'@docusaurus/theme-common': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
- '@docusaurus/theme-search-algolia': 3.1.0(@algolia/client-search@4.22.1)(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(@types/react@18.2.22)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.3)
+ '@docusaurus/theme-search-algolia': 3.1.0(@algolia/client-search@4.23.3)(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(@types/react@18.0.27)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.14.0)(typescript@5.4.3)
'@docusaurus/types': 3.1.0(@swc/core@1.3.99)(esbuild@0.19.5)(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -5256,11 +4162,11 @@ packages:
peerDependencies:
react: '*'
dependencies:
- '@types/react': 18.2.22
+ '@types/react': 18.0.27
prop-types: 15.8.1
react: 18.2.0
- /@docusaurus/theme-classic@3.1.0(@swc/core@1.3.99)(@types/react@18.2.22)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ /@docusaurus/theme-classic@3.1.0(@swc/core@1.3.99)(@types/react@18.0.27)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
resolution: {integrity: sha512-/+jMl2Z9O8QQxves5AtHdt91gWsEZFgOV3La/6eyKEd7QLqQUtM5fxEJ40rq9NKYjqCd1HzZ9egIMeJoWwillw==}
engines: {node: '>=18.0'}
peerDependencies:
@@ -5279,13 +4185,13 @@ packages:
'@docusaurus/utils': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
'@docusaurus/utils-common': 3.1.0(@docusaurus/types@3.1.0)
'@docusaurus/utils-validation': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
- '@mdx-js/react': 3.0.1(@types/react@18.2.22)(react@18.2.0)
+ '@mdx-js/react': 3.0.1(@types/react@18.0.27)(react@18.2.0)
clsx: 2.1.0
copy-text-to-clipboard: 3.2.0
infima: 0.2.0-alpha.43
lodash: 4.17.21
nprogress: 0.2.0
- postcss: 8.4.35
+ postcss: 8.4.38
prism-react-renderer: 2.3.1(react@18.2.0)
prismjs: 1.29.0
react: 18.2.0
@@ -5293,7 +4199,7 @@ packages:
react-router-dom: 5.3.4(react@18.2.0)
rtlcss: 4.1.1
tslib: 2.6.2
- utility-types: 3.10.0
+ utility-types: 3.11.0
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -5329,15 +4235,15 @@ packages:
'@docusaurus/utils': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
'@docusaurus/utils-common': 3.1.0(@docusaurus/types@3.1.0)
'@types/history': 4.7.11
- '@types/react': 18.2.22
- '@types/react-router-config': 5.0.6
+ '@types/react': 18.0.27
+ '@types/react-router-config': 5.0.11
clsx: 2.1.0
parse-numeric-range: 1.3.0
prism-react-renderer: 2.3.1(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
- utility-types: 3.10.0
+ utility-types: 3.11.0
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
@@ -5358,14 +4264,14 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-search-algolia@3.1.0(@algolia/client-search@4.22.1)(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(@types/react@18.2.22)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.3):
+ /@docusaurus/theme-search-algolia@3.1.0(@algolia/client-search@4.23.3)(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(@types/react@18.0.27)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.14.0)(typescript@5.4.3):
resolution: {integrity: sha512-8cJH0ZhPsEDjq3jR3I+wHmWzVY2bXMQJ59v2QxUmsTZxbWA4u+IzccJMIJx4ooFl9J6iYynwYsFuHxyx/KUmfQ==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docsearch/react': 3.5.2(@algolia/client-search@4.22.1)(@types/react@18.2.22)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)
+ '@docsearch/react': 3.6.0(@algolia/client-search@4.23.3)(@types/react@18.0.27)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.14.0)
'@docusaurus/core': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
'@docusaurus/logger': 3.1.0
'@docusaurus/plugin-content-docs': 3.1.0(@swc/core@1.3.99)(esbuild@0.19.5)(eslint@8.57.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
@@ -5373,8 +4279,8 @@ packages:
'@docusaurus/theme-translations': 3.1.0
'@docusaurus/utils': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
'@docusaurus/utils-validation': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
- algoliasearch: 4.22.1
- algoliasearch-helper: 3.16.1(algoliasearch@4.22.1)
+ algoliasearch: 4.23.3
+ algoliasearch-helper: 3.21.0(algoliasearch@4.23.3)
clsx: 2.1.0
eta: 2.2.0
fs-extra: 11.2.0
@@ -5382,7 +4288,7 @@ packages:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
- utility-types: 3.10.0
+ utility-types: 3.11.0
transitivePeerDependencies:
- '@algolia/client-search'
- '@docusaurus/types'
@@ -5420,16 +4326,16 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@mdx-js/mdx': 3.0.0
+ '@mdx-js/mdx': 3.0.1
'@types/history': 4.7.11
- '@types/react': 18.2.22
+ '@types/react': 18.0.27
commander: 5.1.0
- joi: 17.11.0
+ joi: 17.13.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
- utility-types: 3.10.0
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
+ utility-types: 3.11.0
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
webpack-merge: 5.10.0
transitivePeerDependencies:
- '@swc/core'
@@ -5457,7 +4363,7 @@ packages:
dependencies:
'@docusaurus/logger': 3.1.0
'@docusaurus/utils': 3.1.0(@docusaurus/types@3.1.0)(@swc/core@1.3.99)(esbuild@0.19.5)
- joi: 17.11.0
+ joi: 17.13.1
js-yaml: 4.1.0
tslib: 2.6.2
transitivePeerDependencies:
@@ -5487,7 +4393,7 @@ packages:
github-slugger: 1.5.0
globby: 11.1.0
gray-matter: 4.0.3
- jiti: 1.20.0
+ jiti: 1.21.0
js-yaml: 4.1.0
lodash: 4.17.21
micromatch: 4.0.5
@@ -7343,35 +6249,6 @@ packages:
tslib: 2.6.2
dev: false
- /@mdx-js/mdx@3.0.0:
- resolution: {integrity: sha512-Icm0TBKBLYqroYbNW3BPnzMGn+7mwpQOK310aZ7+fkCtiU3aqv2cdcX+nd0Ydo3wI5Rx8bX2Z2QmGb/XcAClCw==}
- dependencies:
- '@types/estree': 1.0.1
- '@types/estree-jsx': 1.0.1
- '@types/hast': 3.0.3
- '@types/mdx': 2.0.8
- collapse-white-space: 2.1.0
- devlop: 1.1.0
- estree-util-build-jsx: 3.0.1
- estree-util-is-identifier-name: 3.0.0
- estree-util-to-js: 2.0.0
- estree-walker: 3.0.3
- hast-util-to-estree: 3.1.0
- hast-util-to-jsx-runtime: 2.3.0
- markdown-extensions: 2.0.0
- periscopic: 3.1.0
- remark-mdx: 3.0.0
- remark-parse: 11.0.0
- remark-rehype: 11.1.0
- source-map: 0.7.4
- unified: 11.0.4
- unist-util-position-from-estree: 2.0.0
- unist-util-stringify-position: 4.0.0
- unist-util-visit: 5.0.0
- vfile: 6.0.1
- transitivePeerDependencies:
- - supports-color
-
/@mdx-js/mdx@3.0.1:
resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==}
dependencies:
@@ -7400,16 +6277,15 @@ packages:
vfile: 6.0.1
transitivePeerDependencies:
- supports-color
- dev: false
- /@mdx-js/react@3.0.0(@types/react@18.2.22)(react@18.2.0):
+ /@mdx-js/react@3.0.0(@types/react@18.0.27)(react@18.2.0):
resolution: {integrity: sha512-nDctevR9KyYFyV+m+/+S4cpzCWHqj+iHDHq3QrsWezcC+B17uZdIWgCguESUkwFhM3n/56KxWVE3V6EokrmONQ==}
peerDependencies:
'@types/react': '>=16'
react: '>=16'
dependencies:
'@types/mdx': 2.0.8
- '@types/react': 18.2.22
+ '@types/react': 18.0.27
react: 18.2.0
dev: false
@@ -7424,14 +6300,14 @@ packages:
react: 18.2.0
dev: false
- /@mdx-js/react@3.0.1(@types/react@18.2.22)(react@18.2.0):
+ /@mdx-js/react@3.0.1(@types/react@18.0.27)(react@18.2.0):
resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
peerDependencies:
'@types/react': '>=16'
react: '>=16'
dependencies:
'@types/mdx': 2.0.8
- '@types/react': 18.2.22
+ '@types/react': 18.0.27
react: 18.2.0
dev: false
@@ -8700,8 +7576,8 @@ packages:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
dev: true
- /@polka/url@1.0.0-next.24:
- resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
+ /@polka/url@1.0.0-next.25:
+ resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
dev: false
/@rollup/plugin-alias@5.1.0(rollup@4.18.0):
@@ -9199,13 +8075,19 @@ packages:
- supports-color
dev: true
- /@shikijs/core@1.6.0:
- resolution: {integrity: sha512-NIEAi5U5R7BLkbW1pG/ZKu3eb1lzc3/+jD0lFsuxMT7zjaf9bbNwdNyMr7zh/Zl8EXQtQ+MYBAt5G+JLu+5DlA==}
+ /@shikijs/core@1.6.1:
+ resolution: {integrity: sha512-CqYyepN4SnBopaoXYwng4NO8riB5ask/LTCkhOFq+GNGtr2X+aKeD767eYdqYukeixEUvv4bXdyTYVaogj7KBw==}
/@sideway/address@4.1.4:
resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
dependencies:
'@hapi/hoek': 9.3.0
+ dev: true
+
+ /@sideway/address@4.1.5:
+ resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
+ dependencies:
+ '@hapi/hoek': 9.3.0
/@sideway/formula@3.0.0:
resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==}
@@ -9326,18 +8208,18 @@ packages:
'@babel/core': 7.24.5
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute@6.3.1(@babel/core@7.24.5):
- resolution: {integrity: sha512-dQzyJ4prwjcFd929T43Z8vSYiTlTu8eafV40Z2gO7zy/SV5GT+ogxRJRBIKWomPBOiaVXFg3jY4S5hyEN3IBjQ==}
- engines: {node: '>=10'}
+ /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.5):
+ resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
+ engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.24.5
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression@6.3.1(@babel/core@7.24.5):
- resolution: {integrity: sha512-HBOUc1XwSU67fU26V5Sfb8MQsT0HvUyxru7d0oBJ4rA2s4HW3PhyAPC7fV/mdsSGpAvOdd8Wpvkjsr0fWPUO7A==}
- engines: {node: '>=10'}
+ /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.5):
+ resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
+ engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -9397,8 +8279,8 @@ packages:
dependencies:
'@babel/core': 7.24.5
'@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.5)
- '@svgr/babel-plugin-remove-jsx-attribute': 6.3.1(@babel/core@7.24.5)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 6.3.1(@babel/core@7.24.5)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.5)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.5)
'@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.24.5)
'@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.24.5)
'@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.24.5)
@@ -9459,9 +8341,9 @@ packages:
engines: {node: '>=10'}
dependencies:
'@babel/core': 7.24.5
- '@babel/plugin-transform-react-constant-elements': 7.18.12(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-constant-elements': 7.24.6(@babel/core@7.24.5)
'@babel/preset-env': 7.24.5(@babel/core@7.24.5)
- '@babel/preset-react': 7.23.3(@babel/core@7.24.5)
+ '@babel/preset-react': 7.24.6(@babel/core@7.24.5)
'@babel/preset-typescript': 7.22.11(@babel/core@7.24.5)
'@svgr/core': 6.5.1
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
@@ -9522,7 +8404,7 @@ packages:
fast-glob: 3.3.2
minimatch: 9.0.3
piscina: 4.4.0
- semver: 7.6.1
+ semver: 7.6.2
slash: 3.0.0
source-map: 0.7.4
dev: true
@@ -9757,12 +8639,6 @@ packages:
'@types/connect': 3.4.35
'@types/node': 18.19.15
- /@types/bonjour@3.5.10:
- resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
- dependencies:
- '@types/node': 18.19.15
- dev: false
-
/@types/bonjour@3.5.13:
resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
dependencies:
@@ -9777,13 +8653,6 @@ packages:
'@types/responselike': 1.0.0
dev: true
- /@types/connect-history-api-fallback@1.3.5:
- resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
- dependencies:
- '@types/express-serve-static-core': 4.17.31
- '@types/node': 18.19.15
- dev: false
-
/@types/connect-history-api-fallback@1.5.4:
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
dependencies:
@@ -9829,14 +8698,6 @@ packages:
/@types/estree@1.0.5:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- /@types/express-serve-static-core@4.17.31:
- resolution: {integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==}
- dependencies:
- '@types/node': 18.19.15
- '@types/qs': 6.9.7
- '@types/range-parser': 1.2.4
- dev: false
-
/@types/express-serve-static-core@4.19.0:
resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==}
dependencies:
@@ -9845,15 +8706,6 @@ packages:
'@types/range-parser': 1.2.4
'@types/send': 0.17.4
- /@types/express@4.17.14:
- resolution: {integrity: sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==}
- dependencies:
- '@types/body-parser': 1.19.2
- '@types/express-serve-static-core': 4.17.31
- '@types/qs': 6.9.7
- '@types/serve-static': 1.15.7
- dev: false
-
/@types/express@4.17.21:
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
dependencies:
@@ -9959,10 +8811,6 @@ packages:
/@types/mime@1.3.5:
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
- /@types/mime@3.0.1:
- resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
- dev: false
-
/@types/minimist@1.2.2:
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
dev: true
@@ -10030,29 +8878,21 @@ packages:
resolution: {integrity: sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.22
- '@types/react-router': 5.1.19
- dev: false
-
- /@types/react-router-config@5.0.6:
- resolution: {integrity: sha512-db1mx37a1EJDf1XeX8jJN7R3PZABmJQXR8r28yUjVMFSjkmnQo6X6pOEEmNl+Tp2gYQOGPdYbFIipBtdElZ3Yg==}
- dependencies:
- '@types/history': 4.7.11
- '@types/react': 18.2.22
- '@types/react-router': 5.1.19
+ '@types/react': 18.0.27
+ '@types/react-router': 5.1.20
/@types/react-router-dom@5.3.3:
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.22
- '@types/react-router': 5.1.19
+ '@types/react': 18.0.27
+ '@types/react-router': 5.1.20
- /@types/react-router@5.1.19:
- resolution: {integrity: sha512-Fv/5kb2STAEMT3wHzdKQK2z8xKq38EDIGVrutYLmQVVLe+4orDFquU52hQrULnEHinMKv9FSA6lf9+uNT1ITtA==}
+ /@types/react-router@5.1.20:
+ resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.22
+ '@types/react': 18.0.27
/@types/react@18.0.21:
resolution: {integrity: sha512-7QUCOxvFgnD5Jk8ZKlUAhVcRj7GuJRjnjjiY/IUBWKgOlnvDvTMLD4RTF7NPyVmbRhNrbomZiOepg7M/2Kj1mA==}
@@ -10068,13 +8908,6 @@ packages:
'@types/scheduler': 0.16.2
csstype: 3.1.0
- /@types/react@18.2.22:
- resolution: {integrity: sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==}
- dependencies:
- '@types/prop-types': 15.7.5
- '@types/scheduler': 0.16.3
- csstype: 3.1.2
-
/@types/resolve@1.20.2:
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@@ -10091,8 +8924,8 @@ packages:
/@types/retry@0.12.2:
resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==}
- /@types/sax@1.2.4:
- resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==}
+ /@types/sax@1.2.7:
+ resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
dependencies:
'@types/node': 18.19.15
dev: false
@@ -10100,9 +8933,6 @@ packages:
/@types/scheduler@0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
- /@types/scheduler@0.16.3:
- resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
-
/@types/semver@7.5.6:
resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==}
@@ -10112,24 +8942,11 @@ packages:
'@types/mime': 1.3.5
'@types/node': 18.19.15
- /@types/serve-index@1.9.1:
- resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
- dependencies:
- '@types/express': 4.17.21
- dev: false
-
/@types/serve-index@1.9.4:
resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
dependencies:
'@types/express': 4.17.21
- /@types/serve-static@1.15.0:
- resolution: {integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==}
- dependencies:
- '@types/mime': 3.0.1
- '@types/node': 18.19.15
- dev: false
-
/@types/serve-static@1.15.7:
resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
dependencies:
@@ -10145,12 +8962,6 @@ packages:
resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==}
dev: true
- /@types/sockjs@0.3.33:
- resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
- dependencies:
- '@types/node': 18.19.15
- dev: false
-
/@types/sockjs@0.3.36:
resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
dependencies:
@@ -10173,12 +8984,6 @@ packages:
dependencies:
'@types/node': 18.19.15
- /@types/ws@8.5.5:
- resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==}
- dependencies:
- '@types/node': 18.19.15
- dev: false
-
/@types/yargs-parser@21.0.0:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
@@ -10217,7 +9022,7 @@ packages:
graphemer: 1.4.0
ignore: 5.2.4
natural-compare: 1.4.0
- semver: 7.6.0
+ semver: 7.6.2
ts-api-utils: 1.0.3(typescript@5.4.3)
typescript: 5.4.3
transitivePeerDependencies:
@@ -10490,12 +9295,6 @@ packages:
pretty-format: 29.7.0
dev: true
- /@webassemblyjs/ast@1.11.6:
- resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==}
- dependencies:
- '@webassemblyjs/helper-numbers': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
-
/@webassemblyjs/ast@1.12.1:
resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
dependencies:
@@ -10508,9 +9307,6 @@ packages:
/@webassemblyjs/helper-api-error@1.11.6:
resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
- /@webassemblyjs/helper-buffer@1.11.6:
- resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==}
-
/@webassemblyjs/helper-buffer@1.12.1:
resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
@@ -10524,14 +9320,6 @@ packages:
/@webassemblyjs/helper-wasm-bytecode@1.11.6:
resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
- /@webassemblyjs/helper-wasm-section@1.11.6:
- resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==}
- dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/helper-buffer': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/wasm-gen': 1.11.6
-
/@webassemblyjs/helper-wasm-section@1.12.1:
resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
dependencies:
@@ -10553,18 +9341,6 @@ packages:
/@webassemblyjs/utf8@1.11.6:
resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
- /@webassemblyjs/wasm-edit@1.11.6:
- resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==}
- dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/helper-buffer': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/helper-wasm-section': 1.11.6
- '@webassemblyjs/wasm-gen': 1.11.6
- '@webassemblyjs/wasm-opt': 1.11.6
- '@webassemblyjs/wasm-parser': 1.11.6
- '@webassemblyjs/wast-printer': 1.11.6
-
/@webassemblyjs/wasm-edit@1.12.1:
resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
dependencies:
@@ -10577,15 +9353,6 @@ packages:
'@webassemblyjs/wasm-parser': 1.12.1
'@webassemblyjs/wast-printer': 1.12.1
- /@webassemblyjs/wasm-gen@1.11.6:
- resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
-
/@webassemblyjs/wasm-gen@1.12.1:
resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
dependencies:
@@ -10595,14 +9362,6 @@ packages:
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
- /@webassemblyjs/wasm-opt@1.11.6:
- resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==}
- dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/helper-buffer': 1.11.6
- '@webassemblyjs/wasm-gen': 1.11.6
- '@webassemblyjs/wasm-parser': 1.11.6
-
/@webassemblyjs/wasm-opt@1.12.1:
resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
dependencies:
@@ -10611,16 +9370,6 @@ packages:
'@webassemblyjs/wasm-gen': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- /@webassemblyjs/wasm-parser@1.11.6:
- resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==}
- dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/helper-api-error': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
-
/@webassemblyjs/wasm-parser@1.12.1:
resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
dependencies:
@@ -10631,12 +9380,6 @@ packages:
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
- /@webassemblyjs/wast-printer@1.11.6:
- resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==}
- dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@xtuc/long': 4.2.2
-
/@webassemblyjs/wast-printer@1.12.1:
resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
dependencies:
@@ -10702,14 +9445,7 @@ packages:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
dependencies:
acorn: 8.10.0
- acorn-walk: 8.2.0
-
- /acorn-import-assertions@1.9.0(acorn@8.10.0):
- resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
- peerDependencies:
- acorn: ^8
- dependencies:
- acorn: 8.10.0
+ acorn-walk: 8.3.2
/acorn-import-assertions@1.9.0(acorn@8.11.3):
resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
@@ -10895,32 +9631,33 @@ packages:
require-from-string: 2.0.2
uri-js: 4.4.1
- /algoliasearch-helper@3.16.1(algoliasearch@4.22.1):
- resolution: {integrity: sha512-qxAHVjjmT7USVvrM8q6gZGaJlCK1fl4APfdAA7o8O6iXEc68G0xMNrzRkxoB/HmhhvyHnoteS/iMTiHiTcQQcg==}
+ /algoliasearch-helper@3.21.0(algoliasearch@4.23.3):
+ resolution: {integrity: sha512-hjVOrL15I3Y3K8xG0icwG1/tWE+MocqBrhW6uVBWpU+/kVEMK0BnM2xdssj6mZM61eJ4iRxHR0djEI3ENOpR8w==}
peerDependencies:
algoliasearch: '>= 3.1 < 6'
dependencies:
'@algolia/events': 4.0.1
- algoliasearch: 4.22.1
+ algoliasearch: 4.23.3
dev: false
- /algoliasearch@4.22.1:
- resolution: {integrity: sha512-jwydKFQJKIx9kIZ8Jm44SdpigFwRGPESaxZBaHSV0XWN2yBJAOT4mT7ppvlrpA4UGzz92pqFnVKr/kaZXrcreg==}
+ /algoliasearch@4.23.3:
+ resolution: {integrity: sha512-Le/3YgNvjW9zxIQMRhUHuhiUjAlKY/zsdZpfq4dlLqg6mEm0nL6yk+7f2hDOtLpxsgE4jSzDmvHL7nXdBp5feg==}
dependencies:
- '@algolia/cache-browser-local-storage': 4.22.1
- '@algolia/cache-common': 4.22.1
- '@algolia/cache-in-memory': 4.22.1
- '@algolia/client-account': 4.22.1
- '@algolia/client-analytics': 4.22.1
- '@algolia/client-common': 4.22.1
- '@algolia/client-personalization': 4.22.1
- '@algolia/client-search': 4.22.1
- '@algolia/logger-common': 4.22.1
- '@algolia/logger-console': 4.22.1
- '@algolia/requester-browser-xhr': 4.22.1
- '@algolia/requester-common': 4.22.1
- '@algolia/requester-node-http': 4.22.1
- '@algolia/transporter': 4.22.1
+ '@algolia/cache-browser-local-storage': 4.23.3
+ '@algolia/cache-common': 4.23.3
+ '@algolia/cache-in-memory': 4.23.3
+ '@algolia/client-account': 4.23.3
+ '@algolia/client-analytics': 4.23.3
+ '@algolia/client-common': 4.23.3
+ '@algolia/client-personalization': 4.23.3
+ '@algolia/client-search': 4.23.3
+ '@algolia/logger-common': 4.23.3
+ '@algolia/logger-console': 4.23.3
+ '@algolia/recommend': 4.23.3
+ '@algolia/requester-browser-xhr': 4.23.3
+ '@algolia/requester-common': 4.23.3
+ '@algolia/requester-node-http': 4.23.3
+ '@algolia/transporter': 4.23.3
dev: false
/all-contributors-cli@6.24.0:
@@ -11083,10 +9820,6 @@ packages:
/array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- /array-flatten@2.1.2:
- resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
- dev: false
-
/array-ify@1.0.0:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
dev: true
@@ -11197,7 +9930,7 @@ packages:
rehype: 13.0.1
resolve: 1.22.8
semver: 7.6.2
- shiki: 1.6.0
+ shiki: 1.6.1
string-width: 7.1.0
strip-ansi: 7.1.0
tsconfck: 3.0.3(typescript@5.4.3)
@@ -11241,7 +9974,7 @@ packages:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
- /autoprefixer@10.4.14(postcss@8.4.21):
+ /autoprefixer@10.4.14(postcss@8.4.38):
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
@@ -11253,41 +9986,10 @@ packages:
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /autoprefixer@10.4.16(postcss@8.4.33):
- resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001576
- fraction.js: 4.3.6
- normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
- /autoprefixer@10.4.19(postcss@8.4.21):
- resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001600
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.21
- postcss-value-parser: 4.2.0
-
/autoprefixer@10.4.19(postcss@8.4.38):
resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
engines: {node: ^10 || ^12 || >=14}
@@ -11356,19 +10058,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /babel-loader@9.1.3(@babel/core@7.23.7)(webpack@5.89.0):
- resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
- engines: {node: '>= 14.15.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- webpack: '>=5'
- dependencies:
- '@babel/core': 7.23.7
- find-cache-dir: 4.0.0
- schema-utils: 4.2.0
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
- dev: false
-
/babel-loader@9.1.3(@babel/core@7.24.5)(webpack@5.91.0):
resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
engines: {node: '>= 14.15.0'}
@@ -11396,7 +10085,7 @@ packages:
/babel-plugin-dynamic-import-node@2.3.3:
resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
dependencies:
- object.assign: 4.1.4
+ object.assign: 4.1.5
dev: false
/babel-plugin-istanbul@6.1.1:
@@ -11425,66 +10114,30 @@ packages:
dependencies:
'@babel/runtime': 7.24.5
cosmiconfig: 6.0.0
- resolve: 1.22.8
-
- /babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.5):
- resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/compat-data': 7.23.5
- '@babel/core': 7.24.5
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- /babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.5):
- resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
- core-js-compat: 3.37.0
- transitivePeerDependencies:
- - supports-color
+ resolve: 1.22.8
- /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==}
+ /babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.5):
+ resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
- core-js-compat: 3.35.0
+ '@babel/compat-data': 7.24.4
+ '@babel/core': 7.24.5
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: false
- /babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==}
+ /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.5):
+ resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
+ '@babel/core': 7.24.5
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
+ core-js-compat: 3.37.0
transitivePeerDependencies:
- supports-color
- dev: false
/babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.5):
resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
@@ -11640,15 +10293,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /bonjour-service@1.0.14:
- resolution: {integrity: sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ==}
- dependencies:
- array-flatten: 2.1.2
- dns-equal: 1.0.0
- fast-deep-equal: 3.1.3
- multicast-dns: 7.2.5
- dev: false
-
/bonjour-service@1.2.1:
resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==}
dependencies:
@@ -11949,10 +10593,6 @@ packages:
resolution: {integrity: sha512-0QHgqR+Jv4bxHMp8kZ1Kn8CH55OikjKJ6JmKkZYP1F3D7w+lnFXF70nG5eNfsZS89jadi5Ywy5UCSKLAglIRkg==}
dev: true
- /caniuse-lite@1.0.30001576:
- resolution: {integrity: sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==}
- dev: false
-
/caniuse-lite@1.0.30001587:
resolution: {integrity: sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA==}
@@ -12331,8 +10971,8 @@ packages:
strip-ansi: 6.0.1
wcwidth: 1.0.1
- /combine-promises@1.1.0:
- resolution: {integrity: sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==}
+ /combine-promises@1.2.0:
+ resolution: {integrity: sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==}
engines: {node: '>=10'}
dev: false
@@ -12744,21 +11384,6 @@ packages:
webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
dev: false
- /copy-webpack-plugin@11.0.0(webpack@5.89.0):
- resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
- engines: {node: '>= 14.15.0'}
- peerDependencies:
- webpack: ^5.1.0
- dependencies:
- fast-glob: 3.3.2
- glob-parent: 6.0.2
- globby: 13.2.2
- normalize-path: 3.0.0
- schema-utils: 4.2.0
- serialize-javascript: 6.0.1
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
- dev: false
-
/copy-webpack-plugin@11.0.0(webpack@5.91.0):
resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
engines: {node: '>= 14.15.0'}
@@ -12783,13 +11408,13 @@ packages:
dependencies:
browserslist: 4.23.0
- /core-js-pure@3.35.0:
- resolution: {integrity: sha512-f+eRYmkou59uh7BPcyJ8MC76DiGhspj1KMxVIcF24tzP8NA9HVa1uC7BTW2tgx7E1QVCzDzsgp7kArrzhlz8Ew==}
+ /core-js-pure@3.37.1:
+ resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==}
requiresBuild: true
dev: false
- /core-js@3.35.0:
- resolution: {integrity: sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==}
+ /core-js@3.37.1:
+ resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==}
requiresBuild: true
dev: false
@@ -12987,25 +11612,16 @@ packages:
dependencies:
type-fest: 1.4.0
- /css-blank-pseudo@5.0.0(postcss@8.4.21):
+ /css-blank-pseudo@5.0.0(postcss@8.4.38):
resolution: {integrity: sha512-2QwvERc+e7bWoO6Cva1goJR3r/qe2opbizEWpWEtKAxW9KDpEovI2Y8M2UgqoEVQyPAsWJwWnBpSpItqvjveoQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
- /css-declaration-sorter@6.3.1(postcss@8.4.33):
- resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==}
- engines: {node: ^10 || ^12 || >=14}
- peerDependencies:
- postcss: ^8.0.9
- dependencies:
- postcss: 8.4.33
- dev: false
-
/css-declaration-sorter@6.3.1(postcss@8.4.38):
resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==}
engines: {node: ^10 || ^12 || >=14}
@@ -13015,14 +11631,14 @@ packages:
postcss: 8.4.38
dev: false
- /css-has-pseudo@5.0.0(postcss@8.4.21):
+ /css-has-pseudo@5.0.0(postcss@8.4.38):
resolution: {integrity: sha512-vFe2z1/y8xG3JiJCAMOoCCXCwSbG2ndQJqFVVaFHoSuaEmvni8VNuFTC9IAYmqJU7c5elPEXJm40i/x5Zk0GSQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 2.1.0(postcss-selector-parser@6.0.12)(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/selector-specificity': 2.1.0(postcss-selector-parser@6.0.12)(postcss@8.4.38)
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
postcss-value-parser: 4.2.0
dev: true
@@ -13050,23 +11666,6 @@ packages:
webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
dev: false
- /css-loader@6.8.1(webpack@5.89.0):
- resolution: {integrity: sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.38)
- postcss-modules-local-by-default: 4.0.3(postcss@8.4.38)
- postcss-modules-scope: 3.0.0(postcss@8.4.38)
- postcss-modules-values: 4.0.0(postcss@8.4.38)
- postcss-value-parser: 4.2.0
- semver: 7.6.2
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
- dev: false
-
/css-loader@7.1.1(webpack@5.91.0):
resolution: {integrity: sha512-OxIR5P2mjO1PSXk44bWuQ8XtMK4dpEqpIyERCx3ewOo3I8EmbcxMPUc5ScLtQfgXtOojoMv57So4V/C02HQLsw==}
engines: {node: '>= 18.12.0'}
@@ -13089,7 +11688,7 @@ packages:
semver: 7.6.2
webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.21.3)
- /css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.3)(esbuild@0.19.5)(webpack@5.89.0):
+ /css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.3)(esbuild@0.19.5)(webpack@5.91.0):
resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -13122,7 +11721,7 @@ packages:
schema-utils: 4.2.0
serialize-javascript: 6.0.1
source-map: 0.6.1
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
dev: false
/css-minimizer-webpack-plugin@5.0.1(esbuild@0.19.5)(webpack@5.91.0):
@@ -13160,13 +11759,13 @@ packages:
webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
dev: false
- /css-prefers-color-scheme@8.0.0(postcss@8.4.21):
+ /css-prefers-color-scheme@8.0.0(postcss@8.4.38):
resolution: {integrity: sha512-Fb6GOyJRTI3YZ1v0ySi/X+at+ImRGgySsHvAXYsFo62aTa+ClaMi8E9R/oQmJmD8WPpNHgZXQ1nhkXbCCCne3g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
/css-select@4.3.0:
@@ -13244,44 +11843,6 @@ packages:
postcss-zindex: 5.1.0(postcss@8.4.38)
dev: false
- /cssnano-preset-default@5.2.14(postcss@8.4.33):
- resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- css-declaration-sorter: 6.3.1(postcss@8.4.33)
- cssnano-utils: 3.1.0(postcss@8.4.33)
- postcss: 8.4.33
- postcss-calc: 8.2.4(postcss@8.4.33)
- postcss-colormin: 5.3.1(postcss@8.4.33)
- postcss-convert-values: 5.1.3(postcss@8.4.33)
- postcss-discard-comments: 5.1.2(postcss@8.4.33)
- postcss-discard-duplicates: 5.1.0(postcss@8.4.33)
- postcss-discard-empty: 5.1.1(postcss@8.4.33)
- postcss-discard-overridden: 5.1.0(postcss@8.4.33)
- postcss-merge-longhand: 5.1.7(postcss@8.4.33)
- postcss-merge-rules: 5.1.4(postcss@8.4.33)
- postcss-minify-font-values: 5.1.0(postcss@8.4.33)
- postcss-minify-gradients: 5.1.1(postcss@8.4.33)
- postcss-minify-params: 5.1.4(postcss@8.4.33)
- postcss-minify-selectors: 5.2.1(postcss@8.4.33)
- postcss-normalize-charset: 5.1.0(postcss@8.4.33)
- postcss-normalize-display-values: 5.1.0(postcss@8.4.33)
- postcss-normalize-positions: 5.1.1(postcss@8.4.33)
- postcss-normalize-repeat-style: 5.1.1(postcss@8.4.33)
- postcss-normalize-string: 5.1.0(postcss@8.4.33)
- postcss-normalize-timing-functions: 5.1.0(postcss@8.4.33)
- postcss-normalize-unicode: 5.1.1(postcss@8.4.33)
- postcss-normalize-url: 5.1.0(postcss@8.4.33)
- postcss-normalize-whitespace: 5.1.1(postcss@8.4.33)
- postcss-ordered-values: 5.1.3(postcss@8.4.33)
- postcss-reduce-initial: 5.1.2(postcss@8.4.33)
- postcss-reduce-transforms: 5.1.0(postcss@8.4.33)
- postcss-svgo: 5.1.0(postcss@8.4.33)
- postcss-unique-selectors: 5.1.1(postcss@8.4.33)
- dev: false
-
/cssnano-preset-default@5.2.14(postcss@8.4.38):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -13358,15 +11919,6 @@ packages:
postcss-unique-selectors: 6.0.0(postcss@8.4.38)
dev: false
- /cssnano-utils@3.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- dev: false
-
/cssnano-utils@3.1.0(postcss@8.4.38):
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -13385,18 +11937,6 @@ packages:
postcss: 8.4.38
dev: false
- /cssnano@5.1.15(postcss@8.4.33):
- resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- cssnano-preset-default: 5.2.14(postcss@8.4.33)
- lilconfig: 2.1.0
- postcss: 8.4.33
- yaml: 1.10.2
- dev: false
-
/cssnano@5.1.15(postcss@8.4.38):
resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -13456,9 +11996,6 @@ packages:
/csstype@3.1.0:
resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==}
- /csstype@3.1.2:
- resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
-
/cuint@0.2.2:
resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==}
dev: true
@@ -13978,11 +12515,12 @@ packages:
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
engines: {node: '>=12'}
- /define-properties@1.1.4:
- resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
+ /define-properties@1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
dependencies:
- has-property-descriptors: 1.0.0
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
dev: false
@@ -14156,10 +12694,6 @@ packages:
/dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- /dns-equal@1.0.0:
- resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
- dev: false
-
/dns-packet@5.4.0:
resolution: {integrity: sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==}
engines: {node: '>=6'}
@@ -14363,13 +12897,6 @@ packages:
dependencies:
once: 1.4.0
- /enhanced-resolve@5.15.0:
- resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
- engines: {node: '>=10.13.0'}
- dependencies:
- graceful-fs: 4.2.11
- tapable: 2.2.1
-
/enhanced-resolve@5.16.1:
resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==}
engines: {node: '>=10.13.0'}
@@ -14729,9 +13256,8 @@ packages:
astring: 1.8.6
source-map: 0.7.4
- /estree-util-value-to-estree@3.0.1:
- resolution: {integrity: sha512-b2tdzTurEIbwRh+mKrEcaWfu1wgb8J1hVsgREg7FFiecWwK/PhO8X0kyc+0bIcKNtD4sqxIdNoRy6/p/TvECEA==}
- engines: {node: '>=16.0.0'}
+ /estree-util-value-to-estree@3.1.1:
+ resolution: {integrity: sha512-5mvUrF2suuv5f5cGDnDphIy4/gW86z82kl5qG6mM9z04SEQI4FB5Apmaw/TGEf3l55nLtMs5s51dmhUzvAHQCA==}
dependencies:
'@types/estree': 1.0.5
is-plain-obj: 4.1.0
@@ -15119,17 +13645,6 @@ packages:
dependencies:
flat-cache: 3.0.4
- /file-loader@6.2.0(webpack@5.89.0):
- resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 3.3.0
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
- dev: false
-
/file-loader@6.2.0(webpack@5.91.0):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
@@ -15318,8 +13833,8 @@ packages:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
dev: true
- /fork-ts-checker-webpack-plugin@6.5.2(eslint@8.57.0)(typescript@5.4.3)(webpack@5.89.0):
- resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==}
+ /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.4.3)(webpack@5.91.0):
+ resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
eslint: '>= 6'
@@ -15347,7 +13862,7 @@ packages:
semver: 7.6.2
tapable: 1.1.3
typescript: 5.4.3
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
dev: false
/fork-ts-checker-webpack-plugin@7.2.13(typescript@5.4.3)(webpack@5.91.0):
@@ -15412,10 +13927,6 @@ packages:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
dev: true
- /fraction.js@4.3.6:
- resolution: {integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==}
- dev: false
-
/fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
@@ -15459,6 +13970,7 @@ packages:
graceful-fs: 4.2.10
jsonfile: 6.1.0
universalify: 2.0.0
+ dev: true
/fs-extra@11.2.0:
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
@@ -15916,7 +14428,7 @@ packages:
destr: 2.0.3
iron-webcrypto: 1.1.0
ohash: 1.1.3
- radix3: 1.1.1
+ radix3: 1.1.0
ufo: 1.5.3
uncrypto: 0.1.3
unenv: 1.9.0
@@ -15980,12 +14492,6 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-property-descriptors@1.0.0:
- resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
- dependencies:
- get-intrinsic: 1.2.4
- dev: false
-
/has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
dependencies:
@@ -16175,7 +14681,7 @@ packages:
'@babel/runtime': 7.24.5
loose-envify: 1.4.0
resolve-pathname: 3.0.0
- tiny-invariant: 1.3.1
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
value-equal: 1.0.1
dev: false
@@ -16226,10 +14732,6 @@ packages:
dependencies:
whatwg-encoding: 2.0.0
- /html-entities@2.3.3:
- resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
- dev: false
-
/html-entities@2.5.2:
resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
@@ -16275,7 +14777,7 @@ packages:
/html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
- /html-webpack-plugin@5.6.0(webpack@5.89.0):
+ /html-webpack-plugin@5.6.0(webpack@5.91.0):
resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -16292,7 +14794,7 @@ packages:
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
dev: false
/htmlparser2@6.1.0:
@@ -16360,25 +14862,6 @@ packages:
- supports-color
dev: true
- /http-proxy-middleware@2.0.6(@types/express@4.17.14):
- resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- '@types/express': ^4.17.13
- peerDependenciesMeta:
- '@types/express':
- optional: true
- dependencies:
- '@types/express': 4.17.14
- '@types/http-proxy': 1.17.14
- http-proxy: 1.18.1(debug@4.3.4)
- is-glob: 4.0.3
- is-plain-obj: 3.0.0
- micromatch: 4.0.5
- transitivePeerDependencies:
- - debug
- dev: false
-
/http-proxy-middleware@2.0.6(@types/express@4.17.21):
resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
@@ -16579,16 +15062,16 @@ packages:
requiresBuild: true
optional: true
- /image-size@1.0.2:
- resolution: {integrity: sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==}
- engines: {node: '>=14.0.0'}
+ /image-size@1.1.1:
+ resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==}
+ engines: {node: '>=16.x'}
hasBin: true
dependencies:
queue: 6.0.2
dev: false
- /immer@9.0.15:
- resolution: {integrity: sha512-2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ==}
+ /immer@9.0.21:
+ resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
dev: false
/immutable@4.1.0:
@@ -16771,11 +15254,6 @@ packages:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- /ipaddr.js@2.0.1:
- resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==}
- engines: {node: '>= 10'}
- dev: false
-
/ipaddr.js@2.2.0:
resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
engines: {node: '>= 10'}
@@ -16959,11 +15437,6 @@ packages:
dependencies:
isobject: 3.0.1
- /is-plain-object@5.0.0:
- resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
@@ -17605,21 +16078,16 @@ packages:
- supports-color
- ts-node
- /jiti@1.20.0:
- resolution: {integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==}
- hasBin: true
- dev: false
-
/jiti@1.21.0:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
- /joi@17.11.0:
- resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==}
+ /joi@17.13.1:
+ resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==}
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
- '@sideway/address': 4.1.4
+ '@sideway/address': 4.1.5
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
@@ -17650,6 +16118,7 @@ packages:
/js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
+ hasBin: true
dependencies:
argparse: 1.0.10
esprima: 4.0.1
@@ -17803,7 +16272,7 @@ packages:
acorn: 8.8.2
eslint-visitor-keys: 3.3.0
espree: 9.5.0
- semver: 7.5.1
+ semver: 7.6.2
dev: true
/jsonc-parser@3.2.0:
@@ -17884,13 +16353,6 @@ packages:
package-json: 8.1.1
dev: false
- /launch-editor@2.6.0:
- resolution: {integrity: sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==}
- dependencies:
- picocolors: 1.0.0
- shell-quote: 1.7.3
- dev: false
-
/launch-editor@2.6.1:
resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==}
dependencies:
@@ -18373,6 +16835,7 @@ packages:
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
+ dev: true
/magic-string@0.30.10:
resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
@@ -18466,6 +16929,24 @@ packages:
marked: 5.0.2
dev: false
+ /marked-mangle@1.1.7(marked@5.0.2):
+ resolution: {integrity: sha512-bLsXKovJEEs/Dl++TBPmjX8ALFmrH5G0doTs+BdDOloBKWYRf3acyJghce78SnwInDkNPJ6crubr4MnFG7urOA==}
+ peerDependencies:
+ marked: '>=4 <13'
+ dependencies:
+ marked: 5.0.2
+ dev: true
+
+ /marked-shiki@1.1.0(marked@5.0.2)(shiki@1.6.1):
+ resolution: {integrity: sha512-PNiC0X4rYnzF63T6CDscwTxQB8l5Aur9XR7MRNBi/Y9nSxmPxasWT+V5OVam8Pj+NycWjzG6idO7fbc2bDD16w==}
+ peerDependencies:
+ marked: '>=7.0.0'
+ shiki: '>=1.0.0'
+ dependencies:
+ marked: 5.0.2
+ shiki: 1.6.1
+ dev: true
+
/marked-terminal@6.2.0(marked@9.1.6):
resolution: {integrity: sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==}
engines: {node: '>=16.0.0'}
@@ -18484,7 +16965,7 @@ packages:
/marked@5.0.2:
resolution: {integrity: sha512-TXksm9GwqXCRNbFUZmMtqNLvy3K2cQHuWmyBDLOrY1e6i9UvZpOTJXoz7fBjYkJkaUFzV9hBFxMuZSyQt8R6KQ==}
engines: {node: '>= 18'}
- dev: false
+ hasBin: true
/marked@9.1.6:
resolution: {integrity: sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==}
@@ -18502,7 +16983,7 @@ packages:
/mdast-util-directive@3.0.0:
resolution: {integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==}
dependencies:
- '@types/mdast': 4.0.1
+ '@types/mdast': 4.0.3
'@types/unist': 3.0.0
devlop: 1.1.0
mdast-util-from-markdown: 2.0.0
@@ -18562,7 +17043,7 @@ packages:
/mdast-util-frontmatter@2.0.1:
resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==}
dependencies:
- '@types/mdast': 4.0.1
+ '@types/mdast': 4.0.3
devlop: 1.1.0
escape-string-regexp: 5.0.0
mdast-util-from-markdown: 2.0.0
@@ -19422,16 +17903,6 @@ packages:
webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
dev: false
- /mini-css-extract-plugin@2.7.6(webpack@5.89.0):
- resolution: {integrity: sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
- dependencies:
- schema-utils: 4.2.0
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
- dev: false
-
/mini-css-extract-plugin@2.9.0(webpack@5.91.0):
resolution: {integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==}
engines: {node: '>= 12.13.0'}
@@ -19445,12 +17916,6 @@ packages:
/minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
- /minimatch@3.0.4:
- resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
- dependencies:
- brace-expansion: 1.1.11
- dev: false
-
/minimatch@3.0.8:
resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
dependencies:
@@ -19583,7 +18048,7 @@ packages:
acorn: 8.10.0
pathe: 1.1.2
pkg-types: 1.0.3
- ufo: 1.3.1
+ ufo: 1.5.3
dev: true
/mlly@1.6.1:
@@ -19657,11 +18122,6 @@ packages:
resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- /nanoid@3.3.6:
- resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
-
/nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -19738,7 +18198,7 @@ packages:
postcss: 8.4.38
rxjs: 7.8.1
sass: 1.77.0
- tailwindcss: 3.0.2(autoprefixer@10.4.19)(postcss@8.4.21)(ts-node@10.9.1)
+ tailwindcss: 3.0.2(autoprefixer@10.4.19)(postcss@8.4.38)(ts-node@10.9.1)
tslib: 2.4.0
typescript: 5.4.3
optionalDependencies:
@@ -19900,10 +18360,6 @@ packages:
emojilib: 2.4.0
skin-tone: 2.0.0
- /node-fetch-native@1.4.0:
- resolution: {integrity: sha512-F5kfEj95kX8tkDhUCYdV8dg3/8Olx/94zB8+ZNthFs6Bz31UpUi8Xh40TN3thLwXgrwXry1pEg9lJ++tLWTcqA==}
- dev: true
-
/node-fetch-native@1.6.2:
resolution: {integrity: sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w==}
dev: true
@@ -20315,12 +18771,12 @@ packages:
engines: {node: '>= 0.4'}
dev: false
- /object.assign@4.1.4:
- resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
+ /object.assign@4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
- define-properties: 1.1.4
+ define-properties: 1.2.1
has-symbols: 1.0.3
object-keys: 1.1.1
dev: false
@@ -20331,7 +18787,7 @@ packages:
/ofetch@1.3.3:
resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==}
dependencies:
- destr: 2.0.3
+ destr: 2.0.1
node-fetch-native: 1.6.2
ufo: 1.5.3
dev: true
@@ -21045,26 +19501,16 @@ packages:
transitivePeerDependencies:
- supports-color
- /postcss-attribute-case-insensitive@6.0.0(postcss@8.4.21):
+ /postcss-attribute-case-insensitive@6.0.0(postcss@8.4.38):
resolution: {integrity: sha512-Bi5tVYe9rKjU1k1v9xzAAZqMzUrlb2sVbRyV7ZDdtLJVpxV+6db5Yd6ESe6CMl09brexIfDUrGPVB1IbVc7bQQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
- /postcss-calc@8.2.4(postcss@8.4.33):
- resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
- peerDependencies:
- postcss: ^8.2.2
- dependencies:
- postcss: 8.4.33
- postcss-selector-parser: 6.0.12
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-calc@8.2.4(postcss@8.4.38):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
@@ -21086,59 +19532,46 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-clamp@4.1.0(postcss@8.4.21):
+ /postcss-clamp@4.1.0(postcss@8.4.38):
resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
engines: {node: '>=7.6.0'}
peerDependencies:
postcss: ^8.4.6
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-color-functional-notation@5.0.0(postcss@8.4.21):
+ /postcss-color-functional-notation@5.0.0(postcss@8.4.38):
resolution: {integrity: sha512-oxsPSdf6i2DJyNj24/hvQDaTyoztDwG0TMannHGUnFAdA6xSwB8Io5iDDqZcDrXTJTy32erpG9ETmwhMPPuCNg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-color-hex-alpha@9.0.0(postcss@8.4.21):
+ /postcss-color-hex-alpha@9.0.0(postcss@8.4.38):
resolution: {integrity: sha512-NdIN7IzYadBApUm+wULJR03746sKliIrmRIdjHF6GaUCztsDdcq4L9wtYz5X3mw/t08mjZx8ld5By6StB+1lLQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-color-rebeccapurple@8.0.0(postcss@8.4.21):
+ /postcss-color-rebeccapurple@8.0.0(postcss@8.4.38):
resolution: {integrity: sha512-K0PT/ZNEYva+jIlueaI8OUPL59SfPThflYe/htggUKaS6ydiimPmtvrFb8OsTJHcQ6QUPcIySTZdFNmdnEITQg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-colormin@5.3.1(postcss@8.4.33):
- resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- browserslist: 4.23.0
- caniuse-api: 3.0.0
- colord: 2.9.3
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-colormin@5.3.1(postcss@8.4.38):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21165,17 +19598,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-convert-values@5.1.3(postcss@8.4.33):
- resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- browserslist: 4.23.0
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-convert-values@5.1.3(postcss@8.4.38):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21198,7 +19620,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-custom-media@9.1.0(postcss@8.4.21):
+ /postcss-custom-media@9.1.0(postcss@8.4.38):
resolution: {integrity: sha512-K9sIQhdsXazHyhHaMIL/wztFV6ABHi6NwxNPO3q0o0T2zkI4oEqI1TjeoncBKIY6xPrqnWTV40KF8AJ7yd0W6g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -21208,10 +19630,10 @@ packages:
'@csstools/css-parser-algorithms': 2.0.0(@csstools/css-tokenizer@2.0.0)
'@csstools/css-tokenizer': 2.0.0
'@csstools/media-query-list-parser': 2.0.0(@csstools/css-parser-algorithms@2.0.0)(@csstools/css-tokenizer@2.0.0)
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
- /postcss-custom-properties@13.1.0(postcss@8.4.21):
+ /postcss-custom-properties@13.1.0(postcss@8.4.38):
resolution: {integrity: sha512-O0Lg0CuHwADctEMBgGtaeams7eFES8pXo/9zBClTbRVdU3LFAkFluw1l9eYnJ3rtidp80EGbAIuiisEIu1Z+uA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -21220,11 +19642,11 @@ packages:
'@csstools/cascade-layer-name-parser': 1.0.0(@csstools/css-parser-algorithms@2.0.0)(@csstools/css-tokenizer@2.0.0)
'@csstools/css-parser-algorithms': 2.0.0(@csstools/css-tokenizer@2.0.0)
'@csstools/css-tokenizer': 2.0.0
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-custom-selectors@7.1.0(postcss@8.4.21):
+ /postcss-custom-selectors@7.1.0(postcss@8.4.38):
resolution: {integrity: sha512-83a8lfR+3tWotHDGGPSadPB0oqBieqi62EhdBe7Qo+eW/aEst7xjq2fXH+dUy8KVEFcM3jobXMYJnSo6omcVHA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -21233,29 +19655,20 @@ packages:
'@csstools/cascade-layer-name-parser': 1.0.0(@csstools/css-parser-algorithms@2.0.0)(@csstools/css-tokenizer@2.0.0)
'@csstools/css-parser-algorithms': 2.0.0(@csstools/css-tokenizer@2.0.0)
'@csstools/css-tokenizer': 2.0.0
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
- /postcss-dir-pseudo-class@7.0.0(postcss@8.4.21):
+ /postcss-dir-pseudo-class@7.0.0(postcss@8.4.38):
resolution: {integrity: sha512-i8I6vqB0T0fpanLBjFoMPp3iTgKPccZCyZ149Q1RuRVlnKD00DbRFSkbp4/XDJaNzKJeto/DM/Uj62icEtVh9A==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
- /postcss-discard-comments@5.1.2(postcss@8.4.33):
- resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- dev: false
-
/postcss-discard-comments@5.1.2(postcss@8.4.38):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21274,15 +19687,6 @@ packages:
postcss: 8.4.38
dev: false
- /postcss-discard-duplicates@5.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- dev: false
-
/postcss-discard-duplicates@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21301,15 +19705,6 @@ packages:
postcss: 8.4.38
dev: false
- /postcss-discard-empty@5.1.1(postcss@8.4.33):
- resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- dev: false
-
/postcss-discard-empty@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21318,23 +19713,14 @@ packages:
dependencies:
postcss: 8.4.38
dev: false
-
- /postcss-discard-empty@6.0.0(postcss@8.4.38):
- resolution: {integrity: sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==}
- engines: {node: ^14 || ^16 || >=18.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.38
- dev: false
-
- /postcss-discard-overridden@5.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
- engines: {node: ^10 || ^12 || >=14.0}
+
+ /postcss-discard-empty@6.0.0(postcss@8.4.38):
+ resolution: {integrity: sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==}
+ engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.33
+ postcss: 8.4.38
dev: false
/postcss-discard-overridden@5.1.0(postcss@8.4.38):
@@ -21365,61 +19751,61 @@ packages:
postcss-selector-parser: 6.0.12
dev: false
- /postcss-double-position-gradients@4.0.0(postcss@8.4.21):
+ /postcss-double-position-gradients@4.0.0(postcss@8.4.38):
resolution: {integrity: sha512-RTOs3chf/D1ETvaT+BcdGkPmRxoImZn3hmfAkFGET5ijx3Lnw7npubQDvwqOL1on54/uN6w9BGuEMSUsOK+2kA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-focus-visible@8.0.0(postcss@8.4.21):
+ /postcss-focus-visible@8.0.0(postcss@8.4.38):
resolution: {integrity: sha512-mLIYkOFGXJSJtFwj9VX5LYUfWbxuwBWQxOqcdKk2p4apCAvsxji0jFpZhOPEpwD9YFbcTi0RWb+9Zam5y7qw5g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
- /postcss-focus-within@7.0.0(postcss@8.4.21):
+ /postcss-focus-within@7.0.0(postcss@8.4.38):
resolution: {integrity: sha512-DdIAwUY/7D981ROrWjxDuhCOTlbgjqbn2lCCuHWcGm+4s3m7thOCQzBGWBFc1heIx3MkiG1qF4Ew4logiPOxaQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
- /postcss-font-variant@5.0.0(postcss@8.4.21):
+ /postcss-font-variant@5.0.0(postcss@8.4.38):
resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
- /postcss-gap-properties@4.0.0(postcss@8.4.21):
+ /postcss-gap-properties@4.0.0(postcss@8.4.38):
resolution: {integrity: sha512-ACrVEX+DZRkFNImiRBiFw56BW7OY43F/0AjusgBxGNE0mLvfqINkYQT421YMHB7HGs+rekladOcBNmYZu6+/iQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
- /postcss-image-set-function@5.0.0(postcss@8.4.21):
+ /postcss-image-set-function@5.0.0(postcss@8.4.38):
resolution: {integrity: sha512-a7q8XdGnU4OMnBqRzVkUBTtuRztD4YIy0b+52OxAcBqvhOU39A4ego9fUpVaqqrQrDOVuXmh/MYwC82aYuJkfQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
@@ -21435,24 +19821,24 @@ packages:
resolve: 1.22.8
dev: false
- /postcss-import@15.1.0(postcss@8.4.21):
+ /postcss-import@15.1.0(postcss@8.4.38):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.2
dev: true
- /postcss-initial@4.0.1(postcss@8.4.21):
+ /postcss-initial@4.0.1(postcss@8.4.38):
resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
/postcss-js@3.0.3:
@@ -21460,20 +19846,20 @@ packages:
engines: {node: '>=10.0'}
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.33
+ postcss: 8.4.38
- /postcss-lab-function@5.0.0(postcss@8.4.21):
+ /postcss-lab-function@5.0.0(postcss@8.4.38):
resolution: {integrity: sha512-XTV77sdIJGPxDYzZxXE0giTn3mQDC/sl/a9i2VVOPdVEEK7wFbd3kM9Dom20F4WtioTFllpDl3oMBoQvCrl79w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-load-config@3.1.4(postcss@8.4.21)(ts-node@10.9.1):
+ /postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.1):
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -21486,7 +19872,7 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.21
+ postcss: 8.4.38
ts-node: 10.9.1(@swc/core@1.3.99)(@types/node@18.19.15)(typescript@5.4.3)
yaml: 1.10.2
@@ -21504,7 +19890,7 @@ packages:
webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
dev: false
- /postcss-loader@7.3.4(postcss@8.4.33)(typescript@5.4.3)(webpack@5.89.0):
+ /postcss-loader@7.3.4(postcss@8.4.38)(typescript@5.4.3)(webpack@5.91.0):
resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -21512,10 +19898,10 @@ packages:
webpack: ^5.0.0
dependencies:
cosmiconfig: 8.3.6(typescript@5.4.3)
- jiti: 1.20.0
- postcss: 8.4.33
+ jiti: 1.21.0
+ postcss: 8.4.38
semver: 7.6.2
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
transitivePeerDependencies:
- typescript
dev: false
@@ -21541,23 +19927,23 @@ packages:
transitivePeerDependencies:
- typescript
- /postcss-logical@6.0.0(postcss@8.4.21):
+ /postcss-logical@6.0.0(postcss@8.4.38):
resolution: {integrity: sha512-pn50jY5c+PmpYiTZ7KfYQ4aKXAVaFfZgNevtUwXglD22TxfLrrYD5d8m7UDQkT9CAfYvBgSkzPSBWTyE0WuQmA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-media-minmax@5.0.0(postcss@8.4.21):
+ /postcss-media-minmax@5.0.0(postcss@8.4.38):
resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
/postcss-media-query-parser@0.2.3:
@@ -21574,17 +19960,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-merge-longhand@5.1.7(postcss@8.4.33):
- resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- stylehacks: 5.1.1(postcss@8.4.33)
- dev: false
-
/postcss-merge-longhand@5.1.7(postcss@8.4.38):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21607,19 +19982,6 @@ packages:
stylehacks: 6.0.0(postcss@8.4.38)
dev: false
- /postcss-merge-rules@5.1.4(postcss@8.4.33):
- resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- browserslist: 4.23.0
- caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.4.33)
- postcss: 8.4.33
- postcss-selector-parser: 6.0.12
- dev: false
-
/postcss-merge-rules@5.1.4(postcss@8.4.38):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21646,16 +20008,6 @@ packages:
postcss-selector-parser: 6.0.12
dev: false
- /postcss-minify-font-values@5.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-minify-font-values@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21676,18 +20028,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-gradients@5.1.1(postcss@8.4.33):
- resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- colord: 2.9.3
- cssnano-utils: 3.1.0(postcss@8.4.33)
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-minify-gradients@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21712,18 +20052,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-params@5.1.4(postcss@8.4.33):
- resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- browserslist: 4.23.0
- cssnano-utils: 3.1.0(postcss@8.4.33)
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-minify-params@5.1.4(postcss@8.4.38):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21748,16 +20076,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-selectors@5.2.1(postcss@8.4.33):
- resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-selector-parser: 6.0.12
- dev: false
-
/postcss-minify-selectors@5.2.1(postcss@8.4.38):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21778,15 +20096,6 @@ packages:
postcss-selector-parser: 6.0.12
dev: false
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.38):
- resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.38
- dev: false
-
/postcss-modules-extract-imports@3.1.0(postcss@8.4.38):
resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
engines: {node: ^10 || ^12 || >= 14}
@@ -21795,18 +20104,6 @@ packages:
dependencies:
postcss: 8.4.38
- /postcss-modules-local-by-default@4.0.3(postcss@8.4.38):
- 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.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.0.12
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-modules-local-by-default@4.0.5(postcss@8.4.38):
resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
engines: {node: ^10 || ^12 || >= 14}
@@ -21818,16 +20115,6 @@ packages:
postcss-selector-parser: 6.0.12
postcss-value-parser: 4.2.0
- /postcss-modules-scope@3.0.0(postcss@8.4.38):
- resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.12
- dev: false
-
/postcss-modules-scope@3.2.0(postcss@8.4.38):
resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
engines: {node: ^10 || ^12 || >= 14}
@@ -21846,35 +20133,26 @@ packages:
icss-utils: 5.1.0(postcss@8.4.38)
postcss: 8.4.38
- /postcss-nested@5.0.6(postcss@8.4.21):
+ /postcss-nested@5.0.6(postcss@8.4.38):
resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
- /postcss-nesting@11.0.0(postcss@8.4.21):
+ /postcss-nesting@11.0.0(postcss@8.4.38):
resolution: {integrity: sha512-Y+jmDpQuSSoM/Qq+rqDc4D3E8Cn84qUmJLFS/M5u0YgM+5adLi9qFApbz5XzjzXjGAzItTUCP7RikLGy06ebiA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 2.1.0(postcss-selector-parser@6.0.12)(postcss@8.4.21)
- postcss: 8.4.21
+ '@csstools/selector-specificity': 2.1.0(postcss-selector-parser@6.0.12)(postcss@8.4.38)
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
- /postcss-normalize-charset@5.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- dev: false
-
/postcss-normalize-charset@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21893,16 +20171,6 @@ packages:
postcss: 8.4.38
dev: false
- /postcss-normalize-display-values@5.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-normalize-display-values@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21923,16 +20191,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-positions@5.1.1(postcss@8.4.33):
- resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-normalize-positions@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21953,16 +20211,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-repeat-style@5.1.1(postcss@8.4.33):
- resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-normalize-repeat-style@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -21983,16 +20231,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-string@5.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-normalize-string@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -22013,16 +20251,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-timing-functions@5.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-normalize-timing-functions@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -22043,17 +20271,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-unicode@5.1.1(postcss@8.4.33):
- resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- browserslist: 4.23.0
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-normalize-unicode@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -22076,17 +20293,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-url@5.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- normalize-url: 6.1.0
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-normalize-url@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -22108,16 +20314,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-whitespace@5.1.1(postcss@8.4.33):
- resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-normalize-whitespace@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -22138,26 +20334,15 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-opacity-percentage@1.1.3(postcss@8.4.21):
+ /postcss-opacity-percentage@1.1.3(postcss@8.4.38):
resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==}
engines: {node: ^12 || ^14 || >=16}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
- /postcss-ordered-values@5.1.3(postcss@8.4.33):
- resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.33)
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-ordered-values@5.1.3(postcss@8.4.38):
resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -22180,103 +20365,103 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-overflow-shorthand@4.0.0(postcss@8.4.21):
+ /postcss-overflow-shorthand@4.0.0(postcss@8.4.38):
resolution: {integrity: sha512-HJ+HIX6IeVyDBu+b5cJScwGYPnGokswXWH1izVgJGT6D5mrHzQJUvWWvHBRlopCAEbtose+JNOjRQgTRGHjm3A==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-page-break@3.0.4(postcss@8.4.21):
+ /postcss-page-break@3.0.4(postcss@8.4.38):
resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
peerDependencies:
postcss: ^8
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
- /postcss-place@8.0.0(postcss@8.4.21):
+ /postcss-place@8.0.0(postcss@8.4.38):
resolution: {integrity: sha512-LFAiOWgekmvJ8/o4Cl1pPTuMryoMkr8PqAgv4j8i7iB9quinOhG4TXaq8RpF4nNIb9qOvn6+6LX4/BLcnza3rQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-preset-env@8.0.1(postcss@8.4.21):
+ /postcss-preset-env@8.0.1(postcss@8.4.38):
resolution: {integrity: sha512-IUbymw0JlUbyVG+I85963PNWgPp3KhnFa1sxU7M/2dGthxV8e297P0VV5W9XcyypoH4hirH2fp1c6fmqh6YnSg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-cascade-layers': 3.0.0(postcss@8.4.21)
- '@csstools/postcss-color-function': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-font-format-keywords': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-hwb-function': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-ic-unit': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-is-pseudo-class': 3.0.0(postcss@8.4.21)
- '@csstools/postcss-logical-float-and-clear': 1.0.0(postcss@8.4.21)
- '@csstools/postcss-logical-resize': 1.0.0(postcss@8.4.21)
- '@csstools/postcss-logical-viewport-units': 1.0.1(postcss@8.4.21)
- '@csstools/postcss-media-queries-aspect-ratio-number-values': 1.0.0(postcss@8.4.21)
- '@csstools/postcss-nested-calc': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-normalize-display-values': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-oklab-function': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-scope-pseudo-class': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-stepped-value-functions': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-text-decoration-shorthand': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-trigonometric-functions': 2.0.0(postcss@8.4.21)
- '@csstools/postcss-unset-value': 2.0.0(postcss@8.4.21)
- autoprefixer: 10.4.14(postcss@8.4.21)
+ '@csstools/postcss-cascade-layers': 3.0.0(postcss@8.4.38)
+ '@csstools/postcss-color-function': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-font-format-keywords': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-hwb-function': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-ic-unit': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-is-pseudo-class': 3.0.0(postcss@8.4.38)
+ '@csstools/postcss-logical-float-and-clear': 1.0.0(postcss@8.4.38)
+ '@csstools/postcss-logical-resize': 1.0.0(postcss@8.4.38)
+ '@csstools/postcss-logical-viewport-units': 1.0.1(postcss@8.4.38)
+ '@csstools/postcss-media-queries-aspect-ratio-number-values': 1.0.0(postcss@8.4.38)
+ '@csstools/postcss-nested-calc': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-normalize-display-values': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-oklab-function': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-progressive-custom-properties': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-scope-pseudo-class': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-stepped-value-functions': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-text-decoration-shorthand': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-trigonometric-functions': 2.0.0(postcss@8.4.38)
+ '@csstools/postcss-unset-value': 2.0.0(postcss@8.4.38)
+ autoprefixer: 10.4.14(postcss@8.4.38)
browserslist: 4.21.5
- css-blank-pseudo: 5.0.0(postcss@8.4.21)
- css-has-pseudo: 5.0.0(postcss@8.4.21)
- css-prefers-color-scheme: 8.0.0(postcss@8.4.21)
+ css-blank-pseudo: 5.0.0(postcss@8.4.38)
+ css-has-pseudo: 5.0.0(postcss@8.4.38)
+ css-prefers-color-scheme: 8.0.0(postcss@8.4.38)
cssdb: 7.4.1
- postcss: 8.4.21
- postcss-attribute-case-insensitive: 6.0.0(postcss@8.4.21)
- postcss-clamp: 4.1.0(postcss@8.4.21)
- postcss-color-functional-notation: 5.0.0(postcss@8.4.21)
- postcss-color-hex-alpha: 9.0.0(postcss@8.4.21)
- postcss-color-rebeccapurple: 8.0.0(postcss@8.4.21)
- postcss-custom-media: 9.1.0(postcss@8.4.21)
- postcss-custom-properties: 13.1.0(postcss@8.4.21)
- postcss-custom-selectors: 7.1.0(postcss@8.4.21)
- postcss-dir-pseudo-class: 7.0.0(postcss@8.4.21)
- postcss-double-position-gradients: 4.0.0(postcss@8.4.21)
- postcss-focus-visible: 8.0.0(postcss@8.4.21)
- postcss-focus-within: 7.0.0(postcss@8.4.21)
- postcss-font-variant: 5.0.0(postcss@8.4.21)
- postcss-gap-properties: 4.0.0(postcss@8.4.21)
- postcss-image-set-function: 5.0.0(postcss@8.4.21)
- postcss-initial: 4.0.1(postcss@8.4.21)
- postcss-lab-function: 5.0.0(postcss@8.4.21)
- postcss-logical: 6.0.0(postcss@8.4.21)
- postcss-media-minmax: 5.0.0(postcss@8.4.21)
- postcss-nesting: 11.0.0(postcss@8.4.21)
- postcss-opacity-percentage: 1.1.3(postcss@8.4.21)
- postcss-overflow-shorthand: 4.0.0(postcss@8.4.21)
- postcss-page-break: 3.0.4(postcss@8.4.21)
- postcss-place: 8.0.0(postcss@8.4.21)
- postcss-pseudo-class-any-link: 8.0.0(postcss@8.4.21)
- postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.21)
- postcss-selector-not: 7.0.0(postcss@8.4.21)
+ postcss: 8.4.38
+ postcss-attribute-case-insensitive: 6.0.0(postcss@8.4.38)
+ postcss-clamp: 4.1.0(postcss@8.4.38)
+ postcss-color-functional-notation: 5.0.0(postcss@8.4.38)
+ postcss-color-hex-alpha: 9.0.0(postcss@8.4.38)
+ postcss-color-rebeccapurple: 8.0.0(postcss@8.4.38)
+ postcss-custom-media: 9.1.0(postcss@8.4.38)
+ postcss-custom-properties: 13.1.0(postcss@8.4.38)
+ postcss-custom-selectors: 7.1.0(postcss@8.4.38)
+ postcss-dir-pseudo-class: 7.0.0(postcss@8.4.38)
+ postcss-double-position-gradients: 4.0.0(postcss@8.4.38)
+ postcss-focus-visible: 8.0.0(postcss@8.4.38)
+ postcss-focus-within: 7.0.0(postcss@8.4.38)
+ postcss-font-variant: 5.0.0(postcss@8.4.38)
+ postcss-gap-properties: 4.0.0(postcss@8.4.38)
+ postcss-image-set-function: 5.0.0(postcss@8.4.38)
+ postcss-initial: 4.0.1(postcss@8.4.38)
+ postcss-lab-function: 5.0.0(postcss@8.4.38)
+ postcss-logical: 6.0.0(postcss@8.4.38)
+ postcss-media-minmax: 5.0.0(postcss@8.4.38)
+ postcss-nesting: 11.0.0(postcss@8.4.38)
+ postcss-opacity-percentage: 1.1.3(postcss@8.4.38)
+ postcss-overflow-shorthand: 4.0.0(postcss@8.4.38)
+ postcss-page-break: 3.0.4(postcss@8.4.38)
+ postcss-place: 8.0.0(postcss@8.4.38)
+ postcss-pseudo-class-any-link: 8.0.0(postcss@8.4.38)
+ postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.38)
+ postcss-selector-not: 7.0.0(postcss@8.4.38)
postcss-value-parser: 4.2.0
dev: true
- /postcss-pseudo-class-any-link@8.0.0(postcss@8.4.21):
+ /postcss-pseudo-class-any-link@8.0.0(postcss@8.4.38):
resolution: {integrity: sha512-9+SUrDDrmyQijQBRSZFfx5eL0N9sdtHhibcGPgmyQyYCshFZbhH22vfbo2z84U2TI8kh1TrN86t5N2xN2ojq0w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
@@ -22290,17 +20475,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-initial@5.1.2(postcss@8.4.33):
- resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- browserslist: 4.23.0
- caniuse-api: 3.0.0
- postcss: 8.4.33
- dev: false
-
/postcss-reduce-initial@5.1.2(postcss@8.4.38):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -22323,16 +20497,6 @@ packages:
postcss: 8.4.38
dev: false
- /postcss-reduce-transforms@5.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- dev: false
-
/postcss-reduce-transforms@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -22353,21 +20517,21 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.21):
+ /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.38):
resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
peerDependencies:
postcss: ^8.0.3
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
dev: true
- /postcss-selector-not@7.0.0(postcss@8.4.21):
+ /postcss-selector-not@7.0.0(postcss@8.4.38):
resolution: {integrity: sha512-vYYltgqe8JXLW/oWuENL6mKc7zbJWDA86kwQgGzJsalkvPOPcaM+G90FqjEiGllRAXIv3WmgehtQEfIJUDlUhg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-selector-parser: 6.0.12
dev: true
@@ -22388,17 +20552,6 @@ packages:
sort-css-media-queries: 2.1.0
dev: false
- /postcss-svgo@5.1.0(postcss@8.4.33):
- resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-value-parser: 4.2.0
- svgo: 2.8.0
- dev: false
-
/postcss-svgo@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -22421,16 +20574,6 @@ packages:
svgo: 3.0.2
dev: false
- /postcss-unique-selectors@5.1.1(postcss@8.4.33):
- resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- postcss: 8.4.33
- postcss-selector-parser: 6.0.12
- dev: false
-
/postcss-unique-selectors@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -22451,7 +20594,7 @@ packages:
postcss-selector-parser: 6.0.12
dev: false
- /postcss-url@10.1.3(postcss@8.4.21):
+ /postcss-url@10.1.3(postcss@8.4.38):
resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==}
engines: {node: '>=10'}
peerDependencies:
@@ -22460,7 +20603,7 @@ packages:
make-dir: 3.1.0
mime: 2.5.2
minimatch: 3.0.8
- postcss: 8.4.21
+ postcss: 8.4.38
xxhashjs: 0.2.2
dev: true
@@ -22476,31 +20619,6 @@ packages:
postcss: 8.4.38
dev: false
- /postcss@8.4.21:
- resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.6
- picocolors: 1.0.0
- source-map-js: 1.0.2
-
- /postcss@8.4.33:
- resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.0.2
-
- /postcss@8.4.35:
- resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.0.2
- dev: false
-
/postcss@8.4.38:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
@@ -22773,8 +20891,8 @@ packages:
/rc9@2.1.1:
resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==}
dependencies:
- defu: 6.1.4
- destr: 2.0.3
+ defu: 6.1.2
+ destr: 2.0.1
flat: 5.0.2
dev: true
@@ -22787,7 +20905,7 @@ packages:
minimist: 1.2.8
strip-json-comments: 2.0.1
- /react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.4.3)(webpack@5.89.0):
+ /react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.4.3)(webpack@5.91.0):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -22797,7 +20915,7 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/code-frame': 7.23.5
+ '@babel/code-frame': 7.24.2
address: 1.2.1
browserslist: 4.23.0
chalk: 4.1.2
@@ -22806,23 +20924,23 @@ packages:
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.2(eslint@8.57.0)(typescript@5.4.3)(webpack@5.89.0)
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.0)(typescript@5.4.3)(webpack@5.91.0)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
- immer: 9.0.15
+ immer: 9.0.21
is-root: 2.1.0
loader-utils: 3.2.1
open: 8.4.2
pkg-up: 3.1.0
prompts: 2.4.2
react-error-overlay: 6.0.11
- recursive-readdir: 2.2.2
- shell-quote: 1.7.3
+ recursive-readdir: 2.2.3
+ shell-quote: 1.8.1
strip-ansi: 6.0.1
text-table: 0.2.0
typescript: 5.4.3
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
transitivePeerDependencies:
- eslint
- supports-color
@@ -22842,8 +20960,8 @@ packages:
resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
dev: false
- /react-fast-compare@3.2.0:
- resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==}
+ /react-fast-compare@3.2.2:
+ resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
/react-helmet-async@1.3.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
@@ -22856,7 +20974,17 @@ packages:
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-fast-compare: 3.2.0
+ react-fast-compare: 3.2.2
+ shallowequal: 1.1.0
+
+ /react-helmet-async@2.0.5(react@18.2.0):
+ resolution: {integrity: sha512-rYUYHeus+i27MvFE+Jaa4WsyBKGkL6qVgbJvSBoX8mbsWoABJXdEO0bZyi0F6i+4f0NuIb8AvqPMj3iXFHkMwg==}
+ peerDependencies:
+ react: ^16.6.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ invariant: 2.2.4
+ react: 18.2.0
+ react-fast-compare: 3.2.2
shallowequal: 1.1.0
/react-is@16.13.1:
@@ -22865,8 +20993,8 @@ packages:
/react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- /react-json-view-lite@1.2.1(react@18.2.0):
- resolution: {integrity: sha512-Itc0g86fytOmKZoIoJyGgvNqohWSbh3NXIKNgH6W6FT9PC1ck4xas1tT3Rr/b3UlFXyA9Jjaw9QSXdZy2JwGMQ==}
+ /react-json-view-lite@1.4.0(react@18.2.0):
+ resolution: {integrity: sha512-wh6F6uJyYAmQ4fK0e8dSQMEWuvTs2Wr3el3sLD9bambX1+pSWUVXIz1RFaoy3TI1mZ0FqdpKq9YgbgTTgyrmXA==}
engines: {node: '>=14'}
peerDependencies:
react: ^16.13.1 || ^17.0.0 || ^18.0.0
@@ -22874,7 +21002,7 @@ packages:
react: 18.2.0
dev: false
- /react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.89.0):
+ /react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.91.0):
resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -22883,7 +21011,7 @@ packages:
dependencies:
'@babel/runtime': 7.24.5
react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
dev: false
/react-refresh@0.14.0:
@@ -22913,7 +21041,7 @@ packages:
prop-types: 15.8.1
react: 18.2.0
react-router: 5.3.4(react@18.2.0)
- tiny-invariant: 1.3.1
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
dev: false
@@ -22930,7 +21058,7 @@ packages:
prop-types: 15.8.1
react: 18.2.0
react-is: 16.13.1
- tiny-invariant: 1.3.1
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
dev: false
@@ -23081,11 +21209,11 @@ packages:
resolve: 1.22.8
dev: false
- /recursive-readdir@2.2.2:
- resolution: {integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==}
- engines: {node: '>=0.10.0'}
+ /recursive-readdir@2.2.3:
+ resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==}
+ engines: {node: '>=6.0.0'}
dependencies:
- minimatch: 3.0.4
+ minimatch: 3.1.2
dev: false
/redent@3.0.0:
@@ -23217,7 +21345,7 @@ packages:
/remark-directive@3.0.0:
resolution: {integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==}
dependencies:
- '@types/mdast': 4.0.1
+ '@types/mdast': 4.0.3
mdast-util-directive: 3.0.0
micromark-extension-directive: 3.0.0
unified: 11.0.4
@@ -23239,7 +21367,7 @@ packages:
/remark-frontmatter@5.0.0:
resolution: {integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==}
dependencies:
- '@types/mdast': 4.0.1
+ '@types/mdast': 4.0.3
mdast-util-frontmatter: 2.0.1
micromark-extension-frontmatter: 2.0.0
unified: 11.0.4
@@ -23636,8 +21764,8 @@ packages:
resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
dev: true
- /rtl-detect@1.0.4:
- resolution: {integrity: sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==}
+ /rtl-detect@1.1.2:
+ resolution: {integrity: sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==}
dev: false
/rtlcss@4.1.1:
@@ -23683,7 +21811,7 @@ packages:
/rxjs@7.8.0:
resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
dependencies:
- tslib: 2.5.0
+ tslib: 2.6.2
/rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
@@ -23822,8 +21950,8 @@ packages:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
dev: true
- /search-insights@2.13.0:
- resolution: {integrity: sha512-Orrsjf9trHHxFRuo9/rzm0KIWmgzE8RMlZMzuhZOJ01Rnz3D0YBAe+V6473t6/H6c7irs6Lt48brULAiRWb3Vw==}
+ /search-insights@2.14.0:
+ resolution: {integrity: sha512-OLN6MsPMCghDOqlCtsIsYgtsC0pnwVTyT9Mu6A3ewOj1DxvzZF6COrn2g86E/c05xbktB0XN04m/t1Z+n+fTGw==}
dev: false
/section-matter@1.0.0:
@@ -23839,13 +21967,6 @@ packages:
/select-hose@2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
- /selfsigned@2.1.1:
- resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==}
- engines: {node: '>=10'}
- dependencies:
- node-forge: 1.3.1
- dev: false
-
/selfsigned@2.4.1:
resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
engines: {node: '>=10'}
@@ -23895,7 +22016,7 @@ packages:
p-reduce: 3.0.0
read-pkg-up: 11.0.0
resolve-from: 5.0.0
- semver: 7.5.4
+ semver: 7.6.2
semver-diff: 4.0.0
signale: 1.4.0
yargs: 17.7.2
@@ -23938,32 +22059,6 @@ packages:
lru-cache: 6.0.0
dev: true
- /semver@7.5.1:
- resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==}
- engines: {node: '>=10'}
- dependencies:
- lru-cache: 6.0.0
-
- /semver@7.5.4:
- resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- lru-cache: 6.0.0
-
- /semver@7.6.0:
- resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- lru-cache: 6.0.0
- dev: true
-
- /semver@7.6.1:
- resolution: {integrity: sha512-f/vbBsu+fOiYt+lmwZV0rVwJScl46HppnOA1ZvIuBWKOTlllpyJ3bfVax76/OrhCH38dyxoDIA8K7uB963IYgA==}
- engines: {node: '>=10'}
- hasBin: true
-
/semver@7.6.2:
resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
engines: {node: '>=10'}
@@ -24024,7 +22119,7 @@ packages:
/serve-placeholder@2.0.1:
resolution: {integrity: sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==}
dependencies:
- defu: 6.1.4
+ defu: 6.1.2
dev: true
/serve-static@1.15.0:
@@ -24120,10 +22215,6 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /shell-quote@1.7.3:
- resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==}
- dev: false
-
/shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
@@ -24137,10 +22228,10 @@ packages:
rechoir: 0.6.2
dev: false
- /shiki@1.6.0:
- resolution: {integrity: sha512-P31ROeXcVgW/k3Z+vUUErcxoTah7ZRaimctOpzGuqAntqnnSmx1HOsvnbAB8Z2qfXPRhw61yptAzCsuKOhTHwQ==}
+ /shiki@1.6.1:
+ resolution: {integrity: sha512-1Pu/A1rtsG6HZvQm4W0NExQ45e02og+rPog7PDaFDiMumZgOYnZIu4JtGQeAIfMwdbKSjJQoCUr79vDLKUUxWA==}
dependencies:
- '@shikijs/core': 1.6.0
+ '@shikijs/core': 1.6.1
/side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
@@ -24203,7 +22294,7 @@ packages:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
dependencies:
- '@polka/url': 1.0.0-next.24
+ '@polka/url': 1.0.0-next.25
mrmime: 2.0.0
totalist: 3.0.1
dev: false
@@ -24211,13 +22302,13 @@ packages:
/sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
- /sitemap@7.1.1:
- resolution: {integrity: sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==}
+ /sitemap@7.1.2:
+ resolution: {integrity: sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==}
engines: {node: '>=12.0.0', npm: '>=5.6.0'}
hasBin: true
dependencies:
'@types/node': 17.0.45
- '@types/sax': 1.2.4
+ '@types/sax': 1.2.7
arg: 5.0.2
sax: 1.2.4
dev: false
@@ -24330,10 +22421,6 @@ packages:
is-plain-obj: 1.1.0
dev: true
- /source-map-js@1.0.2:
- resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
- engines: {node: '>=0.10.0'}
-
/source-map-js@1.2.0:
resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
engines: {node: '>=0.10.0'}
@@ -24541,13 +22628,8 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- /std-env@3.6.0:
- resolution: {integrity: sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==}
- dev: false
-
/std-env@3.7.0:
resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
- dev: true
/stdin-discarder@0.2.2:
resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
@@ -24748,17 +22830,6 @@ packages:
dependencies:
inline-style-parser: 0.2.2
- /stylehacks@5.1.1(postcss@8.4.33):
- resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
- dependencies:
- browserslist: 4.23.0
- postcss: 8.4.33
- postcss-selector-parser: 6.0.12
- dev: false
-
/stylehacks@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -24896,7 +22967,7 @@ packages:
engines: {node: '>=18'}
dev: true
- /tailwindcss@3.0.2(autoprefixer@10.4.19)(postcss@8.4.21)(ts-node@10.9.1):
+ /tailwindcss@3.0.2(autoprefixer@10.4.19)(postcss@8.4.38)(ts-node@10.9.1):
resolution: {integrity: sha512-i1KpjYnGYftjzdAth6jA5iMPjhxpUkk5L6DafhfnQs+KiiWaThYxmk47Weh4oFH1mZqP6MuiQNHxtoRVPOraLg==}
engines: {node: '>=12.13.0'}
hasBin: true
@@ -24905,7 +22976,7 @@ packages:
postcss: ^8.0.9
dependencies:
arg: 5.0.2
- autoprefixer: 10.4.19(postcss@8.4.21)
+ autoprefixer: 10.4.19(postcss@8.4.38)
chalk: 4.1.2
chokidar: 3.5.3
color-name: 1.1.4
@@ -24918,10 +22989,10 @@ packages:
is-glob: 4.0.3
normalize-path: 3.0.0
object-hash: 2.2.0
- postcss: 8.4.21
+ postcss: 8.4.38
postcss-js: 3.0.3
- postcss-load-config: 3.1.4(postcss@8.4.21)(ts-node@10.9.1)
- postcss-nested: 5.0.6(postcss@8.4.21)
+ postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.1)
+ postcss-nested: 5.0.6(postcss@8.4.38)
postcss-selector-parser: 6.0.12
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
@@ -24997,32 +23068,6 @@ packages:
unique-string: 3.0.0
dev: true
- /terser-webpack-plugin@5.3.10(@swc/core@1.3.99)(esbuild@0.19.5)(webpack@5.90.1):
- resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- '@swc/core': '*'
- esbuild: '*'
- uglify-js: '*'
- webpack: ^5.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- esbuild:
- optional: true
- uglify-js:
- optional: true
- dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- '@swc/core': 1.3.99(@swc/helpers@0.5.11)
- esbuild: 0.19.5
- jest-worker: 27.5.1
- schema-utils: 3.3.0
- serialize-javascript: 6.0.1
- terser: 5.31.0
- webpack: 5.90.1(@swc/core@1.3.99)(esbuild@0.19.5)
- dev: false
-
/terser-webpack-plugin@5.3.10(@swc/core@1.3.99)(esbuild@0.19.5)(webpack@5.91.0):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
@@ -25073,31 +23118,6 @@ packages:
terser: 5.31.0
webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.21.3)
- /terser-webpack-plugin@5.3.9(@swc/core@1.3.99)(esbuild@0.19.5)(webpack@5.89.0):
- resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- '@swc/core': '*'
- esbuild: '*'
- uglify-js: '*'
- webpack: ^5.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- esbuild:
- optional: true
- uglify-js:
- optional: true
- dependencies:
- '@jridgewell/trace-mapping': 0.3.18
- '@swc/core': 1.3.99(@swc/helpers@0.5.11)
- esbuild: 0.19.5
- jest-worker: 27.5.1
- schema-utils: 3.3.0
- serialize-javascript: 6.0.1
- terser: 5.31.0
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
-
/terser@5.31.0:
resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
engines: {node: '>=10'}
@@ -25160,8 +23180,8 @@ packages:
/thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
- /tiny-invariant@1.3.1:
- resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
+ /tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
dev: false
/tiny-warning@1.0.3:
@@ -25347,7 +23367,7 @@ packages:
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
- semver: 7.5.1
+ semver: 7.6.2
typescript: 5.4.3
yargs-parser: 21.1.1
dev: true
@@ -25486,9 +23506,6 @@ packages:
/tslib@2.4.0:
resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
- /tslib@2.5.0:
- resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
-
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
@@ -25654,7 +23671,7 @@ packages:
consola: 3.2.3
defu: 6.1.2
mime: 3.0.0
- node-fetch-native: 1.4.0
+ node-fetch-native: 1.6.2
pathe: 1.1.2
dev: true
@@ -26030,23 +24047,6 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.89.0):
- resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- file-loader: '*'
- webpack: ^4.0.0 || ^5.0.0
- peerDependenciesMeta:
- file-loader:
- optional: true
- dependencies:
- file-loader: 6.2.0(webpack@5.89.0)
- loader-utils: 2.0.4
- mime-types: 2.1.35
- schema-utils: 3.3.0
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
- dev: false
-
/url-loader@4.1.1(file-loader@6.2.0)(webpack@5.91.0):
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
engines: {node: '>= 10.13.0'}
@@ -26081,8 +24081,8 @@ packages:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
dev: false
- /utility-types@3.10.0:
- resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==}
+ /utility-types@3.11.0:
+ resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==}
engines: {node: '>= 4'}
/utils-merge@1.0.1:
@@ -26198,7 +24198,7 @@ packages:
debug: 4.3.4(supports-color@8.1.1)
pathe: 1.1.2
picocolors: 1.0.0
- vite: 5.2.7(@types/node@18.19.15)(less@4.1.3)(stylus@0.59.0)
+ vite: 5.2.11(@types/node@18.19.15)(less@4.1.3)(stylus@0.59.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -26272,7 +24272,7 @@ packages:
esbuild: 0.20.2
less: 4.1.3
postcss: 8.4.38
- rollup: 4.13.0
+ rollup: 4.18.0
stylus: 0.59.0
optionalDependencies:
fsevents: 2.3.3
@@ -26309,7 +24309,7 @@ packages:
esbuild: 0.20.2
less: 4.2.0
postcss: 8.4.38
- rollup: 4.13.0
+ rollup: 4.18.0
sass: 1.77.2
stylus: 0.59.0
terser: 5.31.0
@@ -26445,13 +24445,6 @@ packages:
dependencies:
makeerror: 1.0.12
- /watchpack@2.4.0:
- resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
- engines: {node: '>=10.13.0'}
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
-
/watchpack@2.4.1:
resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
engines: {node: '>=10.13.0'}
@@ -26486,20 +24479,19 @@ packages:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
- /webpack-bundle-analyzer@4.10.1:
- resolution: {integrity: sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==}
+ /webpack-bundle-analyzer@4.10.2:
+ resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==}
engines: {node: '>= 10.13.0'}
hasBin: true
dependencies:
'@discoveryjs/json-ext': 0.5.7
- acorn: 8.10.0
+ acorn: 8.11.3
acorn-walk: 8.3.2
commander: 7.2.0
debounce: 1.2.1
escape-string-regexp: 4.0.0
gzip-size: 6.0.0
html-escaper: 2.0.2
- is-plain-object: 5.0.0
opener: 1.5.2
picocolors: 1.0.0
sirv: 2.0.4
@@ -26527,20 +24519,6 @@ packages:
- utf-8-validate
dev: true
- /webpack-dev-middleware@5.3.3(webpack@5.89.0):
- resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- colorette: 2.0.20
- memfs: 3.4.13
- mime-types: 2.1.35
- range-parser: 1.2.1
- schema-utils: 4.2.0
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
- dev: false
-
/webpack-dev-middleware@5.3.3(webpack@5.91.0):
resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
engines: {node: '>= 12.13.0'}
@@ -26572,57 +24550,6 @@ packages:
schema-utils: 4.2.0
webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.21.3)
- /webpack-dev-server@4.15.1(webpack@5.89.0):
- resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==}
- engines: {node: '>= 12.13.0'}
- hasBin: true
- peerDependencies:
- webpack: ^4.37.0 || ^5.0.0
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack:
- optional: true
- webpack-cli:
- optional: true
- dependencies:
- '@types/bonjour': 3.5.10
- '@types/connect-history-api-fallback': 1.3.5
- '@types/express': 4.17.14
- '@types/serve-index': 1.9.1
- '@types/serve-static': 1.15.0
- '@types/sockjs': 0.3.33
- '@types/ws': 8.5.5
- ansi-html-community: 0.0.8
- bonjour-service: 1.0.14
- chokidar: 3.6.0
- colorette: 2.0.20
- compression: 1.7.4
- connect-history-api-fallback: 2.0.0
- default-gateway: 6.0.3
- express: 4.18.2
- graceful-fs: 4.2.11
- html-entities: 2.3.3
- http-proxy-middleware: 2.0.6(@types/express@4.17.14)
- ipaddr.js: 2.0.1
- launch-editor: 2.6.0
- open: 8.4.2
- p-retry: 4.6.2
- rimraf: 3.0.2
- schema-utils: 4.2.0
- selfsigned: 2.1.1
- serve-index: 1.9.1
- sockjs: 0.3.24
- spdy: 4.0.2
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
- webpack-dev-middleware: 5.3.3(webpack@5.89.0)
- ws: 8.13.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
- dev: false
-
/webpack-dev-server@4.15.1(webpack@5.91.0):
resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==}
engines: {node: '>= 12.13.0'}
@@ -26636,15 +24563,15 @@ packages:
webpack-cli:
optional: true
dependencies:
- '@types/bonjour': 3.5.10
- '@types/connect-history-api-fallback': 1.3.5
- '@types/express': 4.17.14
- '@types/serve-index': 1.9.1
- '@types/serve-static': 1.15.0
- '@types/sockjs': 0.3.33
- '@types/ws': 8.5.5
+ '@types/bonjour': 3.5.13
+ '@types/connect-history-api-fallback': 1.5.4
+ '@types/express': 4.17.21
+ '@types/serve-index': 1.9.4
+ '@types/serve-static': 1.15.7
+ '@types/sockjs': 0.3.36
+ '@types/ws': 8.5.10
ansi-html-community: 0.0.8
- bonjour-service: 1.0.14
+ bonjour-service: 1.2.1
chokidar: 3.6.0
colorette: 2.0.20
compression: 1.7.4
@@ -26652,21 +24579,21 @@ packages:
default-gateway: 6.0.3
express: 4.18.2
graceful-fs: 4.2.11
- html-entities: 2.3.3
- http-proxy-middleware: 2.0.6(@types/express@4.17.14)
- ipaddr.js: 2.0.1
- launch-editor: 2.6.0
+ html-entities: 2.5.2
+ http-proxy-middleware: 2.0.6(@types/express@4.17.21)
+ ipaddr.js: 2.2.0
+ launch-editor: 2.6.1
open: 8.4.2
p-retry: 4.6.2
rimraf: 3.0.2
schema-utils: 4.2.0
- selfsigned: 2.1.1
+ selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
webpack-dev-middleware: 5.3.3(webpack@5.91.0)
- ws: 8.13.0
+ ws: 8.17.0
transitivePeerDependencies:
- bufferutil
- debug
@@ -26758,85 +24685,6 @@ packages:
resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
dev: true
- /webpack@5.89.0(@swc/core@1.3.99)(esbuild@0.19.5):
- resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- dependencies:
- '@types/eslint-scope': 3.7.4
- '@types/estree': 1.0.1
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/wasm-edit': 1.11.6
- '@webassemblyjs/wasm-parser': 1.11.6
- acorn: 8.10.0
- acorn-import-assertions: 1.9.0(acorn@8.10.0)
- browserslist: 4.22.2
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.15.0
- es-module-lexer: 1.3.0
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.9(@swc/core@1.3.99)(esbuild@0.19.5)(webpack@5.89.0)
- watchpack: 2.4.0
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
-
- /webpack@5.90.1(@swc/core@1.3.99)(esbuild@0.19.5):
- resolution: {integrity: sha512-SstPdlAC5IvgFnhiRok8hqJo/+ArAbNv7rhU4fnWGHNVfN59HSQFaxZDSAL3IFG2YmqxuRs+IU33milSxbPlog==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- dependencies:
- '@types/eslint-scope': 3.7.4
- '@types/estree': 1.0.5
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/wasm-edit': 1.11.6
- '@webassemblyjs/wasm-parser': 1.11.6
- acorn: 8.11.3
- acorn-import-assertions: 1.9.0(acorn@8.11.3)
- browserslist: 4.23.0
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.15.0
- es-module-lexer: 1.3.0
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.19.5)(webpack@5.90.1)
- watchpack: 2.4.1
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
- dev: false
-
/webpack@5.91.0(@swc/core@1.3.99)(esbuild@0.19.5):
resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
engines: {node: '>=10.13.0'}
@@ -26915,7 +24763,7 @@ packages:
- esbuild
- uglify-js
- /webpackbar@5.0.2(webpack@5.89.0):
+ /webpackbar@5.0.2(webpack@5.91.0):
resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -26924,8 +24772,8 @@ packages:
chalk: 4.1.2
consola: 2.15.3
pretty-time: 1.1.0
- std-env: 3.6.0
- webpack: 5.89.0(@swc/core@1.3.99)(esbuild@0.19.5)
+ std-env: 3.7.0
+ webpack: 5.91.0(@swc/core@1.3.99)(esbuild@0.19.5)
dev: false
/websocket-driver@0.7.4:
@@ -27294,10 +25142,6 @@ packages:
dependencies:
zod: 3.23.8
- /zod@3.21.4:
- resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
- dev: false
-
/zod@3.23.8:
resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 49d26c071..d6477d54d 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,3 +1,2 @@
packages:
- - 'apps/**'
- - 'libs/**'
+ - 'apps/docs-app'
diff --git a/tsconfig.base.json b/tsconfig.base.json
index eca1a4114..65e53f802 100644
--- a/tsconfig.base.json
+++ b/tsconfig.base.json
@@ -18,6 +18,12 @@
"paths": {
"@analogjs/astro-angular": ["packages/astro-angular/src/index.ts"],
"@analogjs/content": ["packages/content/src/index.ts"],
+ "@analogjs/content/prism-highlighter": [
+ "packages/content/prism-highlighter/src/index.ts"
+ ],
+ "@analogjs/content/shiki-highlighter": [
+ "packages/content/shiki-highlighter/src/index.ts"
+ ],
"@analogjs/nx": ["packages/nx-plugin/src/index.ts"],
"@analogjs/platform": [
"./node_modules/@analogjs/platform",
@@ -34,6 +40,7 @@
"./node_modules/@analogjs/vite-plugin-nitro",
"packages/vite-plugin-nitro/src/index.ts"
],
+ "@analogjs/content-plugin": ["packages/content-plugin/src/index.ts"],
"libs/card": ["libs/card/src/index.ts"],
"vitest-angular": [
"./node_modules/@analogjs/vitest-angular",