diff --git a/packages/create/jest.config.ts b/packages/create/jest.config.ts deleted file mode 100644 index 749fcc899..000000000 --- a/packages/create/jest.config.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { pathsToModuleNameMapper } from 'ts-jest' -import { getTsconfig } from 'get-tsconfig' - -const tsconfig = getTsconfig()?.config - -/** @type {import('jest').Config} */ -export default { - preset: '@techor/jest', - moduleNameMapper: tsconfig?.compilerOptions?.paths && pathsToModuleNameMapper(tsconfig.compilerOptions?.paths, { prefix: '/' }), -} diff --git a/packages/create/package.json b/packages/create/package.json index cc1db54c0..d375e4bca 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -6,7 +6,7 @@ "dev": "pnpm build --watch", "lint": "eslint ./src", "type-check": "tsc --noEmit", - "test": "jest" + "test": "vitest" }, "license": "MIT", "description": "Initialize a new Master CSS project", @@ -37,6 +37,7 @@ "provenance": true }, "dependencies": { + "@master/css": "2.0.0-rc.38", "@techor/fs": "^3.0.22", "@techor/log": "^3.0.22", "commander": "^12.0.0", diff --git a/packages/create/tests/cjs/test.ts b/packages/create/tests/cjs/test.ts index af50b95ec..722e11efe 100644 --- a/packages/create/tests/cjs/test.ts +++ b/packages/create/tests/cjs/test.ts @@ -1,10 +1,12 @@ +import { test, it, expect } from 'vitest' import { execSync } from 'child_process' import { join } from 'node:path' import { readFileSync } from 'node:fs' import { rm } from '@master/css-shared/utils/fs' -it('init cjs', () => { +it('init cjs', async () => { rm(join(__dirname, 'master.css.js')) execSync('tsx ../../src/bin', { cwd: __dirname }) - expect(readFileSync(join(__dirname, 'master.css.js'), 'utf-8')).toEqual(require('../../src/master.css.js.js').default) + const config = (await import('../../src/master.css.js.js')).default + expect(readFileSync(join(__dirname, 'master.css.js'), 'utf-8')).toEqual(config) }) diff --git a/packages/create/tests/esm/test.ts b/packages/create/tests/esm/test.ts index c49b0d1c1..a4ec747ae 100644 --- a/packages/create/tests/esm/test.ts +++ b/packages/create/tests/esm/test.ts @@ -1,10 +1,12 @@ +import { test, it, expect } from 'vitest' import { execSync } from 'child_process' import { join } from 'node:path' import { readFileSync } from 'node:fs' import { rm } from '@master/css-shared/utils/fs' -it('init (type="module")', () => { +it('init (type="module")', async () => { rm(join(__dirname, 'master.css.mjs')) execSync('tsx ../../src/bin', { cwd: __dirname }) - expect(readFileSync(join(__dirname, 'master.css.mjs'), 'utf-8')).toEqual(require('../../src/master.css.mjs.js').default) + const config = (await import('../../src/master.css.mjs.js')).default + expect(readFileSync(join(__dirname, 'master.css.mjs'), 'utf-8')).toEqual(config) }) \ No newline at end of file diff --git a/packages/create/tests/new/test.ts b/packages/create/tests/new/test.ts index 0582ab628..ef4eeb5ad 100644 --- a/packages/create/tests/new/test.ts +++ b/packages/create/tests/new/test.ts @@ -1,14 +1,15 @@ +import { test, it, expect } from 'vitest' import { execSync } from 'child_process' import { rm } from '@master/css-shared/utils/fs' import { join } from 'node:path' import { existsSync, readFileSync } from 'node:fs' it('creates a new app', () => { - rm(join(__dirname, 'my-app')) - execSync('tsx ../../src/bin my-app', { cwd: __dirname }) - expect(existsSync(join(__dirname, 'my-app/package.json'))).toBe(true) + rm(join(__dirname, 'dist')) + execSync('tsx ../../src/bin dist', { cwd: __dirname }) + expect(existsSync(join(__dirname, 'dist/package.json'))).toBe(true) }) it('should install the remote dependencies', () => { - expect(readFileSync(join(__dirname, 'my-app/package.json')).toString()).not.toContain('workspace:^') + expect(readFileSync(join(__dirname, 'dist/package.json')).toString()).not.toContain('workspace:^') }) \ No newline at end of file diff --git a/packages/create/tests/nextjs/test.ts b/packages/create/tests/nextjs/test.ts index fb0307250..eb189e0e0 100644 --- a/packages/create/tests/nextjs/test.ts +++ b/packages/create/tests/nextjs/test.ts @@ -1,3 +1,4 @@ +import { test, it, expect } from 'vitest' import { execSync } from 'child_process' import { rm } from '@master/css-shared/utils/fs' import { join } from 'node:path' diff --git a/packages/create/tests/ts/test.ts b/packages/create/tests/ts/test.ts index 9b8e70344..ce53d831c 100644 --- a/packages/create/tests/ts/test.ts +++ b/packages/create/tests/ts/test.ts @@ -1,10 +1,12 @@ +import { test, it, expect } from 'vitest' import { execSync } from 'child_process' import { join } from 'node:path' import { readFileSync } from 'node:fs' import { rm } from '@master/css-shared/utils/fs' -it('init by tsconfig.json', () => { +it('init by tsconfig.json', async () => { rm(join(__dirname, 'master.css.ts')) execSync('tsx ../../src/bin', { cwd: __dirname }) - expect(readFileSync(join(__dirname, 'master.css.ts'), 'utf-8')).toEqual(require('../../src/master.css.ts.js').default) + const config = (await import('../../src/master.css.ts.js')).default + expect(readFileSync(join(__dirname, 'master.css.ts'), 'utf-8')).toEqual(config) }) \ No newline at end of file diff --git a/packages/create/tests/with-deps/test.ts b/packages/create/tests/with-deps/test.ts index 6da9b48cd..cd72de301 100644 --- a/packages/create/tests/with-deps/test.ts +++ b/packages/create/tests/with-deps/test.ts @@ -1,16 +1,22 @@ +import { test, it, expect, beforeAll } from 'vitest' import { execSync } from 'child_process' import { join } from 'node:path' import { existsSync, writeFileSync } from 'node:fs' +import { rm, mkdir } from 'shared/utils/fs' -writeFileSync(join(__dirname, 'package.json'), JSON.stringify({ - 'name': 'with-package-json.test', - 'private': true, - 'dependencies': { - '@master/css': 'latest' - } -})) +beforeAll(() => { + rm(join(__dirname, 'dist')) + mkdir(join(__dirname, 'dist')) + writeFileSync(join(__dirname, './dist/package.json'), JSON.stringify({ + 'name': 'with-package-json.test', + 'private': true, + 'dependencies': { + '@master/css': 'latest' + } + })) +}) it('init', () => { - execSync('tsx ../../src/bin', { cwd: __dirname }) - expect(existsSync(join(__dirname, 'node_modules'))).toBeFalsy() + execSync('tsx ../../../src/bin', { cwd: join(__dirname, 'dist')}) + expect(existsSync(join(__dirname, './dist/node_modules'))).toBeFalsy() }) diff --git a/packages/create/tests/with-no-deps/test.ts b/packages/create/tests/with-no-deps/test.ts index 4e7fa6665..7a048e2b9 100644 --- a/packages/create/tests/with-no-deps/test.ts +++ b/packages/create/tests/with-no-deps/test.ts @@ -1,16 +1,22 @@ +import { test, it, expect, beforeAll } from 'vitest' import { execSync } from 'child_process' import { join } from 'node:path' import { readFileSync, writeFileSync } from 'node:fs' +import { rm, mkdir } from 'shared/utils/fs' -writeFileSync(join(__dirname, 'package.json'), JSON.stringify({ - 'name': 'with-package-json.test', - 'private': true -})) +beforeAll(() => { + rm(join(__dirname, 'dist')) + mkdir(join(__dirname, 'dist')) + writeFileSync(join(__dirname, './dist/package.json'), JSON.stringify({ + 'name': 'with-package-json.test', + 'private': true + })) +}) it('init', () => { // MacOS and Windows -> error https://registry.yarnpkg.com/@master/css/-/css-2.0.0-rc.21.tgz: Extracting tar content of undefined failed, the file appears to be corrupt: "ENOENT: no such file or directory, chmod '/Users/runner/Library/Caches/Yarn/v6/npm-@master-css-2.0.0-rc.21-95d553b31c3370f41a9c60815841f3c359f95bcc-integrity/node_modules/@master/css/README.md'" if (!process.env.CI || process.env.RUNNER_OS === 'Linux') { - execSync('tsx ../../src/bin', { cwd: __dirname }) - expect(JSON.parse(readFileSync(join(__dirname, 'package.json'), 'utf-8')).dependencies['@master/css']).toBeDefined() + execSync('tsx ../../../src/bin', { cwd: join(__dirname, 'dist')}) + expect(JSON.parse(readFileSync(join(__dirname, './dist/package.json'), 'utf-8')).dependencies['@master/css']).toBeDefined() } }) \ No newline at end of file diff --git a/packages/create/vitest.config.ts b/packages/create/vitest.config.ts new file mode 100644 index 000000000..20eab4060 --- /dev/null +++ b/packages/create/vitest.config.ts @@ -0,0 +1,4 @@ +import { defineConfig } from 'vitest/config' +import config from '../../shared/vitest.config' + +export default defineConfig(config) \ No newline at end of file diff --git a/packages/validator/jest.config.ts b/packages/validator/jest.config.ts deleted file mode 100644 index 749fcc899..000000000 --- a/packages/validator/jest.config.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { pathsToModuleNameMapper } from 'ts-jest' -import { getTsconfig } from 'get-tsconfig' - -const tsconfig = getTsconfig()?.config - -/** @type {import('jest').Config} */ -export default { - preset: '@techor/jest', - moduleNameMapper: tsconfig?.compilerOptions?.paths && pathsToModuleNameMapper(tsconfig.compilerOptions?.paths, { prefix: '/' }), -} diff --git a/packages/validator/package.json b/packages/validator/package.json index 7dbdf7d6b..a5bab6938 100644 --- a/packages/validator/package.json +++ b/packages/validator/package.json @@ -6,7 +6,7 @@ "dev": "pnpm build --watch", "lint": "eslint ./src", "type-check": "tsc --noEmit", - "test": "jest --forceExit --detectOpenHandles" + "test": "vitest" }, "license": "MIT", "description": "Validate Master CSS syntax", diff --git a/packages/validator/tests/css.test.ts b/packages/validator/tests/css.test.ts index be27cd24e..13c451a4d 100644 --- a/packages/validator/tests/css.test.ts +++ b/packages/validator/tests/css.test.ts @@ -1,3 +1,4 @@ +import { test, it, expect } from 'vitest' import validateCSS from '../src/validate-css' it('selector', () => { diff --git a/packages/validator/tests/test.ts b/packages/validator/tests/test.ts index e3289ba94..815eabfc4 100644 --- a/packages/validator/tests/test.ts +++ b/packages/validator/tests/test.ts @@ -1,3 +1,4 @@ +import { test, it, expect } from 'vitest' import { generateValidRules } from '../src' import expectClassWithErrors from './utils/expect-class-with-errors' import expectClassWithoutErrors from './utils/expect-class-without-errors' diff --git a/packages/validator/tests/utils/expect-class-invalid.ts b/packages/validator/tests/utils/expect-class-invalid.ts index 622563cd7..69551a484 100644 --- a/packages/validator/tests/utils/expect-class-invalid.ts +++ b/packages/validator/tests/utils/expect-class-invalid.ts @@ -1,3 +1,4 @@ +import { expect } from 'vitest' import { isClassValid } from '../../src' export default function expectClassInvalid(syntax: string) { diff --git a/packages/validator/tests/utils/expect-class-valid.ts b/packages/validator/tests/utils/expect-class-valid.ts index 5d99660b8..6ac7d5c2f 100644 --- a/packages/validator/tests/utils/expect-class-valid.ts +++ b/packages/validator/tests/utils/expect-class-valid.ts @@ -1,4 +1,5 @@ -import { isClassValid, validate } from '../../src' +import { expect } from 'vitest' +import { validate } from '../../src' export default function expectClassValid(syntax: string) { const errors = validate(syntax).errors diff --git a/packages/validator/tests/utils/expect-class-with-errors.ts b/packages/validator/tests/utils/expect-class-with-errors.ts index 21e97a04a..7067ff1dd 100644 --- a/packages/validator/tests/utils/expect-class-with-errors.ts +++ b/packages/validator/tests/utils/expect-class-with-errors.ts @@ -1,3 +1,4 @@ +import { expect } from 'vitest' import { validate } from '../../src' export default function expectClassWithErrors(syntax: string) { diff --git a/packages/validator/tests/utils/expect-class-without-errors.ts b/packages/validator/tests/utils/expect-class-without-errors.ts index 0a481ea08..7e5aa73fa 100644 --- a/packages/validator/tests/utils/expect-class-without-errors.ts +++ b/packages/validator/tests/utils/expect-class-without-errors.ts @@ -1,3 +1,4 @@ +import { expect } from 'vitest' import { validate } from '../../src' export default function expectClassWithoutErrors(syntax: string) { diff --git a/packages/validator/vitest.config.ts b/packages/validator/vitest.config.ts new file mode 100644 index 000000000..20eab4060 --- /dev/null +++ b/packages/validator/vitest.config.ts @@ -0,0 +1,4 @@ +import { defineConfig } from 'vitest/config' +import config from '../../shared/vitest.config' + +export default defineConfig(config) \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d905f039a..5f305c0b4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -160,282 +160,6 @@ importers: specifier: workspace:^ version: link:packages/vscode - ../..: - dependencies: - '@firebase/firestore': - specifier: ^4.4.3 - version: 4.5.0(@firebase/app@0.10.4) - '@master/css': - specifier: link:projects/css/packages/core - version: link:projects/css/packages/core - '@master/css-cli': - specifier: link:projects/css/packages/cli - version: link:projects/css/packages/cli - '@master/css-extractor': - specifier: link:projects/css/packages/extractor - version: link:projects/css/packages/extractor - '@master/css-language-service': - specifier: link:projects/css/packages/language-service - version: link:projects/css/packages/language-service - '@master/css.react': - specifier: link:projects/css/packages/react - version: link:projects/css/packages/react - '@master/eslint-config-css': - specifier: link:projects/css/packages/eslint-config - version: link:projects/css/packages/eslint-config - '@master/styled.react': - specifier: ^2.0.2 - version: 2.0.2(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@master/theme-mode.react': - specifier: ^1.1.0 - version: 1.1.0(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mdx-js/loader': - specifier: 3.0.0 - version: 3.0.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))) - '@mdx-js/react': - specifier: 3.0.0 - version: 3.0.0(@types/react@18.3.1)(react@18.3.1) - '@next/bundle-analyzer': - specifier: ^14.2.1 - version: 14.2.3 - '@next/mdx': - specifier: ^14.2.1 - version: 14.2.1(@mdx-js/loader@3.0.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(@mdx-js/react@3.0.0(@types/react@18.3.1)(react@18.3.1)) - '@popperjs/core': - specifier: ^2.11.8 - version: 2.11.8 - '@svgr/webpack': - specifier: ^8.1.0 - version: 8.1.0(typescript@5.4.5) - '@tabler/icons-react': - specifier: ^2.47.0 - version: 2.47.0(react@18.3.1) - '@techor/extend': - specifier: ^2.6.7 - version: 2.6.7 - '@types/canvas-confetti': - specifier: ^1.6.4 - version: 1.6.4 - '@types/clone-deep': - specifier: ^4.0.4 - version: 4.0.4 - '@types/js-beautify': - specifier: ^1.14.3 - version: 1.14.3 - '@types/mdx': - specifier: ^2.0.11 - version: 2.0.13 - '@types/mime-types': - specifier: ^2.1.4 - version: 2.1.4 - '@types/negotiator': - specifier: ^0.6.3 - version: 0.6.3 - '@types/node': - specifier: ^20.11.25 - version: 20.12.10 - '@types/prismjs': - specifier: ^1.26.3 - version: 1.26.4 - '@types/react': - specifier: ^18.2.64 - version: 18.3.1 - '@types/react-dom': - specifier: ^18.2.21 - version: 18.2.22 - '@types/react-portal': - specifier: ^4.0.7 - version: 4.0.7 - '@types/throttle-debounce': - specifier: ^5.0.2 - version: 5.0.2 - '@vercel/analytics': - specifier: ^1.2.2 - version: 1.2.2(next@14.2.1(@babel/core@7.24.5)(@playwright/test@1.41.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0))(react@18.3.1) - animated-scroll-to: - specifier: ^2.3.0 - version: 2.3.0 - axios: - specifier: ^1.6.7 - version: 1.6.8 - canvas-confetti: - specifier: ^1.9.2 - version: 1.9.3 - clsx: - specifier: ^2.1.0 - version: 2.1.1 - copy-webpack-plugin: - specifier: ^11.0.0 - version: 11.0.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) - crawlee: - specifier: ^3.8.1 - version: 3.10.0(playwright@1.41.2) - cross-env: - specifier: ^7.0.3 - version: 7.0.3 - css.escape: - specifier: ^1.5.1 - version: 1.5.1 - dayjs: - specifier: ^1.11.10 - version: 1.11.11 - default-passive-events: - specifier: ^2.0.0 - version: 2.0.0 - eslint: - specifier: ^8.57.0 - version: 8.57.0 - eslint-config-next: - specifier: ^14.2.1 - version: 14.2.1(eslint@8.57.0)(typescript@5.4.5) - eslint-mdx: - specifier: ^3.1.5 - version: 3.1.5(eslint@8.57.0) - eslint-plugin-import: - specifier: ^2.29.1 - version: 2.29.1(@typescript-eslint/parser@7.8.0(eslint@9.3.0)(typescript@5.4.5))(eslint@8.57.0) - eslint-plugin-mdx: - specifier: ^3.1.5 - version: 3.1.5(eslint@8.57.0) - eslint-plugin-react-hooks: - specifier: ^4.6.0 - version: 4.6.2(eslint@8.57.0) - fast-glob: - specifier: ^3.3.2 - version: 3.3.2 - file-loader: - specifier: ^6.2.0 - version: 6.2.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))) - filesize: - specifier: ^10.1.0 - version: 10.1.2 - firebase: - specifier: ^10.8.1 - version: 10.12.1 - firebase-admin: - specifier: ^11.11.1 - version: 11.11.1(encoding@0.1.13) - fuse.js: - specifier: ^6.6.2 - version: 6.6.2 - get-contrast: - specifier: ^3.0.0 - version: 3.0.0 - github-slugger: - specifier: ^1.5.0 - version: 1.5.0 - global-jsdom: - specifier: ^9.2.0 - version: 9.2.0(jsdom@24.0.0) - js-beautify: - specifier: ^1.15.1 - version: 1.15.1 - kebab-case: - specifier: ^1.0.2 - version: 1.0.2 - mime-types: - specifier: ^2.1.35 - version: 2.1.35 - nanoid: - specifier: ^5.0.6 - version: 5.0.7 - negotiator: - specifier: ^0.6.3 - version: 0.6.3 - next: - specifier: ^14.2.1 - version: 14.2.1(@babel/core@7.24.5)(@playwright/test@1.41.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0) - param-case: - specifier: ^3.0.4 - version: 3.0.4 - parent-module: - specifier: ^3.1.0 - version: 3.1.0 - prism-svelte: - specifier: ^0.5.0 - version: 0.5.0 - prismjs: - specifier: ^1.29.0 - version: 1.29.0 - raw-loader: - specifier: ^4.0.2 - version: 4.0.2(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))) - react: - specifier: ^18.2.0 - version: 18.3.1 - react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) - react-intersection-observer: - specifier: ^9.8.1 - version: 9.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-popper: - specifier: ^2.3.0 - version: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-router-dom: - specifier: ^6.22.3 - version: 6.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - rehype-slug: - specifier: ^6.0.0 - version: 6.0.0 - remark: - specifier: ^15.0.1 - version: 15.0.1 - remark-gfm: - specifier: ^4.0.0 - version: 4.0.0 - remark-slug: - specifier: ^7.0.1 - version: 7.0.1 - remark-toc: - specifier: ^9.0.0 - version: 9.0.0 - sass: - specifier: ^1.71.1 - version: 1.77.0 - server-only: - specifier: ^0.0.1 - version: 0.0.1 - sharp: - specifier: ^0.33.2 - version: 0.33.3 - slugify: - specifier: ^1.6.6 - version: 1.6.6 - spawn-sync: - specifier: ^2.0.0 - version: 2.0.0 - string-width: - specifier: ^5.1.2 - version: 5.1.2 - throttle-debounce: - specifier: ^5.0.0 - version: 5.0.0 - timeago-react: - specifier: ^3.0.6 - version: 3.0.6(react@18.3.1) - ts-dedent: - specifier: ^2.2.0 - version: 2.2.0 - typescript: - specifier: ^5.4.2 - version: 5.4.5 - unist-util-visit: - specifier: ^5.0.0 - version: 5.0.0 - upath: - specifier: ^2.0.1 - version: 2.0.1 - url-loader: - specifier: ^4.1.1 - version: 4.1.1(file-loader@6.2.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))) - usehooks-ts: - specifier: ^2.16.0 - version: 2.16.0(react@18.3.1) - webpack-import-glob-loader: - specifier: ^1.6.3 - version: 1.6.3 - examples/angular: dependencies: '@angular/animations': @@ -489,7 +213,7 @@ importers: devDependencies: '@angular-devkit/build-angular': specifier: ^17.2.1 - version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.2.2))(@angular/platform-server@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))))(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/express@4.17.21)(@types/node@20.11.28)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.11.28)(ts-node@10.9.2(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/node@20.12.10)(typescript@5.4.5)))(karma@6.4.3)(typescript@5.2.2) + version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.2.2))(@angular/platform-server@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))))(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/express@4.17.21)(@types/node@20.11.28)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.11.28)(ts-node@10.9.2(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/node@20.12.10)(typescript@5.4.5)))(karma@6.4.3)(typescript@5.2.2) '@angular/cli': specifier: ^17.2.1 version: 17.3.0(chokidar@3.6.0) @@ -568,7 +292,7 @@ importers: devDependencies: '@angular-devkit/build-angular': specifier: ^17.2.1 - version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.2.2))(@angular/platform-server@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))))(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/express@4.17.21)(@types/node@20.12.10)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.10)(ts-node@10.9.2(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/node@20.12.10)(typescript@5.4.5)))(karma@6.4.3)(typescript@5.2.2) + version: 17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.2.2))(@angular/platform-server@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))))(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/express@4.17.21)(@types/node@20.12.10)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.10)(ts-node@10.9.2(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/node@20.12.10)(typescript@5.4.5)))(karma@6.4.3)(typescript@5.2.2) '@angular/cli': specifier: ^17.2.1 version: 17.3.0(chokidar@3.6.0) @@ -1387,6 +1111,9 @@ importers: packages/create: dependencies: + '@master/css': + specifier: 2.0.0-rc.38 + version: 2.0.0-rc.38 '@techor/fs': specifier: ^3.0.22 version: 3.0.22 @@ -2268,29 +1995,6 @@ packages: '@antfu/utils@0.7.7': resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==} - '@apify/consts@2.27.0': - resolution: {integrity: sha512-GjaZ74vDmg0XBwN7sY+LxezOP9zWPgKamc97LH2GhZhPz6gFQclKK+PM/uRqBZwWXkyElScz+Nrm4UPX3uSPcg==} - - '@apify/datastructures@2.0.2': - resolution: {integrity: sha512-IN9A0s2SCHoZZE1tf4xKgk4fxHM5/0I/UrXhWbn/rSv7E5sA2o0NyHdwcMY2Go9f5qd+E7VAbX6WnESTE6GLeA==} - - '@apify/log@2.5.1': - resolution: {integrity: sha512-Rtmdow2LlI+ViGhfgpg2K+ntI+5VEaEiLA4vZUCFhJc+TWiVH1T53HhOJS/PKzo4mlKu74HVEcmBb1PK3jWeww==} - - '@apify/ps-tree@1.2.0': - resolution: {integrity: sha512-VHIswI7rD/R4bToeIDuJ9WJXt+qr5SdhfoZ9RzdjmCs9mgy7l0P4RugQEUCcU+WB4sfImbd4CKwzXcn0uYx1yw==} - engines: {node: '>= 0.10'} - hasBin: true - - '@apify/pseudo_url@2.0.41': - resolution: {integrity: sha512-SFUh+0Wl3CRJLACazcrZoqUeayMp/lk+KjWqLgbkuxSC1wVYeWVtwsskUkBaCHaZjClf16GUkdGuK5dcQ1/p5g==} - - '@apify/timeout@0.3.1': - resolution: {integrity: sha512-sLIuOqfySki/7AXiQ1yZoCI07vX6aYFLgP6YaJ8e8YLn8CFsRERma/Crxcz0zyCaxhc7C7EPgcs1O+p/djZchw==} - - '@apify/utilities@2.10.2': - resolution: {integrity: sha512-kHv6g+v8cRzcH3i4dlydUBseA/ol1MWkHrmyEmIteK6VGl+xqbs/BsgCiS0G9STcdTMS+drAO2oYYhhdD3ESUA==} - '@astrojs/compiler@1.8.2': resolution: {integrity: sha512-o/ObKgtMzl8SlpIdzaxFnt7SATKPxu4oIP/1NL+HDJRzxfJcAkOTAb/ZKMRyULbz4q+1t2/DAebs2Z1QairkZw==} @@ -2988,12 +2692,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-constant-elements@7.24.1': - resolution: {integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-display-name@7.23.3': resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} engines: {node: '>=6.9.0'} @@ -3250,85 +2948,6 @@ packages: resolution: {integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==} engines: {node: '>=v18'} - '@crawlee/basic@3.10.0': - resolution: {integrity: sha512-aqwt4L+Kk28cC2QrBHsYjqIU7+6NP+Hvv/agewtp9ZEOWITuAPCg9eol4EqgEJCkexdWSgrSLw105zjelqImAQ==} - engines: {node: '>=16.0.0'} - - '@crawlee/browser-pool@3.10.0': - resolution: {integrity: sha512-gOFLJomcHNzVbo/f4OzBdg1fXEY3c06ZrN7I4DnNKv4lI8kBU9JC9NGtUaUHOkg9cT2HeGHvckbkOy4GCBU92Q==} - engines: {node: '>=16.0.0'} - peerDependencies: - playwright: '*' - puppeteer: '*' - peerDependenciesMeta: - playwright: - optional: true - puppeteer: - optional: true - - '@crawlee/browser@3.10.0': - resolution: {integrity: sha512-W4FY59n/CKm+qKxW7r83ouIaZLFUO08ZDa7q36yZ6TYncJKLz76KAQj4aAZJSYEXGhaznZSdI0WCzBDjxrc/fA==} - engines: {node: '>=16.0.0'} - - '@crawlee/cheerio@3.10.0': - resolution: {integrity: sha512-1uJ1N+O9dOhhb6iMxWqQxGzvIO7hiWpJfO9TymdQVFkQHg9qne1UMGlY01Ay0Xrx4IUbsCu24P7NzxcVFlINNQ==} - engines: {node: '>=16.0.0'} - - '@crawlee/cli@3.10.0': - resolution: {integrity: sha512-DkqN5s0eyFFwRt6XjkTqREsubDIgrdyZb+XBjlHo/OJBi8O4CtFkVMGKm1maKBKOOxrLmnrq6NTMTBhINf4REQ==} - engines: {node: '>=16.0.0'} - hasBin: true - - '@crawlee/core@3.10.0': - resolution: {integrity: sha512-Kpp5QxU8Sv767WBt7xqb5kkR7b8nXct0iP99jnR3/w/8CltT1x0SfU1XqCOqIVWsgtYzg1cG0sJJTHlatw+oGA==} - engines: {node: '>=16.0.0'} - - '@crawlee/http@3.10.0': - resolution: {integrity: sha512-LNBK6xeqOIuJkKMxQrq3ZMzr3HZLBaofgo4MtY/KTcl23MbkIGhqa9dOIVyIYJfmnW74aQ/VHUitt8DIp79Ajw==} - engines: {node: '>=16.0.0'} - - '@crawlee/jsdom@3.10.0': - resolution: {integrity: sha512-h9MhTYHF9kxZSLgCuHW/6X7qYaYcQDmjQJB8xZYZFRaWN1J4nzgs9bVQ13+GqA4GVsMo2mEn5BsoaUdTsgf6Yg==} - engines: {node: '>=16.0.0'} - - '@crawlee/linkedom@3.10.0': - resolution: {integrity: sha512-ZH2RbqfzK9ONUAtZlVQfRmSUf/Z28uG3rVvypsQ+WAW8vSq7jeo/KgKdLQXJzEEpbSTpNhMvGFPTTPKYsqkSuQ==} - engines: {node: '>=16.0.0'} - - '@crawlee/memory-storage@3.10.0': - resolution: {integrity: sha512-kpOf50Vx00HDwq0B61yAZ5+PO4LOl2pK9zgH9aUFibr2Wwfk3/eHohmVfhoaFzuBG38v/1De2p2m80ylEtKkpw==} - engines: {node: '>= 16'} - - '@crawlee/playwright@3.10.0': - resolution: {integrity: sha512-iqs+pQhdvO6DhSfvAGp6iKI5NquFgApPqcRUhSYKXChrvFk1qaIC8/wvJt58ioY8MNdnlruhrlcn8PZWPApexQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - playwright: '*' - peerDependenciesMeta: - playwright: - optional: true - - '@crawlee/puppeteer@3.10.0': - resolution: {integrity: sha512-FIWn0rurSsn/pQeiCtTcCr7N52nRfqUUHQUtePXmVgbEC1RIFlFYM/qM6RdnjVGPwpSk3IwDdQ53HPisWJ4VlA==} - engines: {node: '>=16.0.0'} - peerDependencies: - puppeteer: '*' - peerDependenciesMeta: - puppeteer: - optional: true - - '@crawlee/templates@3.10.0': - resolution: {integrity: sha512-h4tg1Ya4KmpeaBXsZof4dzdZdQ2gia396bJNCJHKlputxNV5AZDmsepfq10v/q8cpnG6bopDnpT3CZv2yMCtag==} - engines: {node: '>=16.0.0'} - - '@crawlee/types@3.10.0': - resolution: {integrity: sha512-Nj9aH4mYwD56BAfObrLnzYjcVr8QhCN/w5jA1UdSeb1QtMtQw4Ht9u6zxVHqibuLft1WwS/qXqami0YFoqzfWA==} - engines: {node: '>=16.0.0'} - - '@crawlee/utils@3.10.0': - resolution: {integrity: sha512-+ET8hBLIoepVGL/aOfiMUrHwP2b31CEZOmoxZqGC5KQdkAG62mFd+++tkXlKWM+MTldp/ITHfav0HwwOdFlRcA==} - engines: {node: '>=16.0.0'} - '@cspotcode/source-map-support@0.8.1': resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} @@ -4207,73 +3826,15 @@ packages: resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} engines: {node: '>=14'} - '@firebase/analytics-compat@0.2.10': - resolution: {integrity: sha512-ia68RcLQLLMFWrM10JfmFod7eJGwqr4/uyrtzHpTDnxGX/6gNCBTOuxdAbyWIqXI5XmcMQdz9hDijGKOHgDfPw==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/analytics-types@0.8.2': - resolution: {integrity: sha512-EnzNNLh+9/sJsimsA/FGqzakmrAUKLeJvjRHlg8df1f97NLUlFidk9600y0ZgWOp3CAxn6Hjtk+08tixlUOWyw==} - - '@firebase/analytics@0.10.4': - resolution: {integrity: sha512-OJEl/8Oye/k+vJ1zV/1L6eGpc1XzAj+WG2TPznJ7PszL7sOFLBXkL9IjHfOCGDGpXeO3btozy/cYUqv4zgNeHg==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/app-check-compat@0.3.11': - resolution: {integrity: sha512-t01zaH3RJpKEey0nGduz3Is+uSz7Sj4U5nwOV6lWb+86s5xtxpIvBJzu/lKxJfYyfZ29eJwpdjEgT1/lm4iQyA==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/app-check-interop-types@0.3.2': - resolution: {integrity: sha512-LMs47Vinv2HBMZi49C09dJxp0QT5LwDzFaVGf/+ITHe3BlIhUiLNttkATSXplc89A2lAaeTqjgqVkiRfUGyQiQ==} - - '@firebase/app-check-types@0.5.2': - resolution: {integrity: sha512-FSOEzTzL5bLUbD2co3Zut46iyPWML6xc4x+78TeaXMSuJap5QObfb+rVvZJtla3asN4RwU7elaQaduP+HFizDA==} - - '@firebase/app-check@0.8.4': - resolution: {integrity: sha512-2tjRDaxcM5G7BEpytiDcIl+NovV99q8yEqRMKDbn4J4i/XjjuThuB4S+4PkmTnZiCbdLXQiBhkVxNlUDcfog5Q==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/app-compat@0.2.34': - resolution: {integrity: sha512-enteBla1gBYObauvsC9bRRoqHZnOW48ahYABZ+l+FEiWil1rw0gVihl8D4eLqtQp/ci8+fbOBf3ZL19uFq/OCw==} - '@firebase/app-types@0.9.0': resolution: {integrity: sha512-AeweANOIo0Mb8GiYm3xhTEBVCmPwTYAu9Hcd2qSkLuga/6+j9b1Jskl5bpiSQWy9eJ/j5pavxj6eYogmnuzm+Q==} - '@firebase/app-types@0.9.2': - resolution: {integrity: sha512-oMEZ1TDlBz479lmABwWsWjzHwheQKiAgnuKxE0pz0IXCVx7/rtlkx1fQ6GfgK24WCrxDKMplZrT50Kh04iMbXQ==} - '@firebase/app@0.10.4': resolution: {integrity: sha512-oKd5cT+fDbQ22X8Am3tBOrSFdDp8n4NJDqld4uo+H/PL9F+D3ogtTeiPyDWw1lZK7FsMbmtRrPRozlmJFzSKAQ==} - '@firebase/auth-compat@0.5.8': - resolution: {integrity: sha512-qUgmv/mcth9wHPTOCKgAOeHe5c+BIOJVcbX2RfcjlXO3xnd8nRafwEkZKBNJUjy4oihYhqFMEMnTHLhwLJwLig==} - peerDependencies: - '@firebase/app-compat': 0.x - '@firebase/auth-interop-types@0.2.1': resolution: {integrity: sha512-VOaGzKp65MY6P5FI84TfYKBXEPi6LmOCSMMzys6o2BN2LOsqy7pCuZCup7NYnfbk5OkkQKzvIfHOzTm0UDpkyg==} - '@firebase/auth-interop-types@0.2.3': - resolution: {integrity: sha512-Fc9wuJGgxoxQeavybiuwgyi+0rssr76b+nHpj+eGhXFYAdudMWyfBHvFL/I5fEHniUM/UQdFzi9VXJK2iZF7FQ==} - - '@firebase/auth-types@0.12.2': - resolution: {integrity: sha512-qsEBaRMoGvHO10unlDJhaKSuPn4pyoTtlQuP1ghZfzB6rNQPuhp/N/DcFZxm9i4v0SogjCbf9reWupwIvfmH6w==} - peerDependencies: - '@firebase/app-types': 0.x - '@firebase/util': 1.x - - '@firebase/auth@1.7.3': - resolution: {integrity: sha512-RiU1PjziOxLuyswtYtLK2qSjHIQJQGCk1h986SUFRbMQfzLXbQg8ZgXwxac1UAfDOzgzqPNCXhBuIlSK2UomoQ==} - peerDependencies: - '@firebase/app': 0.x - '@react-native-async-storage/async-storage': ^1.18.1 - peerDependenciesMeta: - '@react-native-async-storage/async-storage': - optional: true - '@firebase/component@0.6.4': resolution: {integrity: sha512-rLMyrXuO9jcAUCaQXCMjCMUsWrba5fzHlNK24xz5j2W6A/SRmK8mZJ/hn7V0fViLbxC0lPMtrK1eYzk6Fg03jA==} @@ -4286,133 +3847,24 @@ packages: '@firebase/database-compat@0.3.4': resolution: {integrity: sha512-kuAW+l+sLMUKBThnvxvUZ+Q1ZrF/vFJ58iUY9kAcbX48U03nVzIF6Tmkf0p3WVQwMqiXguSgtOPIB6ZCeF+5Gg==} - '@firebase/database-compat@1.0.5': - resolution: {integrity: sha512-NDSMaDjQ+TZEMDMmzJwlTL05kh1+0Y84C+kVMaOmNOzRGRM7VHi29I6YUhCetXH+/b1Wh4ZZRyp1CuWkd8s6hg==} - '@firebase/database-types@0.10.4': resolution: {integrity: sha512-dPySn0vJ/89ZeBac70T+2tWWPiJXWbmRygYv0smT5TfE3hDrQ09eKMF3Y+vMlTdrMWq7mUdYW5REWPSGH4kAZQ==} - '@firebase/database-types@1.0.3': - resolution: {integrity: sha512-39V/Riv2R3O/aUjYKh0xypj7NTNXNAK1bcgY5Kx+hdQPRS/aPTS8/5c0CGFYKgVuFbYlnlnhrCTYsh2uNhGwzA==} - '@firebase/database@0.14.4': resolution: {integrity: sha512-+Ea/IKGwh42jwdjCyzTmeZeLM3oy1h0mFPsTy6OqCWzcu/KFqRAr5Tt1HRCOBlNOdbh84JPZC47WLU18n2VbxQ==} - '@firebase/database@1.0.5': - resolution: {integrity: sha512-cAfwBqMQuW6HbhwI3Cb/gDqZg7aR0OmaJ85WUxlnoYW2Tm4eR0hFl5FEijI3/gYPUiUcUPQvTkGV222VkT7KPw==} - - '@firebase/firestore-compat@0.3.32': - resolution: {integrity: sha512-at71mwK7a/mUXH0OgyY0+gUzedm/EUydDFYSFsBoO8DYowZ23Mgd6P4Rzq/Ll3zI/3xJN7LGe7Qp4iE/V/3Arg==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/firestore-types@3.0.2': - resolution: {integrity: sha512-wp1A+t5rI2Qc/2q7r2ZpjUXkRVPtGMd6zCLsiWurjsQpqPgFin3AhNibKcIzoF2rnToNa/XYtyWXuifjOOwDgg==} - peerDependencies: - '@firebase/app-types': 0.x - '@firebase/util': 1.x - '@firebase/firestore@4.5.0': resolution: {integrity: sha512-rXS6v4HbsN6vZQlq2fLW1ZHb+J5SnS+8Zqb/McbKFIrGYjPUZo5CyO75mkgtlR1tCYAwCebaqoEWb6JHgZv/ww==} engines: {node: '>=10.10.0'} peerDependencies: '@firebase/app': 0.x - '@firebase/firestore@4.6.3': - resolution: {integrity: sha512-d/+N2iUsiJ/Dc7fApdpdmmTXzwuTCromsdA1lKwYfZtMIOd1fI881NSLwK2wV4I38wkLnvfKJUV6WpU1f3/ONg==} - engines: {node: '>=10.10.0'} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/functions-compat@0.3.11': - resolution: {integrity: sha512-Qn+ts/M6Lj2/6i1cp5V5TRR+Hi9kyXyHbo+w9GguINJ87zxrCe6ulx3TI5AGQkoQa8YFHUhT3DMGmLFiJjWTSQ==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/functions-types@0.6.2': - resolution: {integrity: sha512-0KiJ9lZ28nS2iJJvimpY4nNccV21rkQyor5Iheu/nq8aKXJqtJdeSlZDspjPSBBiHRzo7/GMUttegnsEITqR+w==} - - '@firebase/functions@0.11.5': - resolution: {integrity: sha512-qrHJ+l62mZiU5UZiVi84t/iLXZlhRuSvBQsa2qvNLgPsEWR7wdpWhRmVdB7AU8ndkSHJjGlMICqrVnz47sgU7Q==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/installations-compat@0.2.7': - resolution: {integrity: sha512-RPcbD+3nqHbnhVjIOpWK2H5qzZ8pAAAScceiWph0VNTqpKyPQ5tDcp4V5fS0ELpfgsHYvroMLDKfeHxpfvm8cw==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/installations-types@0.5.2': - resolution: {integrity: sha512-que84TqGRZJpJKHBlF2pkvc1YcXrtEDOVGiDjovP/a3s6W4nlbohGXEsBJo0JCeeg/UG9A+DEZVDUV9GpklUzA==} - peerDependencies: - '@firebase/app-types': 0.x - - '@firebase/installations@0.6.7': - resolution: {integrity: sha512-i6iGoXRu5mX4rTsiMSSKrgh9pSEzD4hwBEzRh5kEhOTr8xN/wvQcCPZDSMVYKwM2XyCPBLVq0JzjyerwL0Rihg==} - peerDependencies: - '@firebase/app': 0.x - '@firebase/logger@0.4.0': resolution: {integrity: sha512-eRKSeykumZ5+cJPdxxJRgAC3G5NknY2GwEbKfymdnXtnT0Ucm4pspfR6GT4MUQEDuJwRVbVcSx85kgJulMoFFA==} '@firebase/logger@0.4.2': resolution: {integrity: sha512-Q1VuA5M1Gjqrwom6I6NUU4lQXdo9IAQieXlujeHZWvRt1b7qQ0KwBaNAjgxG27jgF9/mUwsNmO8ptBCGVYhB0A==} - '@firebase/messaging-compat@0.2.9': - resolution: {integrity: sha512-5jN6wyhwPgBH02zOtmmoOeyfsmoD7ty48D1m0vVPsFg55RqN2Z3Q9gkZ5GmPklFPjTPLcxB1ObcHOZvThTkm7g==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/messaging-interop-types@0.2.2': - resolution: {integrity: sha512-l68HXbuD2PPzDUOFb3aG+nZj5KA3INcPwlocwLZOzPp9rFM9yeuI9YLl6DQfguTX5eAGxO0doTR+rDLDvQb5tA==} - - '@firebase/messaging@0.12.9': - resolution: {integrity: sha512-IH+JJmzbFGZXV3+TDyKdqqKPVfKRqBBg2BfYYOy7cm7J+SwV+uJMe8EnDKYeQLEQhtpwciPfJ3qQXJs2lbxDTw==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/performance-compat@0.2.7': - resolution: {integrity: sha512-cb8ge/5iTstxfIGW+iiY+7l3FtN8gobNh9JSQNZgLC9xmcfBYWEs8IeEWMI6S8T+At0oHc3lv+b2kpRMUWr8zQ==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/performance-types@0.2.2': - resolution: {integrity: sha512-gVq0/lAClVH5STrIdKnHnCo2UcPLjJlDUoEB/tB4KM+hAeHUxWKnpT0nemUPvxZ5nbdY/pybeyMe8Cs29gEcHA==} - - '@firebase/performance@0.6.7': - resolution: {integrity: sha512-d+Q4ltjdJZqjzcdms5i0UC9KLYX7vKGcygZ+7zHA/Xk+bAbMD2CPU0nWTnlNFWifZWIcXZ/2mAMvaGMW3lypUA==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/remote-config-compat@0.2.7': - resolution: {integrity: sha512-Fq0oneQ4SluLnfr5/HfzRS1TZf1ANj1rWbCCW3+oC98An3nE+sCdp+FSuHsEVNwgMg4Tkwx9Oom2lkKeU+Vn+w==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/remote-config-types@0.3.2': - resolution: {integrity: sha512-0BC4+Ud7y2aPTyhXJTMTFfrGGLqdYXrUB9sJVAB8NiqJswDTc4/2qrE/yfUbnQJhbSi6ZaTTBKyG3n1nplssaA==} - - '@firebase/remote-config@0.4.7': - resolution: {integrity: sha512-5oPNrPFLsbsjpq0lUEIXoDF2eJK7vAbyXe/DEuZQxnwJlfR7aQbtUlEkRgQWcicXpyDmAmDLo7q7lDbCYa6CpA==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/storage-compat@0.3.8': - resolution: {integrity: sha512-qDfY9kMb6Ch2hZb40sBjDQ8YPxbjGOxuT+gU1Z0iIVSSpSX0f4YpGJCypUXiA0T11n6InCXB+T/Dknh2yxVTkg==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/storage-types@0.8.2': - resolution: {integrity: sha512-0vWu99rdey0g53lA7IShoA2Lol1jfnPovzLDUBuon65K7uKG9G+L5uO05brD9pMw+l4HRFw23ah3GwTGpEav6g==} - peerDependencies: - '@firebase/app-types': 0.x - '@firebase/util': 1.x - - '@firebase/storage@0.12.5': - resolution: {integrity: sha512-nGWBOGFNr10j0LA4NJ3/Yh3us/lb0Q1xSIKZ38N6FcS+vY54nqJ7k3zE3PENregHC8+8txRow++A568G3v8hOA==} - peerDependencies: - '@firebase/app': 0.x - '@firebase/util@1.9.3': resolution: {integrity: sha512-DY02CRhOZwpzO36fHpuVysz6JZrscPiBXD0fXp6qSrL9oNOx5KWICKdR95C0lSITzxp0TZosVyHqzatE8JbcjA==} @@ -4422,19 +3874,9 @@ packages: '@firebase/util@1.9.6': resolution: {integrity: sha512-IBr1MZbp4d5MjBCXL3TW1dK/PDXX4yOGbiwRNh1oAbE/+ci5Uuvy9KIrsFYY80as1I0iOaD5oOMA9Q8j4TJWcw==} - '@firebase/vertexai-preview@0.0.1': - resolution: {integrity: sha512-N8m9Xr0YZKy0t9SpQDuHrL2ppEAT/iqf88Y/O00QNA/Td/BMCL8sJ0c+Savh1TVrqh0rNp9n6HkZ39e/O5mwhA==} - engines: {node: '>=18.0.0'} - peerDependencies: - '@firebase/app': 0.x - '@firebase/app-types': 0.x - '@firebase/webchannel-wrapper@0.10.5': resolution: {integrity: sha512-eSkJsnhBWv5kCTSU1tSUVl9mpFu+5NXXunZc83le8GMjMlsWwQArSc7cJJ4yl+aDFY0NGLi0AjZWMn1axOrkRg==} - '@firebase/webchannel-wrapper@1.0.0': - resolution: {integrity: sha512-zuWxyfXNbsKbm96HhXzainONPFqRcoZblQ++e9cAIGUuHfl2cFSBzW01jtesqWG/lqaUyX3H8O1y9oWboGNQBA==} - '@fontsource/fira-mono@4.5.10': resolution: {integrity: sha512-bxUnRP8xptGRo8YXeY073DSpfK74XpSb0ZyRNpHV9WvLnJ7TwPOjZll8hTMin7zLC6iOp59pDZ8EQDj1gzgAQQ==} @@ -4768,6 +4210,10 @@ packages: '@master/colors@2.0.0': resolution: {integrity: sha512-0s4DzBSXthRVCFKkKbGvAioT6oVlN54f9H4MX6GN1YoNG0/x0NECyIv/5Tx9p5nDMr+ClDHSDbQ37DJUp8CHFg==} + '@master/css@2.0.0-rc.38': + resolution: {integrity: sha512-fCPCW4j7YgPpr354C4v9OmsGr/3Ri4cGR1vxpDNIjS7eaptnelWfCTjxjqvoIhs+QOqHJ7ylZsvTY5XJh45h6Q==} + hasBin: true + '@master/normal.css@2.1.1': resolution: {integrity: sha512-u5NQLjTLmhwVzfrro40EfuAtDpYb/HCXEwlsBibyCc9Fpc5IjZVWZDSXpcejYiX7SJUuwdZnlJ+HBBZfBHMqkw==} @@ -4832,9 +4278,6 @@ packages: resolution: {integrity: sha512-HUNETLNvNiC2J+SB/YuRwJA9+agPrc0azSoWVk8H85GC+YE114hcS5JW+dstpKwVerp2xILE3vNWN7IMXP5Q5Q==} engines: {node: ^14.18.0 || >=16.0.0} - '@next/bundle-analyzer@14.2.3': - resolution: {integrity: sha512-Z88hbbngMs7njZKI8kTJIlpdLKYfMSLwnsqYe54AP4aLmgL70/Ynx/J201DQ+q2Lr6FxFw1uCeLGImDrHOl2ZA==} - '@next/env@14.1.3': resolution: {integrity: sha512-VhgXTvrgeBRxNPjyfBsDIMvgsKDxjlpw4IAUsHCX8Gjl1vtHUYRT3+xfQ/wwvLPDd/6kqfLqk9Pt4+7gysuCKQ==} @@ -5358,9 +4801,6 @@ packages: '@polka/url@1.0.0-next.25': resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} - '@popperjs/core@2.11.8': - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - '@protobufjs/aspromise@1.1.2': resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} @@ -5434,10 +4874,6 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' - '@remix-run/router@1.16.1': - resolution: {integrity: sha512-es2g3dq6Nb07iFxGk5GuHN20RwBZOsuDQN7izWIisUcv9r+d2C5jQxqmgkdebXgReWfiyUabcki6Fg77mSNrig==} - engines: {node: '>=14.0.0'} - '@remix-run/router@1.7.2': resolution: {integrity: sha512-7Lcn7IqGMV+vizMPoEl5F0XDshcdDYtMI6uJLQdQz5CfZAwy3vvGKYSUk789qndt5dEC4HfSjviSYlSoHGL2+A==} engines: {node: '>=14'} @@ -5771,14 +5207,6 @@ packages: '@rushstack/eslint-patch@1.7.2': resolution: {integrity: sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==} - '@sapphire/async-queue@1.5.2': - resolution: {integrity: sha512-7X7FFAA4DngXUl95+hYbUF19bp1LGiffjJtu7ygrZrbdCSsdDDBaSjB7Akw0ZbOu6k0xpXyljnJ6/RZUvLfRdg==} - engines: {node: '>=v14.0.0', npm: '>=7.0.0'} - - '@sapphire/shapeshift@3.9.7': - resolution: {integrity: sha512-4It2mxPSr4OGn4HSQWGmhFMsNFGfFVhWeRPCRwbH972Ek2pzfGRZtb0pJ4Ze6oIzcyh2jw7nUDa6qGlWofgd9g==} - engines: {node: '>=v16'} - '@schematics/angular@17.3.0': resolution: {integrity: sha512-QqugP4Uyxk966VaUb/Jk5LQ5rE1BV4v2TmniPZtN3GZ6MDkpvPnFvlysvoq6y+7uiRhCLiT1DsBIwc9vXz3vWA==} engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} @@ -5814,10 +5242,6 @@ packages: resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} engines: {node: '>=10'} - '@sindresorhus/is@5.6.0': - resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} - engines: {node: '>=14.16'} - '@sindresorhus/merge-streams@2.3.0': resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} engines: {node: '>=18'} @@ -5867,84 +5291,6 @@ packages: svelte: ^4.0.0 || ^5.0.0-next.0 vite: ^5.0.0 - '@svgr/babel-plugin-add-jsx-attribute@8.0.0': - resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': - resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': - resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0': - resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-svg-dynamic-title@8.0.0': - resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-svg-em-dimensions@8.0.0': - resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-transform-react-native-svg@8.1.0': - resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-transform-svg-component@8.0.0': - resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} - engines: {node: '>=12'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-preset@8.1.0': - resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/core@8.1.0': - resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} - engines: {node: '>=14'} - - '@svgr/hast-util-to-babel-ast@8.0.0': - resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} - engines: {node: '>=14'} - - '@svgr/plugin-jsx@8.1.0': - resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} - engines: {node: '>=14'} - peerDependencies: - '@svgr/core': '*' - - '@svgr/plugin-svgo@8.1.0': - resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} - engines: {node: '>=14'} - peerDependencies: - '@svgr/core': '*' - - '@svgr/webpack@8.1.0': - resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} - engines: {node: '>=14'} - '@swc-node/core@1.13.0': resolution: {integrity: sha512-lFPD4nmy4ifAOVMChFjwlpXN5KQXvegqeyuzz1KQz42q1lf+cL3Qux1/GteGuZjh8HC+Rj1RdNrHpE/MCfJSTw==} engines: {node: '>= 10'} @@ -6059,10 +5405,6 @@ packages: resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} engines: {node: '>=10'} - '@szmarczak/http-timer@5.0.1': - resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} - engines: {node: '>=14.16'} - '@tabler/icons-react@2.47.0': resolution: {integrity: sha512-iqly2FvCF/qUbgmvS8E40rVeYY7laltc5GUjRxQj59DuX0x/6CpKHTXt86YlI2whg4czvd/c8Ce8YR08uEku0g==} peerDependencies: @@ -6071,9 +5413,6 @@ packages: '@tabler/icons@2.47.0': resolution: {integrity: sha512-4w5evLh+7FUUiA1GucvGj2ReX2TvOjEr4ejXdwL/bsjoSkof6r1gQmzqI+VHrE2CpJpB3al7bCTulOkFa/RcyA==} - '@techor/extend@2.6.7': - resolution: {integrity: sha512-cFJu0y2AavkP0EhlepIoe3Kh7/lHKPzw7yAmELIQsJ1MO1LUkm8GbHdG2WLnI+F7eB+K0vAnZIu9mIiuWZ/xiA==} - '@techor/extend@3.0.18': resolution: {integrity: sha512-kyNNs5iqMUzSdk45mJ74bJcv58KYjjh3/3QM5PALAYa4DLK1yhtBpnsKXGV9XVbLh+FpcJB2D/QXTO/2UZtYFg==} @@ -6212,18 +5551,12 @@ packages: '@types/cacheable-request@6.0.3': resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} - '@types/canvas-confetti@1.6.4': - resolution: {integrity: sha512-fNyZ/Fdw/Y92X0vv7B+BD6ysHL4xVU5dJcgzgxLdGbn8O3PezZNIJpml44lKM0nsGur+o/6+NZbZeNTt00U1uA==} - '@types/caseless@0.12.5': resolution: {integrity: sha512-hWtVTC2q7hc7xZ/RLbxapMvDMgUnDvKvMOpKal4DrMyfGBUfB1oKaZlIRr6mJL+If3bAP6sV/QneGzF6tJjZDg==} '@types/chroma-js@2.4.4': resolution: {integrity: sha512-/DTccpHTaKomqussrn+ciEvfW4k6NAHzNzs/sts1TCqg333qNxOhy8TNIoQCmbGG3Tl8KdEhkGAssb1n3mTXiQ==} - '@types/clone-deep@4.0.4': - resolution: {integrity: sha512-vXh6JuuaAha6sqEbJueYdh5zNBPPgG1OYumuz2UvLvriN6ABHDSW8ludREGWJb1MLIzbwZn4q4zUbUCerJTJfA==} - '@types/color-convert@2.0.3': resolution: {integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==} @@ -6242,9 +5575,6 @@ packages: '@types/connect@3.4.38': resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} - '@types/content-type@1.1.8': - resolution: {integrity: sha512-1tBhmVUeso3+ahfyaKluXe38p+94lovUZdoVfQ3OnJo9uJC42JT7CBoN3k9HYhAae+GwiBYmHu+N9FZhOG+2Pg==} - '@types/conventional-commits-parser@5.0.0': resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==} @@ -6335,15 +5665,9 @@ packages: '@types/jest@29.5.12': resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} - '@types/js-beautify@1.14.3': - resolution: {integrity: sha512-FMbQHz+qd9DoGvgLHxeqqVPaNRffpIu5ZjozwV8hf9JAGpIOzuAf4wGbRSo8LNITHqGjmmVjaMggTT5P4v4IHg==} - '@types/jsdom@20.0.1': resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} - '@types/jsdom@21.1.6': - resolution: {integrity: sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw==} - '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} @@ -6392,9 +5716,6 @@ packages: '@types/mdx@2.0.13': resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} - '@types/mime-types@2.1.4': - resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - '@types/mime@1.3.5': resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} @@ -6407,9 +5728,6 @@ packages: '@types/ms@0.7.34': resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - '@types/negotiator@0.6.3': - resolution: {integrity: sha512-JkXTOdKs5MF086b/pt8C3+yVp3iDUwG635L7oCH6HvJvvr6lSUU5oe/gLXnPEfYRROHjJIPgCV6cuAg8gGkntQ==} - '@types/nlcst@1.0.4': resolution: {integrity: sha512-ABoYdNQ/kBSsLvZAekMhIPMQ3YUZvavStpKYs7BjLLuKVmIMA0LUgZ7b54zzuWJRbHF80v1cNf4r90Vd6eMQDg==} @@ -6440,9 +5758,6 @@ packages: '@types/pretty-hrtime@1.0.3': resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} - '@types/prismjs@1.26.4': - resolution: {integrity: sha512-rlAnzkW2sZOjbqZ743IHUhFcvzaGbqijwOu8QZnZCjfQzBqFE3s4lOTJEsxikImav9uzz/42I+O7YUs1mWgMlg==} - '@types/prop-types@15.7.11': resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} @@ -6461,9 +5776,6 @@ packages: '@types/react-dom@18.2.22': resolution: {integrity: sha512-fHkBXPeNtfvri6gdsMYyW+dW7RXFo6Ad09nLFK0VQWR7yGLai/Cyvyj696gbwYvBnhGtevUG9cET0pmUbMtoPQ==} - '@types/react-portal@4.0.7': - resolution: {integrity: sha512-3zQJL6Pqcq7d73+cakVkZDqAYGFBo37XXPfahjhdScr9EdYPlf9evYilL38Fpzs1YGWz7F2SkPtN6+ygTO7ymg==} - '@types/react@18.2.66': resolution: {integrity: sha512-OYTmMI4UigXeFMF/j4uv0lBBEbongSgptPrHBxqME44h9+yNov+oL6Z3ocJKo0WyXR84sQUNeyIp9MRfckvZpg==} @@ -6518,18 +5830,12 @@ packages: '@types/supports-color@8.1.3': resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==} - '@types/throttle-debounce@5.0.2': - resolution: {integrity: sha512-pDzSNulqooSKvSNcksnV72nk8p7gRqN8As71Sp28nov1IgmPKWbOEIwAWvBME5pPTtaXJAvG3O4oc76HlQ4kqQ==} - '@types/tough-cookie@4.0.5': resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} '@types/trusted-types@2.0.7': resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} - '@types/ungap__structured-clone@1.2.0': - resolution: {integrity: sha512-ZoaihZNLeZSxESbk9PUAPZOlSpcKx81I1+4emtULDVmBLkYutTcMlCj2K9VNlf9EWODxdO6gkAqEaLorXwZQVA==} - '@types/unist@2.0.10': resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} @@ -6822,17 +6128,6 @@ packages: '@vanilla-extract/private@1.0.3': resolution: {integrity: sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==} - '@vercel/analytics@1.2.2': - resolution: {integrity: sha512-X0rctVWkQV1e5Y300ehVNqpOfSOufo7ieA5PIdna8yX/U7Vjz0GFsGf4qvAhxV02uQ2CVt7GYcrFfddXXK2Y4A==} - peerDependencies: - next: '>= 13' - react: ^18 || ^19 - peerDependenciesMeta: - next: - optional: true - react: - optional: true - '@vercel/nft@0.26.4': resolution: {integrity: sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==} engines: {node: '>=16'} @@ -6924,10 +6219,6 @@ packages: '@vitest/utils@1.6.0': resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==} - '@vladfrangu/async_event_emitter@2.2.4': - resolution: {integrity: sha512-ButUPz9E9cXMLgvAW8aLAKKJJsPu1dY1/l/E8xzLFuysowXygs6GBcyunK9rnGC4zTsnIc2mQo71rGw9U+Ykug==} - engines: {node: '>=v14.0.0', npm: '>=7.0.0'} - '@volar/language-core@1.11.1': resolution: {integrity: sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==} @@ -7161,10 +6452,6 @@ packages: resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==} engines: {node: '>=8.9'} - adm-zip@0.5.12: - resolution: {integrity: sha512-6TVU49mK6KZb4qG6xWaaM4C7sA/sgUMLy/JYMOzkcp3BvVLpW0fXDFQiIzAuxFCt/2+xD7fNIiPFAoLZPhVNLQ==} - engines: {node: '>=6.0'} - agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} @@ -7208,9 +6495,6 @@ packages: ajv@8.13.0: resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==} - animated-scroll-to@2.3.0: - resolution: {integrity: sha512-PT/5MSKCWQaK2kuOl2HT2KJMuJEvUS4/TgMhWy82c2EmF74/CIkvPBPKOvd8nMYP6Higo7xCn49/iSW9BccMoQ==} - ansi-align@3.0.1: resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} @@ -7227,10 +6511,6 @@ packages: engines: {'0': node >= 0.8.0} hasBin: true - ansi-regex@2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} - ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -7242,10 +6522,6 @@ packages: ansi-sequence-parser@1.1.1: resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==} - ansi-styles@2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} - engines: {node: '>=0.10.0'} - ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} @@ -7668,14 +6944,6 @@ packages: resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} engines: {node: '>=10.6.0'} - cacheable-lookup@7.0.0: - resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} - engines: {node: '>=14.16'} - - cacheable-request@10.2.14: - resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==} - engines: {node: '>=14.16'} - cacheable-request@7.0.4: resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} engines: {node: '>=8'} @@ -7719,9 +6987,6 @@ packages: caniuse-lite@1.0.30001616: resolution: {integrity: sha512-RHVYKov7IcdNjVHJFNY/78RdG4oGVjbayxv8u5IO74Wv7Hlq4PnJE6mo/OjFijjVFNy5ijnCt6H3IIo4t+wfEw==} - canvas-confetti@1.9.3: - resolution: {integrity: sha512-rFfTURMvmVEX1gyXFgn5QMn81bYk70qa0HLzcIOSVEyl57n6o9ItHeBtUSWdvKAPY0xlvBHno4/v3QPrT83q9g==} - catharsis@0.9.0: resolution: {integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==} engines: {node: '>= 10'} @@ -7733,10 +6998,6 @@ packages: resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==} engines: {node: '>=4'} - chalk@1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} - engines: {node: '>=0.10.0'} - chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} @@ -8137,15 +7398,6 @@ packages: cosmiconfig: '>=8.2' typescript: '>=4' - cosmiconfig@8.3.6: - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true - cosmiconfig@9.0.0: resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} engines: {node: '>=14'} @@ -8158,19 +7410,6 @@ packages: countup.js@2.8.0: resolution: {integrity: sha512-f7xEhX0awl4NOElHulrl4XRfKoNH3rB+qfNSZZyjSZhaAoUk6elvhH+MNxMmlmuUJ2/QNTWPSA7U4mNtIAKljQ==} - crawlee@3.10.0: - resolution: {integrity: sha512-5W09jLOP1qv/2NJKCWX5zdln5g6jG7qZaJAj1eG578AUI8YtUY46syRv0XqjLSyJ9gihJ5dp6d2is5Y5wcnW0Q==} - engines: {node: '>=16.0.0'} - hasBin: true - peerDependencies: - playwright: '*' - puppeteer: '*' - peerDependenciesMeta: - playwright: - optional: true - puppeteer: - optional: true - crc-32@1.2.2: resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} engines: {node: '>=0.8'} @@ -8219,15 +7458,6 @@ packages: uWebSockets.js: optional: true - css-color-list@0.0.1: - resolution: {integrity: sha512-+ArYbB9GT3tR/1ocPwgX2e9gwZiR3vi0+x0/HsQ1iB/9+tkugLJaPFO37s8zmNNc5vpsr8Kc7mQ78z83JwgfUA==} - - css-color-names@0.0.1: - resolution: {integrity: sha512-i7o8lqlrmiG/EUzlBftBncsrkYgBCfCI9X6plNxdyXMZlMNd4hPX7u/o7YLH9vwXPPPAr+BUs3R0oto+lzjbyA==} - - css-color-names@1.0.1: - resolution: {integrity: sha512-/loXYOch1qU1biStIFsHH8SxTmOseh1IJqFvy8IujXOm1h+QjUdDhkzOrR5HG8K8mlxREj0yfi8ewCHx0eMxzA==} - css-declaration-sorter@7.1.1: resolution: {integrity: sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==} engines: {node: ^14 || ^16 || >=18} @@ -8311,9 +7541,6 @@ packages: csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - csv-stringify@6.5.0: - resolution: {integrity: sha512-edlXFVKcUx7r8Vx5zQucsuMg4wb/xT6qyz+Sr1vnLrdXqlLD1+UKyWNyZ9zn6mUW1ewmGxrpVwAcChGF0HQ/2Q==} - culori@4.0.1: resolution: {integrity: sha512-LSnjA6HuIUOlkfKVbzi2OlToZE8OjFi667JWN9qNymXVXzGDmvuP60SSgC+e92sd7B7158f7Fy3Mb6rXS5EDPw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -8360,9 +7587,6 @@ packages: resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==} engines: {node: '>=4.0'} - dayjs@1.11.11: - resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} - db0@0.1.4: resolution: {integrity: sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==} peerDependencies: @@ -8384,9 +7608,6 @@ packages: resolution: {integrity: sha512-EBtfUhVX23CE9GR6m+F8WPeImEE4hR/FW9RkK0PMl9V1t283s0elqsTD8EZjaKX28SY1BW2rYfCgNsAYdpamUw==} engines: {node: '>=0.11.0'} - debounce@1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} - debug@2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: @@ -8478,9 +7699,6 @@ packages: resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} engines: {node: '>= 10'} - default-passive-events@2.0.0: - resolution: {integrity: sha512-eMtt76GpDVngZQ3ocgvRcNCklUMwID1PaNbCNxfpDXuiOXttSh0HzBbda1HU9SIUsDc02vb7g9+3I5tlqe/qMQ==} - defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} @@ -8658,14 +7876,6 @@ packages: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} - dot-prop@6.0.1: - resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} - engines: {node: '>=10'} - - dot-prop@7.2.0: - resolution: {integrity: sha512-Ol/IPXUARn9CSbkrdV4VJo7uCy1I3VuSiWCaFSg+8BdUOzF9n3jefIpcgAydvUZbTdEBZs2vEiTiS9m61ssiDA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dot-prop@8.0.2: resolution: {integrity: sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==} engines: {node: '>=16'} @@ -9128,10 +8338,6 @@ packages: esm-env@1.0.0: resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==} - esm@3.2.25: - resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} - engines: {node: '>=6'} - espree@10.0.1: resolution: {integrity: sha512-MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -9216,9 +8422,6 @@ packages: resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==} engines: {node: '>= 0.8'} - event-stream@3.3.4: - resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} - event-target-shim@5.0.1: resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} engines: {node: '>=6'} @@ -9348,11 +8551,6 @@ packages: fd-slicer@1.1.0: resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} - figlet@1.7.0: - resolution: {integrity: sha512-gO8l3wvqo0V7wEFLXPbkX83b7MVjRrk1oRLfYlZXol8nEpb/ON9pcKLI4qpBv5YtOTfrINtqb7b40iYY2FTWFg==} - engines: {node: '>= 0.4.0'} - hasBin: true - figures@3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} @@ -9365,19 +8563,9 @@ packages: resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} engines: {node: '>=16.0.0'} - file-loader@6.2.0: - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - file-uri-to-path@1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} - filesize@10.1.2: - resolution: {integrity: sha512-Dx770ai81ohflojxhU+oG+Z2QGvKdYxgEr9OSA8UVrqhwNHjfH9A8f5NKfg83fEH8ZFA5N5llJo5T3PIoZ4CRA==} - engines: {node: '>= 10.4.0'} - fill-range@7.0.1: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} engines: {node: '>=8'} @@ -9413,29 +8601,10 @@ packages: find-yarn-workspace-root2@1.2.16: resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} - fingerprint-generator@2.1.51: - resolution: {integrity: sha512-3lMIsP83DweaavTRW5TN0YXxi1n3RZit7B2sh/invInZRHDzYLFKhDpZ9X307I/FOUM2itdX1cT87p76uV54MQ==} - engines: {node: '>=16.0.0'} - - fingerprint-injector@2.1.51: - resolution: {integrity: sha512-Ov9iVw/Bwmzr113ie3O5p3Nsd7lKc9kV6A7pRngBj0H0IubeFkAImYioDj+Qu6dn0WIgZwm7RjRHovYoCEKqSw==} - engines: {node: '>=16.0.0'} - peerDependencies: - playwright: ^1.22.2 - puppeteer: '>= 9.x' - peerDependenciesMeta: - playwright: - optional: true - puppeteer: - optional: true - firebase-admin@11.11.1: resolution: {integrity: sha512-UyEbq+3u6jWzCYbUntv/HuJiTixwh36G1R9j0v71mSvGAx/YZEWEW7uSGLYxBYE6ckVRQoKMr40PYUEzrm/4dg==} engines: {node: '>=14'} - firebase@10.12.1: - resolution: {integrity: sha512-B/R3BX26OAgreA64JN0lYspYRHMS36E19/Sv9WsyQu1RqPGBzWkBlt1RW6+38SdtMDlAnk3ibKL/SRSQHb1xRw==} - flat-cache@3.2.0: resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} engines: {node: ^10.12.0 || >=12.0.0} @@ -9467,10 +8636,6 @@ packages: resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} engines: {node: '>=14'} - form-data-encoder@2.1.4: - resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} - engines: {node: '>= 14.17'} - form-data@2.5.1: resolution: {integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==} engines: {node: '>= 0.12'} @@ -9494,9 +8659,6 @@ packages: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} - from@0.1.7: - resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} - fs-constants@1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} @@ -9549,10 +8711,6 @@ packages: functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - fuse.js@6.6.2: - resolution: {integrity: sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==} - engines: {node: '>=10'} - gauge@3.0.2: resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} engines: {node: '>=10'} @@ -9573,9 +8731,6 @@ packages: resolution: {integrity: sha512-Jh/AIwwgaxan+7ZUUmRLCjtchyDiqh4KjBJ5tW3plBZb5iL/BPcso8A5DlzeD9qlw0duCamnNdpFjxwaT0KyKg==} engines: {node: '>=14'} - generative-bayesian-network@2.1.51: - resolution: {integrity: sha512-QClDFgAlz6T064oH2TAgev5wNWJJBvJ6O9cyHkambU/Y0pCqJ7pOuX5A3ht1SBxNfTmG3JFFSqjH6TwHyfOJEg==} - generic-names@4.0.0: resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} @@ -9587,10 +8742,6 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - get-contrast@3.0.0: - resolution: {integrity: sha512-B3uK3WpKz/4bHMCMSmi4UfZ/Gk8qqVHQXMk6ayhx/x5cCjK3hl5kvX4POTauVQK5kdzWNfbyd5QjwOxERSwKlQ==} - hasBin: true - get-east-asian-width@1.2.0: resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} engines: {node: '>=18'} @@ -9688,9 +8839,6 @@ packages: engines: {node: '>=16 || 14 >=14.17'} hasBin: true - glob@5.0.15: - resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==} - glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} @@ -9702,12 +8850,6 @@ packages: resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} engines: {node: '>=18'} - global-jsdom@9.2.0: - resolution: {integrity: sha512-mspbiuYwcl5nbl2VRvHNaF4SzSmSMCTJGXXatzHYZAf6u3rO/aLXQICbVNTVI+vN8jaq1s4QcvKYnWhVepSbFQ==} - engines: {node: '>=16'} - peerDependencies: - jsdom: '>=23 <24' - globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} @@ -9771,18 +8913,10 @@ packages: gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - got-scraping@4.0.5: - resolution: {integrity: sha512-g+cMC5WOVOHd6S3JdTtm+zCwpWdd3jA1MYnkOwVF7MpbKP7EWv7ORUfXDcG3gTANJ1zYj9XffCrAjbH8ssHmfw==} - engines: {node: '>=16'} - got@11.8.6: resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} engines: {node: '>=10.19.0'} - got@13.0.0: - resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==} - engines: {node: '>=16'} - graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} @@ -9805,10 +8939,6 @@ packages: resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} hasBin: true - gzip-size@6.0.0: - resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} - engines: {node: '>=10'} - gzip-size@7.0.0: resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -9819,10 +8949,6 @@ packages: handle-thing@2.0.1: resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} - has-ansi@2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} - engines: {node: '>=0.10.0'} - has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} @@ -9865,9 +8991,6 @@ packages: hast-util-from-parse5@8.0.1: resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} - hast-util-heading-rank@3.0.0: - resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==} - hast-util-parse-selector@3.1.1: resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} @@ -9901,9 +9024,6 @@ packages: hast-util-to-parse5@8.0.0: resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} - hast-util-to-string@3.0.0: - resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==} - hast-util-whitespace@2.0.1: resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} @@ -9920,10 +9040,6 @@ packages: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true - header-generator@2.1.51: - resolution: {integrity: sha512-3KdYYOPcFaQ8539nxxsuR8Pr1PYw/rx2ju40rVTKVR0PBKVnVPaz1acBzsLfofYlWNZgf/2rJcd0trj9Ss5kuw==} - engines: {node: '>=16.0.0'} - hookable@5.5.3: resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} @@ -10043,10 +9159,6 @@ packages: resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} engines: {node: '>=10.19.0'} - http2-wrapper@2.2.1: - resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} - engines: {node: '>=10.19.0'} - https-proxy-agent@5.0.1: resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} engines: {node: '>= 6'} @@ -10096,9 +9208,6 @@ packages: idb@7.1.1: resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} - idcac-playwright@0.1.2: - resolution: {integrity: sha512-1YeecryHQC3SzDagSjqJTCDDs6F0x/9LaR8TPIN6x60myYAs7oALxZJdwNITeoR3wL0KeTZF3knVTRJ4gki5NQ==} - ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} @@ -10233,9 +9342,6 @@ packages: is-alphanumerical@2.0.1: resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} - is-any-array@2.0.1: - resolution: {integrity: sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ==} - is-arguments@1.1.1: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} @@ -10261,9 +9367,6 @@ packages: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} engines: {node: '>=8'} - is-blank@2.1.0: - resolution: {integrity: sha512-SOPvTu4ZRlJOSBBYV7+6D6wN+2UcN6IJCaQ2Yeu3BQ3oolsD4dqF95sz52TCSgMVCLR1osLOXIiFsO2TKp0GZA==} - is-boolean-object@1.1.2: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} @@ -10377,9 +9480,6 @@ packages: is-module@1.0.0: resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - is-named-css-color@1.0.0: - resolution: {integrity: sha512-8U8MlUMBJ3RiDpbYY5QGmIxGKGmK8c96bnESYyY0rA4BwqN7EPOF9gG/TFktKd4J+p5isdEQ+1x5cwOkSUWCsw==} - is-negative-zero@2.0.3: resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} engines: {node: '>= 0.4'} @@ -10420,10 +9520,6 @@ packages: resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} engines: {node: '>=0.10.0'} - is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} - is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} @@ -10505,10 +9601,6 @@ packages: is-what@3.14.1: resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} - is-whitespace@0.3.0: - resolution: {integrity: sha512-RydPhl4S6JwAyj0JJjshWJEFG6hNye3pZFBRZaTUfZFwGHxzppNaNOVgQuS/E/SlhrApuMXrpnK1EEIXfdo3Dg==} - engines: {node: '>=0.10.0'} - is-wsl@2.2.0: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} engines: {node: '>=8'} @@ -10748,9 +9840,6 @@ packages: jose@4.15.5: resolution: {integrity: sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==} - jquery@3.7.1: - resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==} - js-beautify@1.15.1: resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} engines: {node: '>=14'} @@ -10923,9 +10012,6 @@ packages: engines: {node: '>= 10'} hasBin: true - kebab-case@1.0.2: - resolution: {integrity: sha512-7n6wXq4gNgBELfDCpzKc+mRrZFs7D+wgfF5WRFLNAr4DA/qtr9Js8uOAVAfHhuLMfAcQ0pRKqbpjx+TcJVdE1Q==} - keytar@7.9.0: resolution: {integrity: sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ==} @@ -11024,9 +10110,6 @@ packages: resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - linkedom@0.18.0: - resolution: {integrity: sha512-Xtu+w437ENHrgggnSHssua47vYXX/a/MzNdo+AR3UuWoOAxGZNwDSvjRPnPbVRFoygT990HS+7BDVBE1MK6FLQ==} - linkify-it@3.0.3: resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==} @@ -11200,10 +10283,6 @@ packages: resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} engines: {node: '>=8'} - lowercase-keys@3.0.0: - resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - lru-cache@10.2.0: resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} engines: {node: 14 || >=16.14} @@ -11262,9 +10341,6 @@ packages: makeerror@1.0.12: resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} - map-stream@0.1.0: - resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} - markdown-extensions@1.1.1: resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} engines: {node: '>=0.10.0'} @@ -11304,9 +10380,6 @@ packages: mdast-util-find-and-replace@2.2.2: resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} - mdast-util-find-and-replace@3.0.1: - resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} - mdast-util-from-markdown@0.8.5: resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==} @@ -11322,39 +10395,21 @@ packages: mdast-util-gfm-autolink-literal@1.0.3: resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} - mdast-util-gfm-autolink-literal@2.0.0: - resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==} - mdast-util-gfm-footnote@1.0.2: resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} - mdast-util-gfm-footnote@2.0.0: - resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} - mdast-util-gfm-strikethrough@1.0.3: resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} - mdast-util-gfm-strikethrough@2.0.0: - resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} - mdast-util-gfm-table@1.0.7: resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} - mdast-util-gfm-table@2.0.0: - resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} - mdast-util-gfm-task-list-item@1.0.2: resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} - mdast-util-gfm-task-list-item@2.0.0: - resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} - mdast-util-gfm@2.0.2: resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} - mdast-util-gfm@3.0.0: - resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} - mdast-util-mdx-expression@1.3.2: resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} @@ -11415,9 +10470,6 @@ packages: mdast-util-to-string@4.0.0: resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} - mdast-util-toc@7.0.1: - resolution: {integrity: sha512-mBuhuKtP8F/5vVLNJKeC1fs1W5w2sZqB1uUvKwQK9qftSiBILVkQjKQ8aLVrhIEFPGwbMKCVCB3WAAW+BoVPxg==} - mdn-data@2.0.28: resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} @@ -11478,45 +10530,24 @@ packages: micromark-extension-gfm-autolink-literal@1.0.5: resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} - micromark-extension-gfm-autolink-literal@2.0.0: - resolution: {integrity: sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==} - micromark-extension-gfm-footnote@1.1.2: resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} - micromark-extension-gfm-footnote@2.0.0: - resolution: {integrity: sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==} - micromark-extension-gfm-strikethrough@1.0.7: resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} - micromark-extension-gfm-strikethrough@2.0.0: - resolution: {integrity: sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==} - micromark-extension-gfm-table@1.0.7: resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} - micromark-extension-gfm-table@2.0.0: - resolution: {integrity: sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==} - micromark-extension-gfm-tagfilter@1.0.2: resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} - micromark-extension-gfm-tagfilter@2.0.0: - resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} - micromark-extension-gfm-task-list-item@1.0.5: resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} - micromark-extension-gfm-task-list-item@2.0.1: - resolution: {integrity: sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==} - micromark-extension-gfm@2.0.3: resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} - micromark-extension-gfm@3.0.0: - resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} - micromark-extension-mdx-expression@1.0.8: resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==} @@ -11733,10 +10764,6 @@ packages: resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} engines: {node: '>=10'} - mimic-response@4.0.0: - resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} @@ -11842,21 +10869,6 @@ packages: typescript: optional: true - ml-array-max@1.2.4: - resolution: {integrity: sha512-BlEeg80jI0tW6WaPyGxf5Sa4sqvcyY6lbSn5Vcv44lp1I2GR6AWojfUvLnGTNsIXrZ8uqWmo8VcG1WpkI2ONMQ==} - - ml-array-min@1.2.3: - resolution: {integrity: sha512-VcZ5f3VZ1iihtrGvgfh/q0XlMobG6GQ8FsNyQXD3T+IlstDv85g8kfV0xUG1QPRO/t21aukaJowDzMTc7j5V6Q==} - - ml-array-rescale@1.3.7: - resolution: {integrity: sha512-48NGChTouvEo9KBctDfHC3udWnQKNKEWN0ziELvY3KG25GR5cA8K8wNVzracsqSW1QEkAXjTNx+ycgAv06/1mQ==} - - ml-logistic-regression@2.0.0: - resolution: {integrity: sha512-xHhB91ut8GRRbJyB1ZQfKsl1MHmE1PqMeRjxhks96M5BGvCbC9eEojf4KgRMKM2LxFblhVUcVzweAoPB48Nt0A==} - - ml-matrix@6.11.0: - resolution: {integrity: sha512-7jr9NmFRkaUxbKslfRu3aZOjJd2LkSitCGv+QH9PF0eJoEG7jIpjXra1Vw8/kgao8+kHCSsJONG6vfWmXQ+/Eg==} - mlly@1.6.1: resolution: {integrity: sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==} @@ -12126,10 +11138,6 @@ packages: resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} engines: {node: '>=10'} - normalize-url@8.0.1: - resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==} - engines: {node: '>=14.16'} - npm-bundled@2.0.1: resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -12324,10 +11332,6 @@ packages: resolution: {integrity: sha512-ZD6dgSZi0u1QCP55g8/2yS5hNJfIpgqsSGHLxxdOjvY7eIrXzj271FJEQw33VwsZ6RCtO/NOuhxa7GBWmEudyA==} hasBin: true - opener@1.5.2: - resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} - hasBin: true - optionator@0.8.3: resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} engines: {node: '>= 0.8.0'} @@ -12363,22 +11367,10 @@ packages: outdent@0.8.0: resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==} - ow@0.28.2: - resolution: {integrity: sha512-dD4UpyBh/9m4X2NVjA+73/ZPBRF+uF4zIMFvvQsabMiEK8x41L3rQ8EENOi35kyyoaJwNxEeJcP6Fj1H4U409Q==} - engines: {node: '>=12'} - - ow@1.1.1: - resolution: {integrity: sha512-sJBRCbS5vh1Jp9EOgwp1Ws3c16lJrUkJYlvWTYC03oyiYVwS/ns7lKRWow4w4XjDyTrA2pplQv4B2naWSR6yDA==} - engines: {node: '>=14.16'} - p-cancelable@2.1.1: resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} engines: {node: '>=8'} - p-cancelable@3.0.0: - resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} - engines: {node: '>=12.20'} - p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -12454,10 +11446,6 @@ packages: resolution: {integrity: sha512-FX4TpKXX6CesSm1D9y5IcF0/KdDjP/w0c1AKqreGZne2QyWiPWHfoApMaJl8zvH3DTh+xtVmlLIUqSSoPYjqLQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - parent-require@1.0.0: - resolution: {integrity: sha512-2MXDNZC4aXdkkap+rBBMv0lUsfJqvX5/2FiYYnfCnorZt3Pk06/IOR5KeaoghgS2w07MLWgjbsnyaq6PdHn2LQ==} - engines: {node: '>= 0.4.0'} - parse-entities@2.0.0: resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} @@ -12588,9 +11576,6 @@ packages: pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} - pause-stream@0.0.11: - resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} - peek-stream@1.1.3: resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} @@ -12977,9 +11962,6 @@ packages: resolution: {integrity: sha512-ASJqOugUF1bbzI35STMBUpZqdfYKlJugy6JBziGi2EE+AL5JPJGSzvpeVXojxrr0ViUYoToUjb5kjSEGf7Y83Q==} engines: {node: '>=14.16'} - prism-svelte@0.5.0: - resolution: {integrity: sha512-db91Bf3pRGKDPz1lAqLFSJXeW13mulUJxhycysFpfXV5MIK7RgWWK2E5aPAa71s8TCzQUXxF5JOV42/iOs6QkA==} - prismjs@1.29.0: resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} engines: {node: '>=6'} @@ -13025,9 +12007,6 @@ packages: prop-types@15.8.1: resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} - proper-lockfile@4.1.2: - resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==} - property-information@6.4.1: resolution: {integrity: sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w==} @@ -13067,10 +12046,6 @@ packages: resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==} engines: {node: '>= 14'} - proxy-chain@2.4.0: - resolution: {integrity: sha512-fbFfzJDxWcLYYvI+yx0VXjTgJPfXsGdhFnCJN4rq/5GZSgn9CQpRgm1KC2iEJfhL8gkeZCWJYBAllmGMT356cg==} - engines: {node: '>=14'} - proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} @@ -13140,10 +12115,6 @@ packages: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} engines: {node: '>=10'} - quick-lru@7.0.0: - resolution: {integrity: sha512-MX8gB7cVYTrYcFfAnfLlhRd0+Toyl8yX8uBx1MrX7K0jegiz9TumwOK27ldXrgDlHRdVi+MqU9Ssw6dr4BNreg==} - engines: {node: '>=18'} - radix3@1.1.1: resolution: {integrity: sha512-yUUd5VTiFtcMEx0qFUxGAv5gbMc1un4RvEO1JZdP7ZUl/RHygZK6PknIKntmQRZxnMY3ZXD2ISaw1ij8GYW1yg==} @@ -13158,12 +12129,6 @@ packages: resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} engines: {node: '>= 0.8'} - raw-loader@4.0.2: - resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - rc9@2.1.1: resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==} @@ -13186,9 +12151,6 @@ packages: peerDependencies: react: ^18.3.1 - react-fast-compare@3.2.2: - resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} - react-intersection-observer@9.8.1: resolution: {integrity: sha512-QzOFdROX8D8MH3wE3OVKH0f3mLjKTtEN1VX/rkNuECCff+aKky0pIjulDhr3Ewqj5el/L+MhBkM3ef0Tbt+qUQ==} peerDependencies: @@ -13207,13 +12169,6 @@ packages: react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - react-popper@2.3.0: - resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} - peerDependencies: - '@popperjs/core': ^2.0.0 - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 - react-refresh@0.14.0: resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} engines: {node: '>=0.10.0'} @@ -13225,25 +12180,12 @@ packages: react: '>=16.8' react-dom: '>=16.8' - react-router-dom@6.23.1: - resolution: {integrity: sha512-utP+K+aSTtEdbWpC+4gxhdlPFwuEfDKq8ZrPFU65bbRJY+l706qjR7yaidBpo3MSeA/fzwbXWbKBI6ftOnP3OQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' - react-router@6.14.2: resolution: {integrity: sha512-09Zss2dE2z+T1D03IheqAFtK4UzQyX8nFPWx6jkwdYzGLXd5ie06A6ezS2fO6zJfEb/SpG6UocN2O1hfD+2urQ==} engines: {node: '>=14'} peerDependencies: react: '>=16.8' - react-router@6.23.1: - resolution: {integrity: sha512-fzcOaRF69uvqbbM7OhvQyBTFDVrrGlsFdS3AL+1KfIBtGETibHzi3FkoTRyiDJnWNc2VxrfvR+657ROHjaNjqQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' - react@18.2.0: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} @@ -13351,9 +12293,6 @@ packages: rehype-raw@6.1.1: resolution: {integrity: sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==} - rehype-slug@6.0.0: - resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==} - rehype-stringify@9.0.4: resolution: {integrity: sha512-Uk5xu1YKdqobe5XpSskwPvo1XeHUUucWEQSl8hTrXt5selvca1e8K1EZ37E6YoZ4BT8BCqCdVfQW7OfHfthtVQ==} @@ -13364,18 +12303,12 @@ packages: resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} engines: {node: '>= 0.10'} - relative-luminance@2.0.1: - resolution: {integrity: sha512-wFuITNthJilFPwkK7gNJcULxXBcfFZvZORsvdvxeOdO44wCeZnuQkf3nFFzOR/dpJNxYsdRZJLsepWbyKhnMww==} - remark-frontmatter@4.0.1: resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==} remark-gfm@3.0.1: resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} - remark-gfm@4.0.0: - resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} - remark-mdx-frontmatter@1.1.1: resolution: {integrity: sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==} engines: {node: '>=12.2.0'} @@ -13401,9 +12334,6 @@ packages: remark-rehype@9.1.0: resolution: {integrity: sha512-oLa6YmgAYg19zb0ZrBACh40hpBLteYROaPLhBXzLgjqyHQrN+gVP9N/FJvfzuNNuzCutktkroXEZBrxAxKhh7Q==} - remark-slug@7.0.1: - resolution: {integrity: sha512-NRvYePr69LdeCkEGwL4KYAmq7kdWG5rEavCXMzUR4qndLoXHJAOLSUmPY6Qm4NJfKix7/EmgObyVaYivONAFhg==} - remark-smartypants@2.1.0: resolution: {integrity: sha512-qoF6Vz3BjU2tP6OfZqHOvCU0ACmu/6jhGaINSQRI9mM7wCxNQTKB3JUAN4SVoN2ybElEDTxBIABRep7e569iJw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -13414,12 +12344,6 @@ packages: remark-stringify@11.0.0: resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} - remark-toc@9.0.0: - resolution: {integrity: sha512-KJ9txbo33GjDAV1baHFze7ij4G8c7SGYoY8Kzsm2gzFpbhL/bSoVpMMzGa3vrNDSWASNd/3ppAqL7cP2zD6JIA==} - - remark@15.0.1: - resolution: {integrity: sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==} - renderkid@3.0.0: resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} @@ -13485,10 +12409,6 @@ packages: responselike@2.0.1: resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} - responselike@3.0.0: - resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} - engines: {node: '>=14.16'} - restore-cursor@3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} @@ -13532,10 +12452,6 @@ packages: rfdc@1.3.1: resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==} - rgb@0.1.0: - resolution: {integrity: sha512-F49dXX73a92N09uQkfCp2QjwXpmJcn9/i9PvjmwsSIXUGqRLCf/yx5Q9gRxuLQTq248kakqQuc8GX/U/CxSqlA==} - hasBin: true - rimraf@2.7.1: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true @@ -13544,10 +12460,6 @@ packages: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true - robots-parser@3.0.1: - resolution: {integrity: sha512-s+pyvQeIKIZ0dx5iJiQk1tPLJAWln39+MI5jtM8wnyws+G5azk+dMnMX0qfbqNetKKNgcWWOdi0sfm+FbQbgdQ==} - engines: {node: '>=10.0.0'} - rollup-plugin-dts@6.1.0: resolution: {integrity: sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==} engines: {node: '>=16'} @@ -13749,9 +12661,6 @@ packages: server-destroy@1.0.1: resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==} - server-only@0.0.1: - resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==} - set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} @@ -13870,10 +12779,6 @@ packages: resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} engines: {node: '>=14.16'} - slugify@1.6.6: - resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==} - engines: {node: '>=8.0.0'} - smart-buffer@4.2.0: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} @@ -13881,9 +12786,6 @@ packages: smob@1.4.1: resolution: {integrity: sha512-9LK+E7Hv5R9u4g4C3p+jjLstaLe11MDsL21UpYaCNmapvMkYhqCV4A/f/3gyH8QjMyh6l68q9xC85vihY9ahMQ==} - snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} - socket.io-adapter@2.5.4: resolution: {integrity: sha512-wDNHGXGewWAjQPt3pyeYBtpWSq9cLE5UW1ZUPL/2eGK9jtse/FpXib7epSTsz0Q0m+6sg6Y4KtcFTlah1bdOVg==} @@ -13948,9 +12850,6 @@ packages: space-separated-tokens@2.0.2: resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} - spawn-sync@2.0.0: - resolution: {integrity: sha512-AGXIhH/XZVinFewojYTsG8uapHX2e7MjtFbmibvK9qqG4qGd9b6jelU1sTkCA0RVGHvN9exJYTBVbF1Ls2f69g==} - spawnd@9.0.2: resolution: {integrity: sha512-nl8DVHEDQ57IcKakzpjanspVChkMpGLuVwMR/eOn9cXE55Qr6luD2Kn06sA0ootRMdgrU4tInN6lA6ohTNvysw==} engines: {node: '>=16'} @@ -13978,9 +12877,6 @@ packages: resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} engines: {node: '>= 10.x'} - split@0.3.3: - resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} - sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} @@ -14039,18 +12935,9 @@ packages: resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} engines: {node: '>=4', npm: '>=6'} - stream-chain@2.2.5: - resolution: {integrity: sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==} - - stream-combiner@0.0.4: - resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} - stream-events@1.0.5: resolution: {integrity: sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==} - stream-json@1.8.0: - resolution: {integrity: sha512-HZfXngYHUAr1exT4fxlbc1IOce1RYxp2ldeaf97LYCOPSoOqY/1Psp7iGvpb+6JIOgkra9zDYnPX01hGAHzEPw==} - stream-parser@0.3.1: resolution: {integrity: sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ==} @@ -14071,10 +12958,6 @@ packages: streamx@2.16.1: resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==} - string-comparison@1.3.0: - resolution: {integrity: sha512-46aD+slEwybxAMPRII83ATbgMgTiz5P8mVd7Z6VJsCzSHFjdt1hkAVLeFxPIyEb11tc6ihpJTlIqoO0MCF6NPw==} - engines: {node: ^16.0.0 || >=18.0.0} - string-hash@1.1.3: resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} @@ -14138,10 +13021,6 @@ packages: stringify-entities@4.0.4: resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} - strip-ansi@3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} - engines: {node: '>=0.10.0'} - strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} @@ -14233,10 +13112,6 @@ packages: suf-log@2.5.3: resolution: {integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==} - supports-color@2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} - engines: {node: '>=0.8.0'} - supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} @@ -14325,9 +13200,6 @@ packages: resolution: {integrity: sha512-d8+wsh5TfPwqVzbm4/HCXC783/KPHV60NvwitJnyTA5lWn1elhXMNWhXGCJ7PwPa8qFUnyJNIyuIRt2mT0WMug==} engines: {node: '>=16'} - svg-parser@2.0.4: - resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} - svg-tags@1.0.0: resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} @@ -14445,10 +13317,6 @@ packages: thenify@3.3.1: resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} - throttle-debounce@5.0.0: - resolution: {integrity: sha512-2iQTSgkkc1Zyk0MeVrt/3BvuOXYPl/R8Z0U2xxo9rjwNciaHDG3R+Lm6dh4EeUci49DanvBnuqI6jshoQQRGEg==} - engines: {node: '>=12.22'} - through2@2.0.5: resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} @@ -14458,23 +13326,12 @@ packages: thunky@1.1.0: resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} - timeago-react@3.0.6: - resolution: {integrity: sha512-4ywnCX3iFjdp84WPK7gt8s4n0FxXbYM+xv8hYL73p83dpcMxzmO+0W4xJuxflnkWNvum5aEaqTe6LZ3lUIudjQ==} - peerDependencies: - react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 - - timeago.js@4.0.2: - resolution: {integrity: sha512-a7wPxPdVlQL7lqvitHGGRsofhdwtkoSXPGATFuSOA2i1ZNQEPLrGnj68vOp2sOJTCFAQVXPeNMX/GctBaO9L2w==} - tiny-glob@0.2.9: resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} tiny-invariant@1.3.3: resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - tiny-typed-emitter@2.1.0: - resolution: {integrity: sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==} - tinybench@2.6.0: resolution: {integrity: sha512-N8hW3PG/3aOoZAN5V/NSAEDz0ZixDSSt5b/a05iqtpgfLWMSVuCo7w0k2vVvEjdrIoeGqZzweX2WlyioNIHchA==} @@ -14494,13 +13351,6 @@ packages: resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} engines: {node: '>=12'} - tldts-core@6.1.21: - resolution: {integrity: sha512-+r3LJ82JEJZC0DrKgk27yXBX9+sjMFwQ2p+CQHHSPw4m/4uf8EetS5eX+t0eXCBOWs096+qQLZx5Sm3kYIlFeA==} - - tldts@6.1.21: - resolution: {integrity: sha512-gWfVTYV5nBZ0xyH2oQwNZsfXQPB2nylVqJkPca2yv8Mb2IbBkxoorXOR02zRm1+OUj956VxxbPFcMa/Etn9QhQ==} - hasBin: true - tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} @@ -14699,10 +13549,6 @@ packages: resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} engines: {node: '>=14.16'} - type-fest@4.18.2: - resolution: {integrity: sha512-+suCYpfJLAe4OXS6+PPXjW3urOS4IoP9waSiLuXfLgqZODKw/aWwASvzqE886wA0kQgGy0mIWyhd87VpqIy6Xg==} - engines: {node: '>=16'} - type-is@1.6.18: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} engines: {node: '>= 0.6'} @@ -14786,9 +13632,6 @@ packages: engines: {node: '>=0.8.0'} hasBin: true - uhyphen@0.2.0: - resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==} - ultrahtml@1.5.3: resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==} @@ -15061,16 +13904,6 @@ packages: url-join@4.0.1: resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} - url-loader@4.1.1: - 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 - url-parse@1.5.10: resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} @@ -15085,12 +13918,6 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - usehooks-ts@2.16.0: - resolution: {integrity: sha512-bez95WqYujxp6hFdM/CpRDiVPirZPxlMzOH2QB8yopoKQMXpscyZoxOjpEdaxvV+CAWUDSM62cWnqHE0E/MZ7w==} - engines: {node: '>=16.15.0'} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 - util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -15135,10 +13962,6 @@ packages: resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} engines: {node: '>=10.12.0'} - vali-date@1.0.0: - resolution: {integrity: sha512-sgECfZthyaCKW10N0fm27cg8HYTFK5qMWgypqkXMQ4Wbl/zZKx7xZICgcoxIIE+WFAP/MBL2EFwC/YvLxw3Zeg==} - engines: {node: '>=0.10.0'} - validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} @@ -15557,9 +14380,6 @@ packages: walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} - warning@4.0.3: - resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} - watchpack@2.4.0: resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} engines: {node: '>=10.13.0'} @@ -15571,9 +14391,6 @@ packages: wbuf@1.7.3: resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} - wcag-contrast@3.0.0: - resolution: {integrity: sha512-RWbpg/S7FOXDCwqC2oFhN/vh8dHzj0OS6dpyOSDHyQFSmqmR+lAUStV/ziTT1GzDqL9wol+nZQB4vCi5yEak+w==} - wcwidth@1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} @@ -15594,11 +14411,6 @@ 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==} - engines: {node: '>= 10.13.0'} - hasBin: true - webpack-cli@5.1.4: resolution: {integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==} engines: {node: '>=14.15.0'} @@ -15644,9 +14456,6 @@ packages: webpack-cli: optional: true - webpack-import-glob-loader@1.6.3: - resolution: {integrity: sha512-//xc5CYowGzVyPtj7OAU7mowkuR+ZEfFeeOGdcs/UR4u6IAGpXXBlwjC/YCOggv1vuXKJNyiS4w4GaqcXcEO6Q==} - webpack-merge@5.10.0: resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} engines: {node: '>=10.0.0'} @@ -15904,9 +14713,6 @@ packages: engines: {node: '>= 14'} hasBin: true - yargonaut@1.1.4: - resolution: {integrity: sha512-rHgFmbgXAAzl+1nngqOcwEljqHGG9uUZoPjsdZEs1w5JW9RXYzrSvH/u70C1JE5qFi0qjsdhnUX/dJRpWqitSA==} - yargs-parser@20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} @@ -15990,7 +14796,7 @@ snapshots: transitivePeerDependencies: - chokidar - ? '@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.2.2))(@angular/platform-server@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))))(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/express@4.17.21)(@types/node@20.11.28)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.11.28)(ts-node@10.9.2(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/node@20.12.10)(typescript@5.4.5)))(karma@6.4.3)(typescript@5.2.2)' + ? '@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.2.2))(@angular/platform-server@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))))(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/express@4.17.21)(@types/node@20.11.28)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.11.28)(ts-node@10.9.2(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/node@20.12.10)(typescript@5.4.5)))(karma@6.4.3)(typescript@5.2.2)' : dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1703.0(chokidar@3.6.0) @@ -16052,11 +14858,11 @@ snapshots: undici: 6.7.1 vite: 5.1.5(@types/node@20.11.28)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) watchpack: 2.4.0 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) webpack-dev-middleware: 6.1.1(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) webpack-dev-server: 4.15.1(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) webpack-merge: 5.10.0 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)))(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) optionalDependencies: '@angular/platform-server': 17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))) esbuild: 0.20.1 @@ -16082,7 +14888,7 @@ snapshots: - utf-8-validate - webpack-cli - ? '@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.2.2))(@angular/platform-server@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))))(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/express@4.17.21)(@types/node@20.12.10)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.10)(ts-node@10.9.2(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/node@20.12.10)(typescript@5.4.5)))(karma@6.4.3)(typescript@5.2.2)' + ? '@angular-devkit/build-angular@17.3.0(@angular/compiler-cli@17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.2.2))(@angular/platform-server@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))))(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/express@4.17.21)(@types/node@20.12.10)(chokidar@3.6.0)(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.12.10)(ts-node@10.9.2(@swc/core@1.4.16(@swc/helpers@0.5.5))(@types/node@20.12.10)(typescript@5.4.5)))(karma@6.4.3)(typescript@5.2.2)' : dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1703.0(chokidar@3.6.0) @@ -16144,11 +14950,11 @@ snapshots: undici: 6.7.1 vite: 5.1.5(@types/node@20.12.10)(less@4.2.0)(sass@1.71.1)(terser@5.29.1) watchpack: 2.4.0 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) webpack-dev-middleware: 6.1.1(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) webpack-dev-server: 4.15.1(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) webpack-merge: 5.10.0 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)))(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) optionalDependencies: '@angular/platform-server': 17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(@angular/platform-browser@17.3.0(@angular/animations@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(@angular/common@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))(rxjs@7.8.1))(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4))) esbuild: 0.20.1 @@ -16178,7 +14984,7 @@ snapshots: dependencies: '@angular-devkit/architect': 0.1703.0(chokidar@3.6.0) rxjs: 7.8.1 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) webpack-dev-server: 4.15.1(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) transitivePeerDependencies: - chokidar @@ -16352,31 +15158,6 @@ snapshots: '@antfu/utils@0.7.7': {} - '@apify/consts@2.27.0': {} - - '@apify/datastructures@2.0.2': {} - - '@apify/log@2.5.1': - dependencies: - '@apify/consts': 2.27.0 - ansi-colors: 4.1.3 - - '@apify/ps-tree@1.2.0': - dependencies: - event-stream: 3.3.4 - - '@apify/pseudo_url@2.0.41': - dependencies: - '@apify/log': 2.5.1 - '@sapphire/shapeshift': 3.9.7 - - '@apify/timeout@0.3.1': {} - - '@apify/utilities@2.10.2': - dependencies: - '@apify/consts': 2.27.0 - '@apify/log': 2.5.1 - '@astrojs/compiler@1.8.2': {} '@astrojs/compiler@2.7.0': {} @@ -16744,13 +15525,6 @@ snapshots: regexpu-core: 5.3.2 semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -16762,17 +15536,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.5 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -16784,17 +15547,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.5 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - '@babel/helper-environment-visitor@7.22.20': {} '@babel/helper-function-name@7.23.0': @@ -16878,13 +15630,6 @@ snapshots: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 - '@babel/helper-replace-supers@7.22.20(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -16892,13 +15637,6 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.22.20(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17001,11 +15739,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.5)': - dependencies: - '@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.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17013,25 +15746,12 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.0) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.5) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-proposal-decorators@7.24.0(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -17043,10 +15763,6 @@ snapshots: dependencies: '@babel/core': 7.24.0 - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17077,11 +15793,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-decorators@7.24.0(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -17092,31 +15803,16 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17222,11 +15918,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17253,22 +15944,11 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17277,14 +15957,6 @@ snapshots: '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0) - '@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 - '@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.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17292,45 +15964,22 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.0) - '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17338,13 +15987,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0) - '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.5) - '@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.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17357,110 +15999,52 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - '@babel/plugin-transform-classes@7.23.8(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.22.20(@babel/core@7.24.5) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/template': 7.24.0 - '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/template': 7.24.0 - '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17468,69 +16052,34 @@ snapshots: '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-compilation-targets': 7.23.6 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0) - '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.5)': - dependencies: - '@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/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17538,13 +16087,6 @@ snapshots: '@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.24.5)': - dependencies: - '@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.9(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17553,72 +16095,35 @@ snapshots: '@babel/helper-plugin-utils': 7.24.5 '@babel/helper-validator-identifier': 7.22.20 - '@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-hoist-variables': 7.22.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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.5)': - dependencies: - '@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/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0) - '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0(@babel/core@7.24.0)': dependencies: '@babel/compat-data': 7.24.4 @@ -17628,39 +16133,18 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.0) - '@babel/plugin-transform-object-rest-spread@7.24.0(@babel/core@7.24.5)': - dependencies: - '@babel/compat-data': 7.24.4 - '@babel/core': 7.24.5 - '@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.24.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.0) - '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.5) - '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.5)': - 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.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17668,35 +16152,17 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.5)': - 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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17705,49 +16171,21 @@ snapshots: '@babel/helper-plugin-utils': 7.24.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0) - '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.0(@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/plugin-transform-property-literals@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.0) - '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17767,49 +16205,23 @@ snapshots: '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0) '@babel/types': 7.24.0 - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5)': - 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.0 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.5) - '@babel/types': 7.24.0 - '@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 regenerator-transform: 0.15.2 - '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-runtime@7.24.0(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17827,53 +16239,27 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-typescript@7.23.6(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -17895,47 +16281,24 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@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.24.0(@babel/core@7.24.0)': dependencies: '@babel/compat-data': 7.23.5 @@ -18022,92 +16385,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/preset-env@7.24.0(@babel/core@7.24.5)': - dependencies: - '@babel/compat-data': 7.24.4 - '@babel/core': 7.24.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.24.5) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.5) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.5) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.24.5) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.24.5) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.24.5) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.5) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-object-rest-spread': 7.24.0(@babel/core@7.24.5) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.24.5) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.24.5) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.5) - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.5) - babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.5) - babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.5) - core-js-compat: 3.37.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -18115,13 +16392,6 @@ snapshots: '@babel/types': 7.24.5 esutils: 2.0.3 - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/types': 7.24.5 - esutils: 2.0.3 - '@babel/preset-react@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -18132,16 +16402,6 @@ snapshots: '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.0) '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.24.0) - '@babel/preset-react@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.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.23.4(@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) - '@babel/preset-typescript@7.23.3(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -18151,15 +16411,6 @@ snapshots: '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.0) '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.24.0) - '@babel/preset-typescript@7.23.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.5) - '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.24.5) - '@babel/regjsgen@0.8.0': {} '@babel/runtime@7.24.0': @@ -18351,224 +16602,6 @@ snapshots: '@types/conventional-commits-parser': 5.0.0 chalk: 5.3.0 - '@crawlee/basic@3.10.0': - dependencies: - '@apify/log': 2.5.1 - '@apify/timeout': 0.3.1 - '@apify/utilities': 2.10.2 - '@crawlee/core': 3.10.0 - '@crawlee/types': 3.10.0 - '@crawlee/utils': 3.10.0 - csv-stringify: 6.5.0 - fs-extra: 11.2.0 - got-scraping: 4.0.5 - ow: 0.28.2 - tldts: 6.1.21 - tslib: 2.6.2 - type-fest: 4.18.2 - - '@crawlee/browser-pool@3.10.0(playwright@1.41.2)': - dependencies: - '@apify/log': 2.5.1 - '@apify/timeout': 0.3.1 - '@crawlee/core': 3.10.0 - '@crawlee/types': 3.10.0 - fingerprint-generator: 2.1.51 - fingerprint-injector: 2.1.51(playwright@1.41.2) - lodash.merge: 4.6.2 - nanoid: 3.3.7 - ow: 0.28.2 - p-limit: 3.1.0 - proxy-chain: 2.4.0 - quick-lru: 5.1.1 - tiny-typed-emitter: 2.1.0 - tslib: 2.6.2 - optionalDependencies: - playwright: 1.41.2 - - '@crawlee/browser@3.10.0(playwright@1.41.2)': - dependencies: - '@apify/timeout': 0.3.1 - '@crawlee/basic': 3.10.0 - '@crawlee/browser-pool': 3.10.0(playwright@1.41.2) - '@crawlee/types': 3.10.0 - '@crawlee/utils': 3.10.0 - ow: 0.28.2 - tslib: 2.6.2 - type-fest: 4.18.2 - transitivePeerDependencies: - - playwright - - puppeteer - - '@crawlee/cheerio@3.10.0': - dependencies: - '@crawlee/http': 3.10.0 - '@crawlee/types': 3.10.0 - '@crawlee/utils': 3.10.0 - cheerio: 1.0.0-rc.12 - htmlparser2: 9.1.0 - tslib: 2.6.2 - - '@crawlee/cli@3.10.0': - dependencies: - '@crawlee/templates': 3.10.0 - ansi-colors: 4.1.3 - fs-extra: 11.2.0 - inquirer: 8.2.6 - tslib: 2.6.2 - yargonaut: 1.1.4 - yargs: 17.7.2 - - '@crawlee/core@3.10.0': - dependencies: - '@apify/consts': 2.27.0 - '@apify/datastructures': 2.0.2 - '@apify/log': 2.5.1 - '@apify/pseudo_url': 2.0.41 - '@apify/timeout': 0.3.1 - '@apify/utilities': 2.10.2 - '@crawlee/memory-storage': 3.10.0 - '@crawlee/types': 3.10.0 - '@crawlee/utils': 3.10.0 - '@sapphire/async-queue': 1.5.2 - '@types/tough-cookie': 4.0.5 - '@vladfrangu/async_event_emitter': 2.2.4 - csv-stringify: 6.5.0 - fs-extra: 11.2.0 - got-scraping: 4.0.5 - json5: 2.2.3 - minimatch: 9.0.4 - ow: 0.28.2 - stream-chain: 2.2.5 - stream-json: 1.8.0 - tldts: 6.1.21 - tough-cookie: 4.1.4 - tslib: 2.6.2 - type-fest: 4.18.2 - - '@crawlee/http@3.10.0': - dependencies: - '@apify/timeout': 0.3.1 - '@apify/utilities': 2.10.2 - '@crawlee/basic': 3.10.0 - '@crawlee/types': 3.10.0 - '@crawlee/utils': 3.10.0 - '@types/content-type': 1.1.8 - cheerio: 1.0.0-rc.12 - content-type: 1.0.5 - got-scraping: 4.0.5 - iconv-lite: 0.6.3 - mime-types: 2.1.35 - ow: 0.28.2 - tslib: 2.6.2 - type-fest: 4.18.2 - - '@crawlee/jsdom@3.10.0': - dependencies: - '@apify/timeout': 0.3.1 - '@apify/utilities': 2.10.2 - '@crawlee/http': 3.10.0 - '@crawlee/types': 3.10.0 - '@types/jsdom': 21.1.6 - cheerio: 1.0.0-rc.12 - jsdom: 24.0.0 - ow: 0.28.2 - tslib: 2.6.2 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - - '@crawlee/linkedom@3.10.0': - dependencies: - '@apify/timeout': 0.3.1 - '@apify/utilities': 2.10.2 - '@crawlee/http': 3.10.0 - '@crawlee/types': 3.10.0 - linkedom: 0.18.0 - ow: 0.28.2 - tslib: 2.6.2 - - '@crawlee/memory-storage@3.10.0': - dependencies: - '@apify/log': 2.5.1 - '@crawlee/types': 3.10.0 - '@sapphire/async-queue': 1.5.2 - '@sapphire/shapeshift': 3.9.7 - content-type: 1.0.5 - fs-extra: 11.2.0 - json5: 2.2.3 - mime-types: 2.1.35 - proper-lockfile: 4.1.2 - tslib: 2.6.2 - - '@crawlee/playwright@3.10.0(playwright@1.41.2)': - dependencies: - '@apify/datastructures': 2.0.2 - '@apify/log': 2.5.1 - '@apify/timeout': 0.3.1 - '@crawlee/browser': 3.10.0(playwright@1.41.2) - '@crawlee/browser-pool': 3.10.0(playwright@1.41.2) - '@crawlee/core': 3.10.0 - '@crawlee/types': 3.10.0 - '@crawlee/utils': 3.10.0 - cheerio: 1.0.0-rc.12 - idcac-playwright: 0.1.2 - jquery: 3.7.1 - lodash.isequal: 4.5.0 - ml-logistic-regression: 2.0.0 - ow: 0.28.2 - string-comparison: 1.3.0 - tslib: 2.6.2 - optionalDependencies: - playwright: 1.41.2 - transitivePeerDependencies: - - puppeteer - - '@crawlee/puppeteer@3.10.0(playwright@1.41.2)': - dependencies: - '@apify/datastructures': 2.0.2 - '@apify/log': 2.5.1 - '@crawlee/browser': 3.10.0(playwright@1.41.2) - '@crawlee/browser-pool': 3.10.0(playwright@1.41.2) - '@crawlee/types': 3.10.0 - '@crawlee/utils': 3.10.0 - cheerio: 1.0.0-rc.12 - devtools-protocol: 0.0.1249869 - idcac-playwright: 0.1.2 - jquery: 3.7.1 - ow: 0.28.2 - tslib: 2.6.2 - transitivePeerDependencies: - - playwright - - '@crawlee/templates@3.10.0': - dependencies: - ansi-colors: 4.1.3 - inquirer: 9.2.15 - tslib: 2.6.2 - yargonaut: 1.1.4 - yargs: 17.7.2 - - '@crawlee/types@3.10.0': - dependencies: - tslib: 2.6.2 - - '@crawlee/utils@3.10.0': - dependencies: - '@apify/log': 2.5.1 - '@apify/ps-tree': 1.2.0 - '@crawlee/types': 3.10.0 - '@types/sax': 1.2.7 - cheerio: 1.0.0-rc.12 - got-scraping: 4.0.5 - ow: 0.28.2 - robots-parser: 3.0.1 - sax: 1.3.0 - tslib: 2.6.2 - whatwg-mimetype: 4.0.0 - '@cspotcode/source-map-support@0.8.1': dependencies: '@jridgewell/trace-mapping': 0.3.9 @@ -19073,64 +17106,8 @@ snapshots: '@fastify/busboy@2.1.1': {} - '@firebase/analytics-compat@0.2.10(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4)': - dependencies: - '@firebase/analytics': 0.10.4(@firebase/app@0.10.4) - '@firebase/analytics-types': 0.8.2 - '@firebase/app-compat': 0.2.34 - '@firebase/component': 0.6.7 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - transitivePeerDependencies: - - '@firebase/app' - - '@firebase/analytics-types@0.8.2': {} - - '@firebase/analytics@0.10.4(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/component': 0.6.7 - '@firebase/installations': 0.6.7(@firebase/app@0.10.4) - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - - '@firebase/app-check-compat@0.3.11(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4)': - dependencies: - '@firebase/app-check': 0.8.4(@firebase/app@0.10.4) - '@firebase/app-check-types': 0.5.2 - '@firebase/app-compat': 0.2.34 - '@firebase/component': 0.6.7 - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - transitivePeerDependencies: - - '@firebase/app' - - '@firebase/app-check-interop-types@0.3.2': {} - - '@firebase/app-check-types@0.5.2': {} - - '@firebase/app-check@0.8.4(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/component': 0.6.7 - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - - '@firebase/app-compat@0.2.34': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/component': 0.6.7 - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - '@firebase/app-types@0.9.0': {} - '@firebase/app-types@0.9.2': {} - '@firebase/app@0.10.4': dependencies: '@firebase/component': 0.6.7 @@ -19139,38 +17116,8 @@ snapshots: idb: 7.1.1 tslib: 2.6.2 - '@firebase/auth-compat@0.5.8(@firebase/app-compat@0.2.34)(@firebase/app-types@0.9.2)(@firebase/app@0.10.4)': - dependencies: - '@firebase/app-compat': 0.2.34 - '@firebase/auth': 1.7.3(@firebase/app@0.10.4) - '@firebase/auth-types': 0.12.2(@firebase/app-types@0.9.2)(@firebase/util@1.9.6) - '@firebase/component': 0.6.7 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - undici: 5.28.4 - transitivePeerDependencies: - - '@firebase/app' - - '@firebase/app-types' - - '@react-native-async-storage/async-storage' - '@firebase/auth-interop-types@0.2.1': {} - '@firebase/auth-interop-types@0.2.3': {} - - '@firebase/auth-types@0.12.2(@firebase/app-types@0.9.2)(@firebase/util@1.9.6)': - dependencies: - '@firebase/app-types': 0.9.2 - '@firebase/util': 1.9.6 - - '@firebase/auth@1.7.3(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/component': 0.6.7 - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - undici: 5.28.4 - '@firebase/component@0.6.4': dependencies: '@firebase/util': 1.9.3 @@ -19195,25 +17142,11 @@ snapshots: '@firebase/util': 1.9.3 tslib: 2.6.2 - '@firebase/database-compat@1.0.5': - dependencies: - '@firebase/component': 0.6.7 - '@firebase/database': 1.0.5 - '@firebase/database-types': 1.0.3 - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - '@firebase/database-types@0.10.4': dependencies: '@firebase/app-types': 0.9.0 '@firebase/util': 1.9.3 - '@firebase/database-types@1.0.3': - dependencies: - '@firebase/app-types': 0.9.2 - '@firebase/util': 1.9.6 - '@firebase/database@0.14.4': dependencies: '@firebase/auth-interop-types': 0.2.1 @@ -19223,33 +17156,6 @@ snapshots: faye-websocket: 0.11.4 tslib: 2.6.2 - '@firebase/database@1.0.5': - dependencies: - '@firebase/app-check-interop-types': 0.3.2 - '@firebase/auth-interop-types': 0.2.3 - '@firebase/component': 0.6.7 - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - faye-websocket: 0.11.4 - tslib: 2.6.2 - - '@firebase/firestore-compat@0.3.32(@firebase/app-compat@0.2.34)(@firebase/app-types@0.9.2)(@firebase/app@0.10.4)': - dependencies: - '@firebase/app-compat': 0.2.34 - '@firebase/component': 0.6.7 - '@firebase/firestore': 4.6.3(@firebase/app@0.10.4) - '@firebase/firestore-types': 3.0.2(@firebase/app-types@0.9.2)(@firebase/util@1.9.6) - '@firebase/util': 1.9.6 - tslib: 2.6.2 - transitivePeerDependencies: - - '@firebase/app' - - '@firebase/app-types' - - '@firebase/firestore-types@3.0.2(@firebase/app-types@0.9.2)(@firebase/util@1.9.6)': - dependencies: - '@firebase/app-types': 0.9.2 - '@firebase/util': 1.9.6 - '@firebase/firestore@4.5.0(@firebase/app@0.10.4)': dependencies: '@firebase/app': 0.10.4 @@ -19262,66 +17168,6 @@ snapshots: tslib: 2.6.2 undici: 5.28.3 - '@firebase/firestore@4.6.3(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/component': 0.6.7 - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - '@firebase/webchannel-wrapper': 1.0.0 - '@grpc/grpc-js': 1.9.14 - '@grpc/proto-loader': 0.7.13 - tslib: 2.6.2 - undici: 5.28.4 - - '@firebase/functions-compat@0.3.11(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4)': - dependencies: - '@firebase/app-compat': 0.2.34 - '@firebase/component': 0.6.7 - '@firebase/functions': 0.11.5(@firebase/app@0.10.4) - '@firebase/functions-types': 0.6.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - transitivePeerDependencies: - - '@firebase/app' - - '@firebase/functions-types@0.6.2': {} - - '@firebase/functions@0.11.5(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/app-check-interop-types': 0.3.2 - '@firebase/auth-interop-types': 0.2.3 - '@firebase/component': 0.6.7 - '@firebase/messaging-interop-types': 0.2.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - undici: 5.28.4 - - '@firebase/installations-compat@0.2.7(@firebase/app-compat@0.2.34)(@firebase/app-types@0.9.2)(@firebase/app@0.10.4)': - dependencies: - '@firebase/app-compat': 0.2.34 - '@firebase/component': 0.6.7 - '@firebase/installations': 0.6.7(@firebase/app@0.10.4) - '@firebase/installations-types': 0.5.2(@firebase/app-types@0.9.2) - '@firebase/util': 1.9.6 - tslib: 2.6.2 - transitivePeerDependencies: - - '@firebase/app' - - '@firebase/app-types' - - '@firebase/installations-types@0.5.2(@firebase/app-types@0.9.2)': - dependencies: - '@firebase/app-types': 0.9.2 - - '@firebase/installations@0.6.7(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/component': 0.6.7 - '@firebase/util': 1.9.6 - idb: 7.1.1 - tslib: 2.6.2 - '@firebase/logger@0.4.0': dependencies: tslib: 2.6.2 @@ -19330,99 +17176,6 @@ snapshots: dependencies: tslib: 2.6.2 - '@firebase/messaging-compat@0.2.9(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4)': - dependencies: - '@firebase/app-compat': 0.2.34 - '@firebase/component': 0.6.7 - '@firebase/messaging': 0.12.9(@firebase/app@0.10.4) - '@firebase/util': 1.9.6 - tslib: 2.6.2 - transitivePeerDependencies: - - '@firebase/app' - - '@firebase/messaging-interop-types@0.2.2': {} - - '@firebase/messaging@0.12.9(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/component': 0.6.7 - '@firebase/installations': 0.6.7(@firebase/app@0.10.4) - '@firebase/messaging-interop-types': 0.2.2 - '@firebase/util': 1.9.6 - idb: 7.1.1 - tslib: 2.6.2 - - '@firebase/performance-compat@0.2.7(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4)': - dependencies: - '@firebase/app-compat': 0.2.34 - '@firebase/component': 0.6.7 - '@firebase/logger': 0.4.2 - '@firebase/performance': 0.6.7(@firebase/app@0.10.4) - '@firebase/performance-types': 0.2.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - transitivePeerDependencies: - - '@firebase/app' - - '@firebase/performance-types@0.2.2': {} - - '@firebase/performance@0.6.7(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/component': 0.6.7 - '@firebase/installations': 0.6.7(@firebase/app@0.10.4) - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - - '@firebase/remote-config-compat@0.2.7(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4)': - dependencies: - '@firebase/app-compat': 0.2.34 - '@firebase/component': 0.6.7 - '@firebase/logger': 0.4.2 - '@firebase/remote-config': 0.4.7(@firebase/app@0.10.4) - '@firebase/remote-config-types': 0.3.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - transitivePeerDependencies: - - '@firebase/app' - - '@firebase/remote-config-types@0.3.2': {} - - '@firebase/remote-config@0.4.7(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/component': 0.6.7 - '@firebase/installations': 0.6.7(@firebase/app@0.10.4) - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - - '@firebase/storage-compat@0.3.8(@firebase/app-compat@0.2.34)(@firebase/app-types@0.9.2)(@firebase/app@0.10.4)': - dependencies: - '@firebase/app-compat': 0.2.34 - '@firebase/component': 0.6.7 - '@firebase/storage': 0.12.5(@firebase/app@0.10.4) - '@firebase/storage-types': 0.8.2(@firebase/app-types@0.9.2)(@firebase/util@1.9.6) - '@firebase/util': 1.9.6 - tslib: 2.6.2 - transitivePeerDependencies: - - '@firebase/app' - - '@firebase/app-types' - - '@firebase/storage-types@0.8.2(@firebase/app-types@0.9.2)(@firebase/util@1.9.6)': - dependencies: - '@firebase/app-types': 0.9.2 - '@firebase/util': 1.9.6 - - '@firebase/storage@0.12.5(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/component': 0.6.7 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - undici: 5.28.4 - '@firebase/util@1.9.3': dependencies: tslib: 2.6.2 @@ -19435,20 +17188,8 @@ snapshots: dependencies: tslib: 2.6.2 - '@firebase/vertexai-preview@0.0.1(@firebase/app-types@0.9.2)(@firebase/app@0.10.4)': - dependencies: - '@firebase/app': 0.10.4 - '@firebase/app-check-interop-types': 0.3.2 - '@firebase/app-types': 0.9.2 - '@firebase/component': 0.6.7 - '@firebase/logger': 0.4.2 - '@firebase/util': 1.9.6 - tslib: 2.6.2 - '@firebase/webchannel-wrapper@0.10.5': {} - '@firebase/webchannel-wrapper@1.0.0': {} - '@fontsource/fira-mono@4.5.10': {} '@gar/promisify@1.1.3': {} @@ -19949,6 +17690,13 @@ snapshots: '@master/colors@2.0.0': {} + '@master/css@2.0.0-rc.38': + dependencies: + '@master/colors': 2.0.0 + '@master/normal.css': 3.0.0 + '@techor/extend': 3.0.22 + csstype: 3.1.3 + '@master/normal.css@2.1.1': {} '@master/normal.css@3.0.0': {} @@ -19976,20 +17724,13 @@ snapshots: react-dom: 18.2.0(react@18.2.0) theme-mode: 1.1.0 - '@master/theme-mode.react@1.1.0(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@types/react': 18.3.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - theme-mode: 1.1.0 - - '@mdx-js/loader@3.0.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)))': + '@mdx-js/loader@3.0.0': dependencies: '@mdx-js/mdx': 3.0.1 source-map: 0.7.4 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) transitivePeerDependencies: - supports-color + optional: true '@mdx-js/mdx@3.0.1': dependencies: @@ -20018,6 +17759,7 @@ snapshots: vfile: 6.0.1 transitivePeerDependencies: - supports-color + optional: true '@mdx-js/react@3.0.0(@types/react@18.2.66)(react@18.2.0)': dependencies: @@ -20026,12 +17768,6 @@ snapshots: react: 18.2.0 optional: true - '@mdx-js/react@3.0.0(@types/react@18.3.1)(react@18.3.1)': - dependencies: - '@types/mdx': 2.0.13 - '@types/react': 18.3.1 - react: 18.3.1 - '@monaco-editor/loader@1.4.0(monaco-editor@0.45.0)': dependencies: monaco-editor: 0.45.0 @@ -20064,13 +17800,6 @@ snapshots: '@netlify/node-cookies': 0.1.0 urlpattern-polyfill: 8.0.2 - '@next/bundle-analyzer@14.2.3': - dependencies: - webpack-bundle-analyzer: 4.10.1 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - '@next/env@14.1.3': {} '@next/env@14.2.1': {} @@ -20083,18 +17812,11 @@ snapshots: dependencies: glob: 10.3.10 - '@next/mdx@14.2.1(@mdx-js/loader@3.0.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(@mdx-js/react@3.0.0(@types/react@18.3.1)(react@18.3.1))': - dependencies: - source-map: 0.7.4 - optionalDependencies: - '@mdx-js/loader': 3.0.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))) - '@mdx-js/react': 3.0.0(@types/react@18.3.1)(react@18.3.1) - '@next/mdx@14.2.1(@mdx-js/loader@3.0.0)(@mdx-js/react@3.0.0(@types/react@18.2.66)(react@18.2.0))': dependencies: source-map: 0.7.4 optionalDependencies: - '@mdx-js/loader': 3.0.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))) + '@mdx-js/loader': 3.0.0 '@mdx-js/react': 3.0.0(@types/react@18.2.66)(react@18.2.0) '@next/swc-darwin-arm64@14.1.3': @@ -20155,7 +17877,7 @@ snapshots: dependencies: '@angular/compiler-cli': 17.3.0(@angular/compiler@17.3.0(@angular/core@17.3.0(rxjs@7.8.1)(zone.js@0.14.4)))(typescript@5.2.2) typescript: 5.2.2 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': dependencies: @@ -20964,8 +18686,6 @@ snapshots: '@polka/url@1.0.0-next.25': {} - '@popperjs/core@2.11.8': {} - '@protobufjs/aspromise@1.1.2': {} '@protobufjs/base64@1.1.2': {} @@ -21126,8 +18846,6 @@ snapshots: react-dom: 18.2.0(react@18.2.0) react-router-dom: 6.14.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@remix-run/router@1.16.1': {} - '@remix-run/router@1.7.2': {} '@remix-run/serve@1.19.3': @@ -21464,13 +19182,6 @@ snapshots: '@rushstack/eslint-patch@1.7.2': {} - '@sapphire/async-queue@1.5.2': {} - - '@sapphire/shapeshift@3.9.7': - dependencies: - fast-deep-equal: 3.1.3 - lodash: 4.17.21 - '@schematics/angular@17.3.0(chokidar@3.6.0)': dependencies: '@angular-devkit/core': 17.3.0(chokidar@3.6.0) @@ -21513,8 +19224,6 @@ snapshots: '@sindresorhus/is@4.6.0': {} - '@sindresorhus/is@5.6.0': {} - '@sindresorhus/merge-streams@2.3.0': {} '@sinonjs/commons@3.0.1': @@ -21602,99 +19311,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - - '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - - '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - - '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - - '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - - '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - - '@svgr/babel-preset@8.1.0(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@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': 8.0.0(@babel/core@7.24.5) - '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.24.5) - '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.5) - '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.5) - '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.5) - - '@svgr/core@8.1.0(typescript@5.4.5)': - dependencies: - '@babel/core': 7.24.5 - '@svgr/babel-preset': 8.1.0(@babel/core@7.24.5) - camelcase: 6.3.0 - cosmiconfig: 8.3.6(typescript@5.4.5) - snake-case: 3.0.4 - transitivePeerDependencies: - - supports-color - - typescript - - '@svgr/hast-util-to-babel-ast@8.0.0': - dependencies: - '@babel/types': 7.24.5 - entities: 4.5.0 - - '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.4.5))': - dependencies: - '@babel/core': 7.24.5 - '@svgr/babel-preset': 8.1.0(@babel/core@7.24.5) - '@svgr/core': 8.1.0(typescript@5.4.5) - '@svgr/hast-util-to-babel-ast': 8.0.0 - svg-parser: 2.0.4 - transitivePeerDependencies: - - supports-color - - '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.4.5))(typescript@5.4.5)': - dependencies: - '@svgr/core': 8.1.0(typescript@5.4.5) - cosmiconfig: 8.3.6(typescript@5.4.5) - deepmerge: 4.3.1 - svgo: 3.2.0 - transitivePeerDependencies: - - typescript - - '@svgr/webpack@8.1.0(typescript@5.4.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.5) - '@babel/preset-env': 7.24.0(@babel/core@7.24.5) - '@babel/preset-react': 7.23.3(@babel/core@7.24.5) - '@babel/preset-typescript': 7.23.3(@babel/core@7.24.5) - '@svgr/core': 8.1.0(typescript@5.4.5) - '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5)) - '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5))(typescript@5.4.5) - transitivePeerDependencies: - - supports-color - - typescript - '@swc-node/core@1.13.0(@swc/core@1.4.16(@swc/helpers@0.5.5))(@swc/types@0.1.6)': dependencies: '@swc/core': 1.4.16(@swc/helpers@0.5.5) @@ -21803,26 +19419,14 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - '@szmarczak/http-timer@5.0.1': - dependencies: - defer-to-connect: 2.0.1 - '@tabler/icons-react@2.47.0(react@18.2.0)': dependencies: '@tabler/icons': 2.47.0 prop-types: 15.8.1 react: 18.2.0 - '@tabler/icons-react@2.47.0(react@18.3.1)': - dependencies: - '@tabler/icons': 2.47.0 - prop-types: 15.8.1 - react: 18.3.1 - '@tabler/icons@2.47.0': {} - '@techor/extend@2.6.7': {} - '@techor/extend@3.0.18': {} '@techor/extend@3.0.22': {} @@ -22002,14 +19606,10 @@ snapshots: '@types/node': 20.12.10 '@types/responselike': 1.0.3 - '@types/canvas-confetti@1.6.4': {} - '@types/caseless@0.12.5': {} '@types/chroma-js@2.4.4': {} - '@types/clone-deep@4.0.4': {} - '@types/color-convert@2.0.3': dependencies: '@types/color-name': 1.1.3 @@ -22031,8 +19631,6 @@ snapshots: dependencies: '@types/node': 20.12.10 - '@types/content-type@1.1.8': {} - '@types/conventional-commits-parser@5.0.0': dependencies: '@types/node': 20.12.10 @@ -22141,20 +19739,12 @@ snapshots: expect: 29.7.0 pretty-format: 29.7.0 - '@types/js-beautify@1.14.3': {} - '@types/jsdom@20.0.1': dependencies: '@types/node': 20.12.10 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 - '@types/jsdom@21.1.6': - dependencies: - '@types/node': 20.12.10 - '@types/tough-cookie': 4.0.5 - parse5: 7.1.2 - '@types/json-schema@7.0.15': {} '@types/json5@0.0.29': {} @@ -22204,9 +19794,8 @@ snapshots: '@types/mdurl@2.0.0': optional: true - '@types/mdx@2.0.13': {} - - '@types/mime-types@2.1.4': {} + '@types/mdx@2.0.13': + optional: true '@types/mime@1.3.5': {} @@ -22216,8 +19805,6 @@ snapshots: '@types/ms@0.7.34': {} - '@types/negotiator@0.6.3': {} - '@types/nlcst@1.0.4': dependencies: '@types/unist': 2.0.10 @@ -22253,8 +19840,6 @@ snapshots: '@types/pretty-hrtime@1.0.3': {} - '@types/prismjs@1.26.4': {} - '@types/prop-types@15.7.11': {} '@types/prop-types@15.7.12': {} @@ -22269,10 +19854,6 @@ snapshots: dependencies: '@types/react': 18.3.1 - '@types/react-portal@4.0.7': - dependencies: - '@types/react': 18.3.1 - '@types/react@18.2.66': dependencies: '@types/prop-types': 15.7.11 @@ -22340,14 +19921,10 @@ snapshots: '@types/supports-color@8.1.3': {} - '@types/throttle-debounce@5.0.2': {} - '@types/tough-cookie@4.0.5': {} '@types/trusted-types@2.0.7': {} - '@types/ungap__structured-clone@1.2.0': {} - '@types/unist@2.0.10': {} '@types/unist@3.0.2': {} @@ -22900,13 +20477,6 @@ snapshots: '@vanilla-extract/private@1.0.3': {} - '@vercel/analytics@1.2.2(next@14.2.1(@babel/core@7.24.5)(@playwright/test@1.41.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0))(react@18.3.1)': - dependencies: - server-only: 0.0.1 - optionalDependencies: - next: 14.2.1(@babel/core@7.24.5)(@playwright/test@1.41.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0) - react: 18.3.1 - '@vercel/nft@0.26.4(encoding@0.1.13)': dependencies: '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13) @@ -23062,8 +20632,6 @@ snapshots: loupe: 2.3.7 pretty-format: 29.7.0 - '@vladfrangu/async_event_emitter@2.2.4': {} - '@volar/language-core@1.11.1': dependencies: '@volar/source-map': 1.11.1 @@ -23438,8 +21006,6 @@ snapshots: loader-utils: 2.0.4 regex-parser: 2.3.0 - adm-zip@0.5.12: {} - agent-base@6.0.2: dependencies: debug: 4.3.4 @@ -23501,8 +21067,6 @@ snapshots: require-from-string: 2.0.2 uri-js: 4.4.1 - animated-scroll-to@2.3.0: {} - ansi-align@3.0.1: dependencies: string-width: 4.2.3 @@ -23515,16 +21079,12 @@ snapshots: ansi-html-community@0.0.8: {} - ansi-regex@2.1.1: {} - ansi-regex@5.0.1: {} ansi-regex@6.0.1: {} ansi-sequence-parser@1.1.1: {} - ansi-styles@2.2.1: {} - ansi-styles@3.2.1: dependencies: color-convert: 1.9.3 @@ -23919,7 +21479,7 @@ snapshots: '@babel/core': 7.24.0 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) babel-plugin-istanbul@6.1.1: dependencies: @@ -23947,15 +21507,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.5): - dependencies: - '@babel/compat-data': 7.24.4 - '@babel/core': 7.24.5 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.5) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.24.0): dependencies: '@babel/core': 7.24.0 @@ -23964,14 +21515,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.24.5): - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.5) - core-js-compat: 3.37.0 - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.24.0): dependencies: '@babel/core': 7.24.0 @@ -23979,13 +21522,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.24.5): - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.5) - transitivePeerDependencies: - - supports-color - babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.5): dependencies: '@babel/core': 7.24.5 @@ -24252,18 +21788,6 @@ snapshots: cacheable-lookup@5.0.4: {} - cacheable-lookup@7.0.0: {} - - cacheable-request@10.2.14: - dependencies: - '@types/http-cache-semantics': 4.0.4 - get-stream: 6.0.1 - http-cache-semantics: 4.1.1 - keyv: 4.5.4 - mimic-response: 4.0.0 - normalize-url: 8.0.1 - responselike: 3.0.0 - cacheable-request@7.0.4: dependencies: clone-response: 1.0.3 @@ -24310,8 +21834,6 @@ snapshots: caniuse-lite@1.0.30001616: {} - canvas-confetti@1.9.3: {} - catharsis@0.9.0: dependencies: lodash: 4.17.21 @@ -24329,14 +21851,6 @@ snapshots: pathval: 1.1.1 type-detect: 4.0.8 - chalk@1.1.3: - dependencies: - ansi-styles: 2.2.1 - escape-string-regexp: 1.0.5 - has-ansi: 2.0.0 - strip-ansi: 3.0.1 - supports-color: 2.0.0 - chalk@2.4.2: dependencies: ansi-styles: 3.2.1 @@ -24527,7 +22041,8 @@ snapshots: estree-walker: 3.0.3 periscopic: 3.1.0 - collapse-white-space@2.1.0: {} + collapse-white-space@2.1.0: + optional: true collect-v8-coverage@1.0.2: {} @@ -24560,6 +22075,7 @@ snapshots: dependencies: color-name: 1.1.4 simple-swizzle: 0.2.2 + optional: true color-support@1.1.3: {} @@ -24567,6 +22083,7 @@ snapshots: dependencies: color-convert: 2.0.1 color-string: 1.9.1 + optional: true colord@2.9.3: {} @@ -24723,7 +22240,7 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) core-js-compat@3.36.0: dependencies: @@ -24747,15 +22264,6 @@ snapshots: jiti: 1.21.0 typescript: 5.4.5 - cosmiconfig@8.3.6(typescript@5.4.5): - dependencies: - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - path-type: 4.0.0 - optionalDependencies: - typescript: 5.4.5 - cosmiconfig@9.0.0(typescript@5.2.2): dependencies: env-paths: 2.2.1 @@ -24776,30 +22284,6 @@ snapshots: countup.js@2.8.0: {} - crawlee@3.10.0(playwright@1.41.2): - dependencies: - '@crawlee/basic': 3.10.0 - '@crawlee/browser': 3.10.0(playwright@1.41.2) - '@crawlee/browser-pool': 3.10.0(playwright@1.41.2) - '@crawlee/cheerio': 3.10.0 - '@crawlee/cli': 3.10.0 - '@crawlee/core': 3.10.0 - '@crawlee/http': 3.10.0 - '@crawlee/jsdom': 3.10.0 - '@crawlee/linkedom': 3.10.0 - '@crawlee/playwright': 3.10.0(playwright@1.41.2) - '@crawlee/puppeteer': 3.10.0(playwright@1.41.2) - '@crawlee/utils': 3.10.0 - import-local: 3.1.0 - tslib: 2.6.2 - optionalDependencies: - playwright: 1.41.2 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - crc-32@1.2.2: {} crc32-stream@6.0.0: @@ -24891,14 +22375,6 @@ snapshots: crossws@0.2.4: {} - css-color-list@0.0.1: - dependencies: - css-color-names: 0.0.1 - - css-color-names@0.0.1: {} - - css-color-names@1.0.1: {} - css-declaration-sorter@7.1.1(postcss@8.4.35): dependencies: postcss: 8.4.35 @@ -24914,7 +22390,7 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.6.0 optionalDependencies: - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) css-loader@6.10.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(webpack-cli@5.1.4)): dependencies: @@ -25020,11 +22496,10 @@ snapshots: cssstyle@4.0.1: dependencies: rrweb-cssom: 0.6.0 + optional: true csstype@3.1.3: {} - csv-stringify@6.5.0: {} - culori@4.0.1: {} custom-event@1.0.1: {} @@ -25047,6 +22522,7 @@ snapshots: dependencies: whatwg-mimetype: 4.0.0 whatwg-url: 14.0.0 + optional: true data-view-buffer@1.0.1: dependencies: @@ -25068,8 +22544,6 @@ snapshots: date-format@4.0.14: {} - dayjs@1.11.11: {} - db0@0.1.4: {} de-indent@1.0.2: {} @@ -25080,8 +22554,6 @@ snapshots: node-addon-api: 1.7.2 optional: true - debounce@1.2.1: {} - debug@2.6.9: dependencies: ms: 2.0.0 @@ -25169,8 +22641,6 @@ snapshots: dependencies: execa: 5.1.1 - default-passive-events@2.0.0: {} - defaults@1.0.4: dependencies: clone: 1.0.4 @@ -25329,14 +22799,6 @@ snapshots: dependencies: is-obj: 2.0.0 - dot-prop@6.0.1: - dependencies: - is-obj: 2.0.0 - - dot-prop@7.2.0: - dependencies: - type-fest: 2.19.0 - dot-prop@8.0.2: dependencies: type-fest: 3.13.1 @@ -25851,24 +23313,6 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-config-next@14.2.1(eslint@8.57.0)(typescript@5.4.5): - dependencies: - '@next/eslint-plugin-next': 14.2.1 - '@rushstack/eslint-patch': 1.7.2 - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) - eslint: 8.57.0 - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) - eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) - eslint-plugin-react: 7.34.1(eslint@8.57.0) - eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - eslint-import-resolver-webpack - - supports-color - eslint-config-techor@3.0.22(eslint@9.3.0)(typescript@5.4.5): dependencies: '@typescript-eslint/eslint-plugin': 7.8.0(@typescript-eslint/parser@7.8.0(eslint@9.3.0)(typescript@5.4.5))(eslint@9.3.0)(typescript@5.4.5) @@ -25928,23 +23372,6 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0): - dependencies: - debug: 4.3.4 - enhanced-resolve: 5.16.0 - eslint: 8.57.0 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) - fast-glob: 3.3.2 - get-tsconfig: 4.7.3 - is-core-module: 2.13.1 - is-glob: 4.0.3 - transitivePeerDependencies: - - '@typescript-eslint/parser' - - eslint-import-resolver-node - - eslint-import-resolver-webpack - - supports-color - eslint-mdx@2.3.4(eslint@8.57.0): dependencies: acorn: 8.11.3 @@ -26018,17 +23445,6 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0): - dependencies: - debug: 3.2.7(supports-color@5.5.0) - optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) - eslint: 8.57.0 - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) - transitivePeerDependencies: - - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@7.8.0(eslint@9.3.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): dependencies: debug: 3.2.7(supports-color@5.5.0) @@ -26072,33 +23488,6 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): - dependencies: - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 - debug: 3.2.7(supports-color@5.5.0) - doctrine: 2.1.0 - eslint: 8.57.0 - eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) - hasown: 2.0.2 - is-core-module: 2.13.1 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.fromentries: 2.0.8 - object.groupby: 1.0.3 - object.values: 1.2.0 - semver: 6.3.1 - tsconfig-paths: 3.15.0 - optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.8.0(eslint@9.3.0)(typescript@5.4.5))(eslint@8.57.0): dependencies: array-includes: 3.1.8 @@ -26421,8 +23810,6 @@ snapshots: esm-env@1.0.0: {} - esm@3.2.25: {} - espree@10.0.1: dependencies: acorn: 8.11.3 @@ -26456,6 +23843,7 @@ snapshots: estree-util-attach-comments@3.0.0: dependencies: '@types/estree': 1.0.5 + optional: true estree-util-build-jsx@2.2.2: dependencies: @@ -26469,6 +23857,7 @@ snapshots: devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 estree-walker: 3.0.3 + optional: true estree-util-is-identifier-name@1.1.0: {} @@ -26481,6 +23870,7 @@ snapshots: '@types/estree-jsx': 1.0.5 astring: 1.8.6 source-map: 0.7.4 + optional: true estree-util-value-to-estree@1.3.0: dependencies: @@ -26513,16 +23903,6 @@ snapshots: '@types/node': 20.12.10 require-like: 0.1.2 - event-stream@3.3.4: - dependencies: - duplexer: 0.1.2 - from: 0.1.7 - map-stream: 0.1.0 - pause-stream: 0.0.11 - split: 0.3.3 - stream-combiner: 0.0.4 - through: 2.3.8 - event-target-shim@5.0.1: {} eventemitter3@4.0.7: {} @@ -26722,8 +24102,6 @@ snapshots: dependencies: pend: 1.2.0 - figlet@1.7.0: {} - figures@3.2.0: dependencies: escape-string-regexp: 1.0.5 @@ -26736,16 +24114,8 @@ snapshots: dependencies: flat-cache: 4.0.1 - file-loader@6.2.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))): - dependencies: - loader-utils: 2.0.4 - schema-utils: 3.3.0 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) - file-uri-to-path@1.0.0: {} - filesize@10.1.2: {} - fill-range@7.0.1: dependencies: to-regex-range: 5.0.1 @@ -26805,19 +24175,6 @@ snapshots: micromatch: 4.0.5 pkg-dir: 4.2.0 - fingerprint-generator@2.1.51: - dependencies: - generative-bayesian-network: 2.1.51 - header-generator: 2.1.51 - tslib: 2.6.2 - - fingerprint-injector@2.1.51(playwright@1.41.2): - dependencies: - fingerprint-generator: 2.1.51 - tslib: 2.6.2 - optionalDependencies: - playwright: 1.41.2 - firebase-admin@11.11.1(encoding@0.1.13): dependencies: '@fastify/busboy': 1.2.1 @@ -26835,38 +24192,6 @@ snapshots: - encoding - supports-color - firebase@10.12.1: - dependencies: - '@firebase/analytics': 0.10.4(@firebase/app@0.10.4) - '@firebase/analytics-compat': 0.2.10(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4) - '@firebase/app': 0.10.4 - '@firebase/app-check': 0.8.4(@firebase/app@0.10.4) - '@firebase/app-check-compat': 0.3.11(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4) - '@firebase/app-compat': 0.2.34 - '@firebase/app-types': 0.9.2 - '@firebase/auth': 1.7.3(@firebase/app@0.10.4) - '@firebase/auth-compat': 0.5.8(@firebase/app-compat@0.2.34)(@firebase/app-types@0.9.2)(@firebase/app@0.10.4) - '@firebase/database': 1.0.5 - '@firebase/database-compat': 1.0.5 - '@firebase/firestore': 4.6.3(@firebase/app@0.10.4) - '@firebase/firestore-compat': 0.3.32(@firebase/app-compat@0.2.34)(@firebase/app-types@0.9.2)(@firebase/app@0.10.4) - '@firebase/functions': 0.11.5(@firebase/app@0.10.4) - '@firebase/functions-compat': 0.3.11(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4) - '@firebase/installations': 0.6.7(@firebase/app@0.10.4) - '@firebase/installations-compat': 0.2.7(@firebase/app-compat@0.2.34)(@firebase/app-types@0.9.2)(@firebase/app@0.10.4) - '@firebase/messaging': 0.12.9(@firebase/app@0.10.4) - '@firebase/messaging-compat': 0.2.9(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4) - '@firebase/performance': 0.6.7(@firebase/app@0.10.4) - '@firebase/performance-compat': 0.2.7(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4) - '@firebase/remote-config': 0.4.7(@firebase/app@0.10.4) - '@firebase/remote-config-compat': 0.2.7(@firebase/app-compat@0.2.34)(@firebase/app@0.10.4) - '@firebase/storage': 0.12.5(@firebase/app@0.10.4) - '@firebase/storage-compat': 0.3.8(@firebase/app-compat@0.2.34)(@firebase/app-types@0.9.2)(@firebase/app@0.10.4) - '@firebase/util': 1.9.6 - '@firebase/vertexai-preview': 0.0.1(@firebase/app-types@0.9.2)(@firebase/app@0.10.4) - transitivePeerDependencies: - - '@react-native-async-storage/async-storage' - flat-cache@3.2.0: dependencies: flatted: 3.3.1 @@ -26893,8 +24218,6 @@ snapshots: cross-spawn: 7.0.3 signal-exit: 4.1.0 - form-data-encoder@2.1.4: {} - form-data@2.5.1: dependencies: asynckit: 0.4.0 @@ -26915,8 +24238,6 @@ snapshots: fresh@0.5.2: {} - from@0.1.7: {} - fs-constants@1.0.0: {} fs-extra@10.1.0: @@ -26969,8 +24290,6 @@ snapshots: functions-have-names@1.2.3: {} - fuse.js@6.6.2: {} - gauge@3.0.2: dependencies: aproba: 2.0.0 @@ -27021,11 +24340,6 @@ snapshots: - encoding - supports-color - generative-bayesian-network@2.1.51: - dependencies: - adm-zip: 0.5.12 - tslib: 2.6.2 - generic-names@4.0.0: dependencies: loader-utils: 3.2.1 @@ -27034,14 +24348,6 @@ snapshots: get-caller-file@2.0.5: {} - get-contrast@3.0.0: - dependencies: - css-color-names: 1.0.1 - is-blank: 2.1.0 - is-named-css-color: 1.0.0 - rgb: 0.1.0 - wcag-contrast: 3.0.0 - get-east-asian-width@1.2.0: {} get-func-name@2.0.2: {} @@ -27150,14 +24456,6 @@ snapshots: minipass: 7.0.4 path-scurry: 1.10.2 - glob@5.0.15: - dependencies: - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - glob@7.2.3: dependencies: fs.realpath: 1.0.0 @@ -27179,10 +24477,6 @@ snapshots: dependencies: ini: 4.1.1 - global-jsdom@9.2.0(jsdom@24.0.0): - dependencies: - jsdom: 24.0.0 - globals@11.12.0: {} globals@13.24.0: @@ -27300,16 +24594,6 @@ snapshots: dependencies: get-intrinsic: 1.2.4 - got-scraping@4.0.5: - dependencies: - got: 13.0.0 - header-generator: 2.1.51 - http2-wrapper: 2.2.1 - mimic-response: 4.0.0 - ow: 1.1.1 - quick-lru: 7.0.0 - tslib: 2.6.2 - got@11.8.6: dependencies: '@sindresorhus/is': 4.6.0 @@ -27324,20 +24608,6 @@ snapshots: p-cancelable: 2.1.1 responselike: 2.0.1 - got@13.0.0: - dependencies: - '@sindresorhus/is': 5.6.0 - '@szmarczak/http-timer': 5.0.1 - cacheable-lookup: 7.0.0 - cacheable-request: 10.2.14 - decompress-response: 6.0.0 - form-data-encoder: 2.1.4 - get-stream: 6.0.1 - http2-wrapper: 2.2.1 - lowercase-keys: 3.0.0 - p-cancelable: 3.0.0 - responselike: 3.0.0 - graceful-fs@4.2.11: {} graphemer@1.4.0: {} @@ -27376,10 +24646,6 @@ snapshots: pumpify: 1.5.1 through2: 2.0.5 - gzip-size@6.0.0: - dependencies: - duplexer: 0.1.2 - gzip-size@7.0.0: dependencies: duplexer: 0.1.2 @@ -27401,10 +24667,6 @@ snapshots: handle-thing@2.0.1: {} - has-ansi@2.0.0: - dependencies: - ansi-regex: 2.1.1 - has-bigints@1.0.2: {} has-flag@3.0.0: {} @@ -27452,10 +24714,6 @@ snapshots: vfile-location: 5.0.2 web-namespaces: 2.0.1 - hast-util-heading-rank@3.0.0: - dependencies: - '@types/hast': 3.0.4 - hast-util-parse-selector@3.1.1: dependencies: '@types/hast': 2.3.10 @@ -27534,6 +24792,7 @@ snapshots: zwitch: 2.0.4 transitivePeerDependencies: - supports-color + optional: true hast-util-to-html@8.0.4: dependencies: @@ -27583,6 +24842,7 @@ snapshots: vfile-message: 4.0.2 transitivePeerDependencies: - supports-color + optional: true hast-util-to-parse5@7.1.0: dependencies: @@ -27603,10 +24863,6 @@ snapshots: web-namespaces: 2.0.1 zwitch: 2.0.4 - hast-util-to-string@3.0.0: - dependencies: - '@types/hast': 3.0.4 - hast-util-whitespace@2.0.1: {} hast-util-whitespace@3.0.0: @@ -27631,13 +24887,6 @@ snapshots: he@1.2.0: {} - header-generator@2.1.51: - dependencies: - browserslist: 4.23.0 - generative-bayesian-network: 2.1.51 - ow: 0.28.2 - tslib: 2.6.2 - hookable@5.5.3: {} hosted-git-info@2.8.9: {} @@ -27666,6 +24915,7 @@ snapshots: html-encoding-sniffer@4.0.0: dependencies: whatwg-encoding: 3.1.1 + optional: true html-entities@2.5.2: {} @@ -27689,7 +24939,7 @@ snapshots: html-void-elements@3.0.0: {} - html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(webpack-cli@5.1.4)): + html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -27697,9 +24947,10 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(webpack-cli@5.1.4) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) + optional: true - html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))): + html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(webpack-cli@5.1.4)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -27707,8 +24958,7 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) - optional: true + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(webpack-cli@5.1.4) htmlparser2@6.1.0: dependencies: @@ -27794,11 +25044,6 @@ snapshots: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - http2-wrapper@2.2.1: - dependencies: - quick-lru: 5.1.1 - resolve-alpn: 1.2.1 - https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 @@ -27843,8 +25088,6 @@ snapshots: idb@7.1.1: {} - idcac-playwright@0.1.2: {} - ieee754@1.2.1: {} ignore-by-default@1.0.1: {} @@ -27907,7 +25150,8 @@ snapshots: inline-style-parser@0.1.1: {} - inline-style-parser@0.2.3: {} + inline-style-parser@0.2.3: + optional: true inquirer@8.2.6: dependencies: @@ -27992,8 +25236,6 @@ snapshots: is-alphabetical: 2.0.1 is-decimal: 2.0.1 - is-any-array@2.0.1: {} - is-arguments@1.1.1: dependencies: call-bind: 1.0.7 @@ -28006,7 +25248,8 @@ snapshots: is-arrayish@0.2.1: {} - is-arrayish@0.3.2: {} + is-arrayish@0.3.2: + optional: true is-async-function@2.0.0: dependencies: @@ -28020,11 +25263,6 @@ snapshots: dependencies: binary-extensions: 2.3.0 - is-blank@2.1.0: - dependencies: - is-empty: 1.2.0 - is-whitespace: 0.3.0 - is-boolean-object@1.1.2: dependencies: call-bind: 1.0.7 @@ -28107,10 +25345,6 @@ snapshots: is-module@1.0.0: {} - is-named-css-color@1.0.0: - dependencies: - css-color-list: 0.0.1 - is-negative-zero@2.0.3: {} is-number-object@1.0.7: @@ -28135,8 +25369,6 @@ snapshots: dependencies: isobject: 3.0.1 - is-plain-object@5.0.0: {} - is-potential-custom-element-name@1.0.1: {} is-primitive@3.0.1: {} @@ -28206,8 +25438,6 @@ snapshots: is-what@3.14.1: {} - is-whitespace@0.3.0: {} - is-wsl@2.2.0: dependencies: is-docker: 2.2.1 @@ -28798,8 +26028,6 @@ snapshots: jose@4.15.5: {} - jquery@3.7.1: {} - js-beautify@1.15.1: dependencies: config-chain: 1.1.13 @@ -28909,6 +26137,7 @@ snapshots: - bufferutil - supports-color - utf-8-validate + optional: true jsesc@0.5.0: {} @@ -29073,8 +26302,6 @@ snapshots: - supports-color - utf-8-validate - kebab-case@1.0.2: {} - keytar@7.9.0: dependencies: node-addon-api: 4.3.0 @@ -29127,7 +26354,7 @@ snapshots: dependencies: klona: 2.0.6 less: 4.2.0 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) less@4.2.0: dependencies: @@ -29160,7 +26387,7 @@ snapshots: dependencies: webpack-sources: 3.2.3 optionalDependencies: - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) lilconfig@3.1.1: {} @@ -29170,14 +26397,6 @@ snapshots: lines-and-columns@2.0.4: {} - linkedom@0.18.0: - dependencies: - css-select: 5.1.0 - cssom: 0.5.0 - html-escaper: 3.0.3 - htmlparser2: 9.1.0 - uhyphen: 0.2.0 - linkify-it@3.0.3: dependencies: uc.micro: 1.0.6 @@ -29370,8 +26589,6 @@ snapshots: lowercase-keys@2.0.0: {} - lowercase-keys@3.0.0: {} - lru-cache@10.2.0: {} lru-cache@4.0.2: @@ -29446,11 +26663,10 @@ snapshots: dependencies: tmpl: 1.0.5 - map-stream@0.1.0: {} - markdown-extensions@1.1.1: {} - markdown-extensions@2.0.0: {} + markdown-extensions@2.0.0: + optional: true markdown-it-anchor@8.6.7(@types/markdown-it@14.1.1)(markdown-it@14.1.0): dependencies: @@ -29500,13 +26716,6 @@ snapshots: unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 - mdast-util-find-and-replace@3.0.1: - dependencies: - '@types/mdast': 4.0.3 - escape-string-regexp: 5.0.0 - unist-util-is: 6.0.0 - unist-util-visit-parents: 6.0.1 - mdast-util-from-markdown@0.8.5: dependencies: '@types/mdast': 3.0.15 @@ -29564,43 +26773,17 @@ snapshots: mdast-util-find-and-replace: 2.2.2 micromark-util-character: 1.2.0 - mdast-util-gfm-autolink-literal@2.0.0: - dependencies: - '@types/mdast': 4.0.3 - ccount: 2.0.1 - devlop: 1.1.0 - mdast-util-find-and-replace: 3.0.1 - micromark-util-character: 2.1.0 - mdast-util-gfm-footnote@1.0.2: dependencies: '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 micromark-util-normalize-identifier: 1.1.0 - mdast-util-gfm-footnote@2.0.0: - dependencies: - '@types/mdast': 4.0.3 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.0 - mdast-util-to-markdown: 2.1.0 - micromark-util-normalize-identifier: 2.0.0 - transitivePeerDependencies: - - supports-color - mdast-util-gfm-strikethrough@1.0.3: dependencies: '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 - mdast-util-gfm-strikethrough@2.0.0: - dependencies: - '@types/mdast': 4.0.3 - mdast-util-from-markdown: 2.0.0 - mdast-util-to-markdown: 2.1.0 - transitivePeerDependencies: - - supports-color - mdast-util-gfm-table@1.0.7: dependencies: '@types/mdast': 3.0.15 @@ -29610,30 +26793,11 @@ snapshots: transitivePeerDependencies: - supports-color - mdast-util-gfm-table@2.0.0: - dependencies: - '@types/mdast': 4.0.3 - devlop: 1.1.0 - markdown-table: 3.0.3 - mdast-util-from-markdown: 2.0.0 - mdast-util-to-markdown: 2.1.0 - transitivePeerDependencies: - - supports-color - mdast-util-gfm-task-list-item@1.0.2: dependencies: '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 - mdast-util-gfm-task-list-item@2.0.0: - dependencies: - '@types/mdast': 4.0.3 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.0 - mdast-util-to-markdown: 2.1.0 - transitivePeerDependencies: - - supports-color - mdast-util-gfm@2.0.2: dependencies: mdast-util-from-markdown: 1.3.1 @@ -29646,18 +26810,6 @@ snapshots: transitivePeerDependencies: - supports-color - mdast-util-gfm@3.0.0: - dependencies: - mdast-util-from-markdown: 2.0.0 - mdast-util-gfm-autolink-literal: 2.0.0 - mdast-util-gfm-footnote: 2.0.0 - mdast-util-gfm-strikethrough: 2.0.0 - mdast-util-gfm-table: 2.0.0 - mdast-util-gfm-task-list-item: 2.0.0 - mdast-util-to-markdown: 2.1.0 - transitivePeerDependencies: - - supports-color - mdast-util-mdx-expression@1.3.2: dependencies: '@types/estree-jsx': 1.0.5 @@ -29851,16 +27003,6 @@ snapshots: dependencies: '@types/mdast': 4.0.3 - mdast-util-toc@7.0.1: - dependencies: - '@types/mdast': 4.0.3 - '@types/ungap__structured-clone': 1.2.0 - '@ungap/structured-clone': 1.2.0 - github-slugger: 2.0.0 - mdast-util-to-string: 4.0.0 - unist-util-is: 6.0.0 - unist-util-visit: 5.0.0 - mdn-data@2.0.28: {} mdn-data@2.0.30: {} @@ -29963,13 +27105,6 @@ snapshots: micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 - micromark-extension-gfm-autolink-literal@2.0.0: - dependencies: - micromark-util-character: 2.1.0 - micromark-util-sanitize-uri: 2.0.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - micromark-extension-gfm-footnote@1.1.2: dependencies: micromark-core-commonmark: 1.1.0 @@ -29981,17 +27116,6 @@ snapshots: micromark-util-types: 1.1.0 uvu: 0.5.6 - micromark-extension-gfm-footnote@2.0.0: - dependencies: - devlop: 1.1.0 - micromark-core-commonmark: 2.0.1 - micromark-factory-space: 2.0.0 - micromark-util-character: 2.1.0 - micromark-util-normalize-identifier: 2.0.0 - micromark-util-sanitize-uri: 2.0.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - micromark-extension-gfm-strikethrough@1.0.7: dependencies: micromark-util-chunked: 1.1.0 @@ -30001,15 +27125,6 @@ snapshots: micromark-util-types: 1.1.0 uvu: 0.5.6 - micromark-extension-gfm-strikethrough@2.0.0: - dependencies: - devlop: 1.1.0 - micromark-util-chunked: 2.0.0 - micromark-util-classify-character: 2.0.0 - micromark-util-resolve-all: 2.0.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - micromark-extension-gfm-table@1.0.7: dependencies: micromark-factory-space: 1.1.0 @@ -30018,22 +27133,10 @@ snapshots: micromark-util-types: 1.1.0 uvu: 0.5.6 - micromark-extension-gfm-table@2.0.0: - dependencies: - devlop: 1.1.0 - micromark-factory-space: 2.0.0 - micromark-util-character: 2.1.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - micromark-extension-gfm-tagfilter@1.0.2: dependencies: micromark-util-types: 1.1.0 - micromark-extension-gfm-tagfilter@2.0.0: - dependencies: - micromark-util-types: 2.0.0 - micromark-extension-gfm-task-list-item@1.0.5: dependencies: micromark-factory-space: 1.1.0 @@ -30042,14 +27145,6 @@ snapshots: micromark-util-types: 1.1.0 uvu: 0.5.6 - micromark-extension-gfm-task-list-item@2.0.1: - dependencies: - devlop: 1.1.0 - micromark-factory-space: 2.0.0 - micromark-util-character: 2.1.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - micromark-extension-gfm@2.0.3: dependencies: micromark-extension-gfm-autolink-literal: 1.0.5 @@ -30061,17 +27156,6 @@ snapshots: micromark-util-combine-extensions: 1.1.0 micromark-util-types: 1.1.0 - micromark-extension-gfm@3.0.0: - dependencies: - micromark-extension-gfm-autolink-literal: 2.0.0 - micromark-extension-gfm-footnote: 2.0.0 - micromark-extension-gfm-strikethrough: 2.0.0 - micromark-extension-gfm-table: 2.0.0 - micromark-extension-gfm-tagfilter: 2.0.0 - micromark-extension-gfm-task-list-item: 2.0.1 - micromark-util-combine-extensions: 2.0.0 - micromark-util-types: 2.0.0 - micromark-extension-mdx-expression@1.0.8: dependencies: '@types/estree': 1.0.5 @@ -30487,15 +27571,13 @@ snapshots: mimic-response@3.1.0: {} - mimic-response@4.0.0: {} - min-indent@1.0.1: {} mini-css-extract-plugin@2.8.1(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)): dependencies: schema-utils: 4.2.0 tapable: 2.2.1 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) minimalistic-assert@1.0.1: {} @@ -30596,29 +27678,6 @@ snapshots: sass: 1.77.0 typescript: 5.4.5 - ml-array-max@1.2.4: - dependencies: - is-any-array: 2.0.1 - - ml-array-min@1.2.3: - dependencies: - is-any-array: 2.0.1 - - ml-array-rescale@1.3.7: - dependencies: - is-any-array: 2.0.1 - ml-array-max: 1.2.4 - ml-array-min: 1.2.3 - - ml-logistic-regression@2.0.0: - dependencies: - ml-matrix: 6.11.0 - - ml-matrix@6.11.0: - dependencies: - is-any-array: 2.0.1 - ml-array-rescale: 1.3.7 - mlly@1.6.1: dependencies: acorn: 8.11.3 @@ -30769,33 +27828,6 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@14.2.1(@babel/core@7.24.5)(@playwright/test@1.41.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0): - dependencies: - '@next/env': 14.2.1 - '@swc/helpers': 0.5.5 - busboy: 1.6.0 - caniuse-lite: 1.0.30001612 - graceful-fs: 4.2.11 - postcss: 8.4.31 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(@babel/core@7.24.5)(react@18.3.1) - optionalDependencies: - '@next/swc-darwin-arm64': 14.2.1 - '@next/swc-darwin-x64': 14.2.1 - '@next/swc-linux-arm64-gnu': 14.2.1 - '@next/swc-linux-arm64-musl': 14.2.1 - '@next/swc-linux-x64-gnu': 14.2.1 - '@next/swc-linux-x64-musl': 14.2.1 - '@next/swc-win32-arm64-msvc': 14.2.1 - '@next/swc-win32-ia32-msvc': 14.2.1 - '@next/swc-win32-x64-msvc': 14.2.1 - '@playwright/test': 1.41.2 - sass: 1.77.0 - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-macros - nice-napi@1.0.2: dependencies: node-addon-api: 3.2.1 @@ -31007,8 +28039,6 @@ snapshots: normalize-url@6.1.0: {} - normalize-url@8.0.1: {} - npm-bundled@2.0.1: dependencies: npm-normalize-package-bin: 2.0.0 @@ -31403,7 +28433,8 @@ snapshots: nwsapi@2.2.7: {} - nwsapi@2.2.9: {} + nwsapi@2.2.9: + optional: true nypm@0.3.8: dependencies: @@ -31537,8 +28568,6 @@ snapshots: undici: 5.28.4 yargs-parser: 21.1.1 - opener@1.5.2: {} - optionator@0.8.3: dependencies: deep-is: 0.1.4 @@ -31619,26 +28648,8 @@ snapshots: outdent@0.8.0: {} - ow@0.28.2: - dependencies: - '@sindresorhus/is': 4.6.0 - callsites: 3.1.0 - dot-prop: 6.0.1 - lodash.isequal: 4.5.0 - vali-date: 1.0.0 - - ow@1.1.1: - dependencies: - '@sindresorhus/is': 5.6.0 - callsites: 4.1.0 - dot-prop: 7.2.0 - lodash.isequal: 4.5.0 - vali-date: 1.0.0 - p-cancelable@2.1.1: {} - p-cancelable@3.0.0: {} - p-limit@2.3.0: dependencies: p-try: 2.2.0 @@ -31742,8 +28753,6 @@ snapshots: dependencies: callsites: 4.1.0 - parent-require@1.0.0: {} - parse-entities@2.0.0: dependencies: character-entities: 1.2.4 @@ -31885,10 +28894,6 @@ snapshots: pathval@1.1.1: {} - pause-stream@0.0.11: - dependencies: - through: 2.3.8 - peek-stream@1.1.3: dependencies: buffer-from: 1.1.2 @@ -32015,7 +29020,7 @@ snapshots: postcss: 8.4.35 semver: 7.6.0 optionalDependencies: - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) transitivePeerDependencies: - typescript @@ -32286,8 +29291,6 @@ snapshots: dependencies: parse-ms: 3.0.0 - prism-svelte@0.5.0: {} - prismjs@1.29.0: {} probe-image-size@7.2.3: @@ -32326,12 +29329,6 @@ snapshots: object-assign: 4.1.1 react-is: 16.13.1 - proper-lockfile@4.1.2: - dependencies: - graceful-fs: 4.2.11 - retry: 0.12.0 - signal-exit: 3.0.7 - property-information@6.4.1: {} property-information@6.5.0: {} @@ -32409,10 +29406,6 @@ snapshots: transitivePeerDependencies: - supports-color - proxy-chain@2.4.0: - dependencies: - tslib: 2.6.2 - proxy-from-env@1.1.0: {} prr@1.0.1: @@ -32483,8 +29476,6 @@ snapshots: quick-lru@5.1.1: {} - quick-lru@7.0.0: {} - radix3@1.1.1: {} randombytes@2.1.0: @@ -32500,12 +29491,6 @@ snapshots: iconv-lite: 0.4.24 unpipe: 1.0.0 - raw-loader@4.0.2(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))): - dependencies: - loader-utils: 2.0.4 - schema-utils: 3.3.0 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) - rc9@2.1.1: dependencies: defu: 6.1.4 @@ -32537,34 +29522,18 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-fast-compare@3.2.2: {} - react-intersection-observer@9.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 optionalDependencies: react-dom: 18.2.0(react@18.2.0) - react-intersection-observer@9.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - react: 18.3.1 - optionalDependencies: - react-dom: 18.3.1(react@18.3.1) - react-is@16.13.1: {} react-is@17.0.2: {} react-is@18.2.0: {} - react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - '@popperjs/core': 2.11.8 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-fast-compare: 3.2.2 - warning: 4.0.3 - react-refresh@0.14.0: {} react-router-dom@6.14.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): @@ -32574,23 +29543,11 @@ snapshots: react-dom: 18.2.0(react@18.2.0) react-router: 6.14.2(react@18.2.0) - react-router-dom@6.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - '@remix-run/router': 1.16.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router: 6.23.1(react@18.3.1) - react-router@6.14.2(react@18.2.0): dependencies: '@remix-run/router': 1.7.2 react: 18.2.0 - react-router@6.23.1(react@18.3.1): - dependencies: - '@remix-run/router': 1.16.1 - react: 18.3.1 - react@18.2.0: dependencies: loose-envify: 1.4.0 @@ -32736,14 +29693,6 @@ snapshots: hast-util-raw: 7.2.3 unified: 10.1.2 - rehype-slug@6.0.0: - dependencies: - '@types/hast': 3.0.4 - github-slugger: 2.0.0 - hast-util-heading-rank: 3.0.0 - hast-util-to-string: 3.0.0 - unist-util-visit: 5.0.0 - rehype-stringify@9.0.4: dependencies: '@types/hast': 2.3.10 @@ -32759,10 +29708,6 @@ snapshots: relateurl@0.2.7: {} - relative-luminance@2.0.1: - dependencies: - esm: 3.2.25 - remark-frontmatter@4.0.1: dependencies: '@types/mdast': 3.0.15 @@ -32779,17 +29724,6 @@ snapshots: transitivePeerDependencies: - supports-color - remark-gfm@4.0.0: - dependencies: - '@types/mdast': 4.0.3 - mdast-util-gfm: 3.0.0 - micromark-extension-gfm: 3.0.0 - remark-parse: 11.0.0 - remark-stringify: 11.0.0 - unified: 11.0.4 - transitivePeerDependencies: - - supports-color - remark-mdx-frontmatter@1.1.1: dependencies: estree-util-is-identifier-name: 1.1.0 @@ -32842,6 +29776,7 @@ snapshots: mdast-util-to-hast: 13.1.0 unified: 11.0.4 vfile: 6.0.1 + optional: true remark-rehype@9.1.0: dependencies: @@ -32850,15 +29785,6 @@ snapshots: mdast-util-to-hast: 11.3.0 unified: 10.1.2 - remark-slug@7.0.1: - dependencies: - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 - github-slugger: 1.5.0 - mdast-util-to-string: 3.2.0 - unified: 10.1.2 - unist-util-visit: 4.1.2 - remark-smartypants@2.1.0: dependencies: retext: 8.1.0 @@ -32877,20 +29803,6 @@ snapshots: mdast-util-to-markdown: 2.1.0 unified: 11.0.4 - remark-toc@9.0.0: - dependencies: - '@types/mdast': 4.0.3 - mdast-util-toc: 7.0.1 - - remark@15.0.1: - dependencies: - '@types/mdast': 4.0.3 - remark-parse: 11.0.0 - remark-stringify: 11.0.0 - unified: 11.0.4 - transitivePeerDependencies: - - supports-color - renderkid@3.0.0: dependencies: css-select: 4.3.0 @@ -32954,10 +29866,6 @@ snapshots: dependencies: lowercase-keys: 2.0.0 - responselike@3.0.0: - dependencies: - lowercase-keys: 3.0.0 - restore-cursor@3.1.0: dependencies: onetime: 5.1.2 @@ -33020,8 +29928,6 @@ snapshots: rfdc@1.3.1: {} - rgb@0.1.0: {} - rimraf@2.7.1: dependencies: glob: 7.2.3 @@ -33030,8 +29936,6 @@ snapshots: dependencies: glob: 7.2.3 - robots-parser@3.0.1: {} - rollup-plugin-dts@6.1.0(rollup@3.29.4)(typescript@5.4.5): dependencies: magic-string: 0.30.8 @@ -33122,7 +30026,8 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.17.2 fsevents: 2.3.3 - rrweb-cssom@0.6.0: {} + rrweb-cssom@0.6.0: + optional: true run-applescript@5.0.0: dependencies: @@ -33183,7 +30088,7 @@ snapshots: neo-async: 2.6.2 optionalDependencies: sass: 1.71.1 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) sass@1.71.1: dependencies: @@ -33196,6 +30101,7 @@ snapshots: chokidar: 3.6.0 immutable: 4.3.5 source-map-js: 1.2.0 + optional: true sax@1.3.0: {} @@ -33297,8 +30203,6 @@ snapshots: server-destroy@1.0.1: {} - server-only@0.0.1: {} - set-blocking@2.0.0: {} set-cookie-parser@2.6.0: {} @@ -33364,6 +30268,7 @@ snapshots: '@img/sharp-wasm32': 0.33.3 '@img/sharp-win32-ia32': 0.33.3 '@img/sharp-win32-x64': 0.33.3 + optional: true shebang-command@1.2.0: dependencies: @@ -33437,6 +30342,7 @@ snapshots: simple-swizzle@0.2.2: dependencies: is-arrayish: 0.3.2 + optional: true simple-update-notifier@1.1.0: dependencies: @@ -33463,17 +30369,10 @@ snapshots: slash@5.1.0: {} - slugify@1.6.6: {} - smart-buffer@4.2.0: {} smob@1.4.1: {} - snake-case@3.0.4: - dependencies: - dot-case: 3.0.4 - tslib: 2.6.2 - socket.io-adapter@2.5.4: dependencies: debug: 4.3.4 @@ -33549,7 +30448,7 @@ snapshots: dependencies: iconv-lite: 0.6.3 source-map-js: 1.2.0 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) source-map-support@0.5.13: dependencies: @@ -33567,8 +30466,6 @@ snapshots: space-separated-tokens@2.0.2: {} - spawn-sync@2.0.0: {} - spawnd@9.0.2: dependencies: signal-exit: 4.1.0 @@ -33611,10 +30508,6 @@ snapshots: split2@4.2.0: {} - split@0.3.3: - dependencies: - through: 2.3.8 - sprintf-js@1.0.3: {} sprintf-js@1.1.3: {} @@ -33657,20 +30550,10 @@ snapshots: stoppable@1.1.0: {} - stream-chain@2.2.5: {} - - stream-combiner@0.0.4: - dependencies: - duplexer: 0.1.2 - stream-events@1.0.5: dependencies: stubs: 3.0.0 - stream-json@1.8.0: - dependencies: - stream-chain: 2.2.5 - stream-parser@0.3.1: dependencies: debug: 2.6.9 @@ -33698,8 +30581,6 @@ snapshots: optionalDependencies: bare-events: 2.2.1 - string-comparison@1.3.0: {} - string-hash@1.1.3: {} string-length@4.0.2: @@ -33804,10 +30685,6 @@ snapshots: character-entities-html4: 2.1.0 character-entities-legacy: 3.0.0 - strip-ansi@3.0.1: - dependencies: - ansi-regex: 2.1.1 - strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 @@ -33858,6 +30735,7 @@ snapshots: style-to-object@1.0.6: dependencies: inline-style-parser: 0.2.3 + optional: true styled-jsx@5.1.1(@babel/core@7.24.5)(react@18.2.0): dependencies: @@ -33866,13 +30744,6 @@ snapshots: optionalDependencies: '@babel/core': 7.24.5 - styled-jsx@5.1.1(@babel/core@7.24.5)(react@18.3.1): - dependencies: - client-only: 0.0.1 - react: 18.3.1 - optionalDependencies: - '@babel/core': 7.24.5 - stylehacks@6.1.0(postcss@8.4.35): dependencies: browserslist: 4.23.0 @@ -33893,8 +30764,6 @@ snapshots: dependencies: s.color: 0.0.15 - supports-color@2.0.0: {} - supports-color@5.5.0: dependencies: has-flag: 3.0.0 @@ -33987,8 +30856,6 @@ snapshots: magic-string: 0.30.8 periscopic: 3.1.0 - svg-parser@2.0.4: {} - svg-tags@1.0.0: {} svgo@3.2.0: @@ -34128,7 +30995,7 @@ snapshots: schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.29.2 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) optionalDependencies: '@swc/core': 1.4.16(@swc/helpers@0.5.5) esbuild: 0.20.1 @@ -34180,8 +31047,6 @@ snapshots: dependencies: any-promise: 1.3.0 - throttle-debounce@5.0.0: {} - through2@2.0.5: dependencies: readable-stream: 2.3.8 @@ -34191,13 +31056,6 @@ snapshots: thunky@1.1.0: {} - timeago-react@3.0.6(react@18.3.1): - dependencies: - react: 18.3.1 - timeago.js: 4.0.2 - - timeago.js@4.0.2: {} - tiny-glob@0.2.9: dependencies: globalyzer: 0.1.0 @@ -34205,8 +31063,6 @@ snapshots: tiny-invariant@1.3.3: {} - tiny-typed-emitter@2.1.0: {} - tinybench@2.6.0: {} tinypool@0.8.2: {} @@ -34217,12 +31073,6 @@ snapshots: titleize@3.0.0: {} - tldts-core@6.1.21: {} - - tldts@6.1.21: - dependencies: - tldts-core: 6.1.21 - tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 @@ -34265,6 +31115,7 @@ snapshots: punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 + optional: true tr46@0.0.3: {} @@ -34275,6 +31126,7 @@ snapshots: tr46@5.0.0: dependencies: punycode: 2.3.1 + optional: true tree-kill@1.2.2: {} @@ -34478,8 +31330,6 @@ snapshots: type-fest@3.13.1: {} - type-fest@4.18.2: {} - type-is@1.6.18: dependencies: media-typer: 0.3.0 @@ -34569,8 +31419,6 @@ snapshots: uglify-js@3.17.4: optional: true - uhyphen@0.2.0: {} - ultrahtml@1.5.3: {} unbox-primitive@1.0.2: @@ -34969,15 +31817,6 @@ snapshots: url-join@4.0.1: {} - url-loader@4.1.1(file-loader@6.2.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))): - dependencies: - loader-utils: 2.0.4 - mime-types: 2.1.35 - schema-utils: 3.3.0 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) - optionalDependencies: - file-loader: 6.2.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))) - url-parse@1.5.10: dependencies: querystringify: 2.2.0 @@ -34991,11 +31830,6 @@ snapshots: dependencies: react: 18.2.0 - usehooks-ts@2.16.0(react@18.3.1): - dependencies: - lodash.debounce: 4.0.8 - react: 18.3.1 - util-deprecate@1.0.2: {} util@0.12.5: @@ -35041,8 +31875,6 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - vali-date@1.0.0: {} - validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.2.0 @@ -35723,6 +32555,7 @@ snapshots: w3c-xmlserializer@5.0.0: dependencies: xml-name-validator: 5.0.0 + optional: true walk-up-path@3.0.1: {} @@ -35730,10 +32563,6 @@ snapshots: dependencies: makeerror: 1.0.12 - warning@4.0.3: - dependencies: - loose-envify: 1.4.0 - watchpack@2.4.0: dependencies: glob-to-regexp: 0.4.1 @@ -35748,10 +32577,6 @@ snapshots: dependencies: minimalistic-assert: 1.0.1 - wcag-contrast@3.0.0: - dependencies: - relative-luminance: 2.0.1 - wcwidth@1.0.1: dependencies: defaults: 1.0.4 @@ -35770,25 +32595,6 @@ snapshots: webidl-conversions@7.0.0: {} - webpack-bundle-analyzer@4.10.1: - dependencies: - '@discoveryjs/json-ext': 0.5.7 - 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 - ws: 7.5.9 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - webpack-cli@5.1.4(webpack-dev-server@4.15.1)(webpack@5.90.3): dependencies: '@discoveryjs/json-ext': 0.5.7 @@ -35815,7 +32621,7 @@ snapshots: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) webpack-dev-middleware@5.3.3(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(webpack-cli@5.1.4)): dependencies: @@ -35834,7 +32640,7 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.2.0 optionalDependencies: - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) webpack-dev-server@4.15.1(webpack-cli@5.1.4)(webpack@5.90.3): dependencies: @@ -35910,17 +32716,13 @@ snapshots: webpack-dev-middleware: 5.3.3(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) ws: 8.16.0 optionalDependencies: - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) transitivePeerDependencies: - bufferutil - debug - supports-color - utf-8-validate - webpack-import-glob-loader@1.6.3: - dependencies: - glob: 5.0.15 - webpack-merge@5.10.0: dependencies: clone-deep: 4.0.1 @@ -35929,18 +32731,18 @@ snapshots: webpack-sources@3.2.3: {} - webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))))(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)): + webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)))(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)): dependencies: typed-assert: 1.0.9 - webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)) + webpack: 5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1) optionalDependencies: - html-webpack-plugin: 5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))) + html-webpack-plugin: 5.6.0(webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1)) webpack-virtual-modules@0.5.0: {} webpack-virtual-modules@0.6.1: {} - webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5)): + webpack@5.90.3(@swc/core@1.4.16(@swc/helpers@0.5.5))(esbuild@0.20.1): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.5 @@ -36019,10 +32821,12 @@ snapshots: whatwg-encoding@3.1.1: dependencies: iconv-lite: 0.6.3 + optional: true whatwg-mimetype@3.0.0: {} - whatwg-mimetype@4.0.0: {} + whatwg-mimetype@4.0.0: + optional: true whatwg-url@11.0.0: dependencies: @@ -36033,6 +32837,7 @@ snapshots: dependencies: tr46: 5.0.0 webidl-conversions: 7.0.0 + optional: true whatwg-url@5.0.0: dependencies: @@ -36153,7 +32958,8 @@ snapshots: ws@8.16.0: {} - ws@8.17.0: {} + ws@8.17.0: + optional: true xdm@2.1.0: dependencies: @@ -36187,7 +32993,8 @@ snapshots: xml-name-validator@4.0.0: {} - xml-name-validator@5.0.0: {} + xml-name-validator@5.0.0: + optional: true xml2js@0.5.0: dependencies: @@ -36215,12 +33022,6 @@ snapshots: yaml@2.4.2: {} - yargonaut@1.1.4: - dependencies: - chalk: 1.1.3 - figlet: 1.7.0 - parent-require: 1.0.0 - yargs-parser@20.2.9: {} yargs-parser@21.1.1: {}