From eac4b4872b41edd92ea9fbb351f906951ebf156c Mon Sep 17 00:00:00 2001 From: JinmingYang <2214962083@qq.com> Date: Sun, 13 Aug 2023 22:14:03 +0800 Subject: [PATCH] fix(gpt-runner-web): fetch github config network error --- package.json | 26 +- packages/gpt-runner-core/package.json | 10 +- .../src/langchain/fixes/parse-template.ts | 2 +- packages/gpt-runner-shared/package.json | 18 +- .../src/common/types/server.ts | 2 +- packages/gpt-runner-vscode/package.json | 4 +- packages/gpt-runner-web/package.json | 16 +- .../src/controllers/config.controller.ts | 4 +- .../server/src/services/app-config.service.ts | 16 +- packages/gpt-runner/package.json | 6 +- pnpm-lock.yaml | 1486 +++++++---------- 11 files changed, 674 insertions(+), 916 deletions(-) diff --git a/package.json b/package.json index f60deae2..ca08b3c4 100644 --- a/package.json +++ b/package.json @@ -25,19 +25,19 @@ "test:ci": "pnpm build && pnpm typecheck && pnpm lint && pnpm test" }, "devDependencies": { - "@antfu/eslint-config": "^0.39.8", + "@antfu/eslint-config": "^0.40.2", "@nicepkg/gpt-runner": "workspace:*", "@nicepkg/gpt-runner-cli": "workspace:*", "@nicepkg/gpt-runner-core": "workspace:*", "@nicepkg/gpt-runner-shared": "workspace:*", "@types/fs-extra": "^11.0.1", "@types/node": "^18.16.19", - "@types/prettier": "^2.7.3", - "@types/react": "^18.2.17", + "@types/prettier": "^3.0.0", + "@types/react": "^18.2.20", "@vitejs/plugin-legacy": "^4.1.1", - "@vitest/ui": "^0.33.0", + "@vitest/ui": "^0.34.1", "bumpp": "^9.1.1", - "eslint": "8.45.0", + "eslint": "8.47.0", "esno": "^0.17.0", "execa": "^7.2.0", "fast-glob": "^3.3.1", @@ -46,22 +46,22 @@ "jsdom": "^22.1.0", "lint-staged": "^13.2.3", "msw": "1.2.3", - "pnpm": "8.6.10", - "prettier": "^3.0.0", + "pnpm": "8.6.12", + "prettier": "^3.0.1", "react": "^18.2.0", - "rollup": "^3.26.3", + "rollup": "^3.28.0", "semver": "^7.5.4", "simple-git-hooks": "^2.9.0", "taze": "^0.11.2", "terser": "^5.19.2", - "tsup": "^7.1.0", + "tsup": "^7.2.0", "typescript": "^5.1.6", "unbuild": "^0.8.11", "unplugin-auto-import": "^0.16.6", - "vite": "^4.4.7", - "vite-plugin-inspect": "^0.7.33", + "vite": "^4.4.9", + "vite-plugin-inspect": "^0.7.38", "vite-plugin-pages": "^0.31.0", - "vitest": "^0.33.0" + "vitest": "^0.34.1" }, "pnpm": { "overrides": { @@ -77,4 +77,4 @@ "eslint --cache --fix" ] } -} +} \ No newline at end of file diff --git a/packages/gpt-runner-core/package.json b/packages/gpt-runner-core/package.json index 8f269623..cb0929b8 100644 --- a/packages/gpt-runner-core/package.json +++ b/packages/gpt-runner-core/package.json @@ -29,8 +29,8 @@ "exports": { ".": { "types": "./dist/index.d.ts", - "require": "./dist/index.cjs", - "import": "./dist/index.mjs" + "import": "./dist/index.mjs", + "require": "./dist/index.cjs" } }, "main": "dist/index.cjs", @@ -48,13 +48,13 @@ "dependencies": { "@nicepkg/gpt-runner-shared": "workspace:*", "ignore": "^5.2.4", - "langchain": "^0.0.123", + "langchain": "^0.0.127", "unconfig": "^0.3.10", "uuid": "^9.0.0", "zod": "^3.21.4" }, "devDependencies": { - "@anthropic-ai/sdk": "^0.5.10", + "@anthropic-ai/sdk": "^0.6.0", "openai": "^3.3.0" } -} +} \ No newline at end of file diff --git a/packages/gpt-runner-core/src/langchain/fixes/parse-template.ts b/packages/gpt-runner-core/src/langchain/fixes/parse-template.ts index ff4f5b4e..7d3a34d1 100644 --- a/packages/gpt-runner-core/src/langchain/fixes/parse-template.ts +++ b/packages/gpt-runner-core/src/langchain/fixes/parse-template.ts @@ -146,7 +146,7 @@ PromptTemplate.fromTemplate = function (template, { templateFormat = 'f-string', names.add(node.name) }) return new PromptTemplate({ - inputVariables: [...names], + inputVariables: [...names] as any[], templateFormat, template, ...rest, diff --git a/packages/gpt-runner-shared/package.json b/packages/gpt-runner-shared/package.json index 94ecdec9..af2da04e 100644 --- a/packages/gpt-runner-shared/package.json +++ b/packages/gpt-runner-shared/package.json @@ -29,24 +29,24 @@ "exports": { ".": { "types": "./dist/common.d.ts", - "require": "./dist/common.cjs", - "import": "./dist/common.mjs" + "import": "./dist/common.mjs", + "require": "./dist/common.cjs" }, "./*": "./*", "./browser": { "types": "./dist/browser.d.ts", - "require": "./dist/browser.cjs", - "import": "./dist/browser.mjs" + "import": "./dist/browser.mjs", + "require": "./dist/browser.cjs" }, "./common": { "types": "./dist/common.d.ts", - "require": "./dist/common.cjs", - "import": "./dist/common.mjs" + "import": "./dist/common.mjs", + "require": "./dist/common.cjs" }, "./node": { "types": "./dist/node.d.ts", - "require": "./dist/node.cjs", - "import": "./dist/node.mjs" + "import": "./dist/node.mjs", + "require": "./dist/node.cjs" } }, "main": "dist/common.cjs", @@ -120,4 +120,4 @@ "@types/ip": "^1.1.0", "express": "^4.18.2" } -} +} \ No newline at end of file diff --git a/packages/gpt-runner-shared/src/common/types/server.ts b/packages/gpt-runner-shared/src/common/types/server.ts index 1c3e1d29..2d11dc68 100644 --- a/packages/gpt-runner-shared/src/common/types/server.ts +++ b/packages/gpt-runner-shared/src/common/types/server.ts @@ -105,7 +105,7 @@ export interface GetAppConfigReqParams { langId?: LocaleLang } -export type GetAppConfigResData = CurrentAppConfig +export type GetAppConfigResData = CurrentAppConfig | null export interface MarkAsVisitedAppConfigReqParams { types: MarkedAsVisitedType[] diff --git a/packages/gpt-runner-vscode/package.json b/packages/gpt-runner-vscode/package.json index 47276cdb..b510a108 100644 --- a/packages/gpt-runner-vscode/package.json +++ b/packages/gpt-runner-vscode/package.json @@ -150,7 +150,7 @@ "@nicepkg/gpt-runner-shared": "workspace:*", "@nicepkg/gpt-runner-web": "workspace:*", "@types/vscode": "^1.71.0", - "@vscode/vsce": "^2.20.0", + "@vscode/vsce": "^2.20.1", "esno": "^0.17.0", "eventemitter3": "^5.0.1", "execa": "^7.2.0", @@ -159,4 +159,4 @@ "uuid": "^9.0.0", "wait-port": "^1.0.4" } -} +} \ No newline at end of file diff --git a/packages/gpt-runner-web/package.json b/packages/gpt-runner-web/package.json index 70b6d99c..5d48964f 100644 --- a/packages/gpt-runner-web/package.json +++ b/packages/gpt-runner-web/package.json @@ -87,7 +87,7 @@ "@types/global-agent": "^2.1.1", "@types/keyboardjs": "^2.5.1", "@types/lodash-es": "^4.17.8", - "@types/react": "^18.2.18", + "@types/react": "^18.2.20", "@types/react-dom": "^18.2.7", "@types/react-syntax-highlighter": "^15.5.7", "@types/uuid": "^9.0.2", @@ -101,10 +101,10 @@ "cross-env": "^7.0.3", "eventemitter": "^0.3.3", "express": "^4.18.2", - "framer-motion": "^10.15.0", + "framer-motion": "^10.15.1", "fs-extra": "^11.1.1", "global-agent": "^3.0.0", - "i18next": "^23.4.2", + "i18next": "^23.4.4", "i18next-browser-languagedetector": "^7.1.0", "i18next-http-backend": "^2.2.1", "js-base64": "^3.7.5", @@ -113,12 +113,12 @@ "monaco-editor": "^0.41.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-error-boundary": "^4.0.10", + "react-error-boundary": "^4.0.11", "react-hook-form": "^7.45.4", "react-hot-toast": "^2.4.1", - "react-i18next": "^13.0.3", + "react-i18next": "^13.1.2", "react-markdown": "^8.0.7", - "react-router-dom": "^6.14.2", + "react-router-dom": "^6.15.0", "react-syntax-highlighter": "^15.5.0", "react-tiny-popover": "^7.2.4", "react-use": "^17.4.0", @@ -127,10 +127,10 @@ "undici": "^5.23.0", "unist-util-visit": "^5.0.0", "uuid": "^9.0.0", - "vite": "^4.4.8", + "vite": "^4.4.9", "vite-plugin-monaco-editor": "^1.1.0", "vite-plugin-svgr": "^3.2.0", "web-streams-polyfill": "^3.2.1", "zustand": "^4.4.1" } -} +} \ No newline at end of file diff --git a/packages/gpt-runner-web/server/src/controllers/config.controller.ts b/packages/gpt-runner-web/server/src/controllers/config.controller.ts index ea2feb0a..79553cbd 100644 --- a/packages/gpt-runner-web/server/src/controllers/config.controller.ts +++ b/packages/gpt-runner-web/server/src/controllers/config.controller.ts @@ -76,9 +76,7 @@ export const configControllers: ControllerConfig = { const currentAppConfig = await AppConfigService.instance.getCurrentAppConfig(true) sendSuccessResponse(res, { - data: { - ...currentAppConfig, - } satisfies GetAppConfigResData, + data: currentAppConfig satisfies GetAppConfigResData, }) }, }, diff --git a/packages/gpt-runner-web/server/src/services/app-config.service.ts b/packages/gpt-runner-web/server/src/services/app-config.service.ts index d81ff5b0..8027d28b 100644 --- a/packages/gpt-runner-web/server/src/services/app-config.service.ts +++ b/packages/gpt-runner-web/server/src/services/app-config.service.ts @@ -61,10 +61,13 @@ export class AppConfigService implements CurrentAppConfig { return storage } - async getCurrentAppConfig(safe = true): Promise { + async getCurrentAppConfig(safe = true): Promise { if (!this.appConfig) await this.loadAppConfig() + if (!this.appConfig) + return null + await this.updateShouldShowModal() const result = { @@ -106,7 +109,7 @@ export class AppConfigService implements CurrentAppConfig { await this.loadAppConfig() const { modelType, vendorName } = props - const { currentConfig } = await this.getCurrentAppConfig(false) + const { currentConfig } = await this.getCurrentAppConfig(false) || {} let result: GetModelConfigType | undefined if (currentConfig) { @@ -128,6 +131,9 @@ export class AppConfigService implements CurrentAppConfig { const appConfig = await this.loadAppConfigPromise this.appConfig = appConfig || null } + catch (e) { + console.error(e) + } finally { this.loadAppConfigPromise = undefined } @@ -137,6 +143,12 @@ export class AppConfigService implements CurrentAppConfig { if (!this.appConfig) await this.loadAppConfig() + if (!this.appConfig) { + this.showNotificationModal = false + this.showReleaseModal = false + return + } + const currentConfig = this.currentConfig const storage = await this.getStorage() diff --git a/packages/gpt-runner/package.json b/packages/gpt-runner/package.json index 1c20e348..a6495273 100644 --- a/packages/gpt-runner/package.json +++ b/packages/gpt-runner/package.json @@ -31,8 +31,8 @@ "exports": { ".": { "types": "./dist/index.d.ts", - "require": "./dist/index.cjs", - "import": "./dist/index.mjs" + "import": "./dist/index.mjs", + "require": "./dist/index.cjs" } }, "main": "./dist/index.cjs", @@ -53,4 +53,4 @@ "dependencies": { "@nicepkg/gpt-runner-shared": "workspace:*" } -} +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 39057fad..89662088 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,8 +9,8 @@ importers: .: devDependencies: '@antfu/eslint-config': - specifier: ^0.39.8 - version: 0.39.8(eslint@8.45.0)(typescript@5.1.6) + specifier: ^0.40.2 + version: 0.40.2(eslint@8.47.0)(typescript@5.1.6) '@nicepkg/gpt-runner': specifier: workspace:* version: link:packages/gpt-runner @@ -30,23 +30,23 @@ importers: specifier: ^18.16.19 version: 18.16.19 '@types/prettier': - specifier: ^2.7.3 - version: 2.7.3 + specifier: ^3.0.0 + version: 3.0.0 '@types/react': - specifier: ^18.2.17 - version: 18.2.17 + specifier: ^18.2.20 + version: 18.2.20 '@vitejs/plugin-legacy': specifier: ^4.1.1 - version: 4.1.1(terser@5.19.2)(vite@4.4.7) + version: 4.1.1(terser@5.19.2)(vite@4.4.9) '@vitest/ui': - specifier: ^0.33.0 - version: 0.33.0(vitest@0.33.0) + specifier: ^0.34.1 + version: 0.34.1(vitest@0.34.1) bumpp: specifier: ^9.1.1 version: 9.1.1 eslint: - specifier: 8.45.0 - version: 8.45.0 + specifier: 8.47.0 + version: 8.47.0 esno: specifier: ^0.17.0 version: 0.17.0 @@ -72,17 +72,17 @@ importers: specifier: 1.2.3 version: 1.2.3(typescript@5.1.6) pnpm: - specifier: 8.6.10 - version: 8.6.10 + specifier: 8.6.12 + version: 8.6.12 prettier: - specifier: ^3.0.0 - version: 3.0.0 + specifier: ^3.0.1 + version: 3.0.1 react: specifier: ^18.2.0 version: 18.2.0 rollup: - specifier: ^3.26.3 - version: 3.26.3 + specifier: ^3.28.0 + version: 3.28.0 semver: specifier: ^7.5.4 version: 7.5.4 @@ -96,8 +96,8 @@ importers: specifier: ^5.19.2 version: 5.19.2 tsup: - specifier: ^7.1.0 - version: 7.1.0(typescript@5.1.6) + specifier: ^7.2.0 + version: 7.2.0(typescript@5.1.6) typescript: specifier: ^5.1.6 version: 5.1.6 @@ -106,19 +106,19 @@ importers: version: 0.8.11 unplugin-auto-import: specifier: ^0.16.6 - version: 0.16.6(rollup@3.26.3) + version: 0.16.6(rollup@3.28.0) vite: - specifier: ^4.4.7 - version: 4.4.7(@types/node@18.16.19)(terser@5.19.2) + specifier: ^4.4.9 + version: 4.4.9(@types/node@18.16.19)(terser@5.19.2) vite-plugin-inspect: - specifier: ^0.7.33 - version: 0.7.33(rollup@3.26.3)(vite@4.4.7) + specifier: ^0.7.38 + version: 0.7.38(rollup@3.28.0)(vite@4.4.9) vite-plugin-pages: specifier: ^0.31.0 - version: 0.31.0(vite@4.4.7) + version: 0.31.0(vite@4.4.9) vitest: - specifier: ^0.33.0 - version: 0.33.0(@vitest/ui@0.33.0)(jsdom@22.1.0)(terser@5.19.2) + specifier: ^0.34.1 + version: 0.34.1(@vitest/ui@0.34.1)(jsdom@22.1.0)(terser@5.19.2) packages/gpt-runner: dependencies: @@ -165,8 +165,8 @@ importers: specifier: ^5.2.4 version: 5.2.4 langchain: - specifier: ^0.0.123 - version: 0.0.123(ignore@5.2.4) + specifier: ^0.0.127 + version: 0.0.127(ignore@5.2.4) unconfig: specifier: ^0.3.10 version: 0.3.10 @@ -178,8 +178,8 @@ importers: version: 3.21.4 devDependencies: '@anthropic-ai/sdk': - specifier: ^0.5.10 - version: 0.5.10 + specifier: ^0.6.0 + version: 0.6.0 openai: specifier: ^3.3.0 version: 3.3.0 @@ -266,8 +266,8 @@ importers: specifier: ^1.71.0 version: 1.79.1 '@vscode/vsce': - specifier: ^2.20.0 - version: 2.20.0 + specifier: ^2.20.1 + version: 2.20.1 esno: specifier: ^0.17.0 version: 0.17.0 @@ -335,8 +335,8 @@ importers: specifier: ^4.17.8 version: 4.17.8 '@types/react': - specifier: ^18.2.18 - version: 18.2.18 + specifier: ^18.2.20 + version: 18.2.20 '@types/react-dom': specifier: ^18.2.7 version: 18.2.7 @@ -351,7 +351,7 @@ importers: version: 10.2.27(react@18.2.0) '@vitejs/plugin-react': specifier: ^4.0.4 - version: 4.0.4(vite@4.4.8) + version: 4.0.4(vite@4.4.9) '@vscode/webview-ui-toolkit': specifier: ^1.2.2 version: 1.2.2(react@18.2.0) @@ -377,8 +377,8 @@ importers: specifier: ^4.18.2 version: 4.18.2 framer-motion: - specifier: ^10.15.0 - version: 10.15.0(react-dom@18.2.0)(react@18.2.0) + specifier: ^10.15.1 + version: 10.15.1(react-dom@18.2.0)(react@18.2.0) fs-extra: specifier: ^11.1.1 version: 11.1.1 @@ -386,8 +386,8 @@ importers: specifier: ^3.0.0 version: 3.0.0 i18next: - specifier: ^23.4.2 - version: 23.4.2 + specifier: ^23.4.4 + version: 23.4.4 i18next-browser-languagedetector: specifier: ^7.1.0 version: 7.1.0 @@ -413,8 +413,8 @@ importers: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) react-error-boundary: - specifier: ^4.0.10 - version: 4.0.10(react@18.2.0) + specifier: ^4.0.11 + version: 4.0.11(react@18.2.0) react-hook-form: specifier: ^7.45.4 version: 7.45.4(react@18.2.0) @@ -422,14 +422,14 @@ importers: specifier: ^2.4.1 version: 2.4.1(csstype@3.1.2)(react-dom@18.2.0)(react@18.2.0) react-i18next: - specifier: ^13.0.3 - version: 13.0.3(i18next@23.4.2)(react-dom@18.2.0)(react@18.2.0) + specifier: ^13.1.2 + version: 13.1.2(i18next@23.4.4)(react-dom@18.2.0)(react@18.2.0) react-markdown: specifier: ^8.0.7 - version: 8.0.7(@types/react@18.2.18)(react@18.2.0) + version: 8.0.7(@types/react@18.2.20)(react@18.2.0) react-router-dom: - specifier: ^6.14.2 - version: 6.14.2(react-dom@18.2.0)(react@18.2.0) + specifier: ^6.15.0 + version: 6.15.0(react-dom@18.2.0)(react@18.2.0) react-syntax-highlighter: specifier: ^15.5.0 version: 15.5.0(react@18.2.0) @@ -455,20 +455,20 @@ importers: specifier: ^9.0.0 version: 9.0.0 vite: - specifier: ^4.4.8 - version: 4.4.8(@types/node@18.16.19)(terser@5.19.2) + specifier: ^4.4.9 + version: 4.4.9(@types/node@18.16.19)(terser@5.19.2) vite-plugin-monaco-editor: specifier: ^1.1.0 version: 1.1.0(monaco-editor@0.41.0) vite-plugin-svgr: specifier: ^3.2.0 - version: 3.2.0(rollup@3.26.3)(vite@4.4.8) + version: 3.2.0(rollup@3.28.0)(vite@4.4.9) web-streams-polyfill: specifier: ^3.2.1 version: 3.2.1 zustand: specifier: ^4.4.1 - version: 4.4.1(@types/react@18.2.18)(react@18.2.0) + version: 4.4.1(@types/react@18.2.20)(react@18.2.0) playground: devDependencies: @@ -486,34 +486,34 @@ importers: version: 1.23.3 '@docusaurus/core': specifier: ^2.4.1 - version: 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + version: 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/logger': specifier: ^2.4.1 version: 2.4.1 '@docusaurus/plugin-client-redirects': specifier: ^2.4.1 - version: 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + version: 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/plugin-ideal-image': specifier: ^2.4.1 - version: 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + version: 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/plugin-pwa': specifier: ^2.4.1 - version: 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + version: 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/preset-classic': specifier: ^2.4.1 - version: 2.4.1(@algolia/client-search@4.17.1)(@swc/core@1.3.68)(@types/react@18.2.17)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + version: 2.4.1(@algolia/client-search@4.17.1)(@swc/core@1.3.68)(@types/react@18.2.20)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/remark-plugin-npm2yarn': specifier: ^2.4.1 version: 2.4.1 '@docusaurus/theme-classic': specifier: ^2.4.1 - version: 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + version: 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/theme-common': specifier: ^2.4.1 - version: 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + version: 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/theme-mermaid': specifier: ^2.4.1 - version: 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + version: 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/utils': specifier: ^2.4.1 version: 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) @@ -589,7 +589,7 @@ importers: devDependencies: '@docusaurus/eslint-plugin': specifier: ^2.4.1 - version: 2.4.1(eslint@8.45.0)(typescript@5.1.6) + version: 2.4.1(eslint@8.47.0)(typescript@5.1.6) '@tsconfig/docusaurus': specifier: ^1.0.7 version: 1.0.7 @@ -734,24 +734,24 @@ packages: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.18 - /@antfu/eslint-config-basic@0.39.8(@typescript-eslint/eslint-plugin@6.1.0)(@typescript-eslint/parser@6.1.0)(eslint@8.45.0)(typescript@5.1.6): - resolution: {integrity: sha512-HvxNu11NRpX/DHmcMcA2KenY/IIy3THEn5tpizg6vPIp3ZYSNkW3ov6sK2wxCd1S8Rwl/65566wplJ8xTYe0EA==} + /@antfu/eslint-config-basic@0.40.2(@typescript-eslint/eslint-plugin@6.3.0)(@typescript-eslint/parser@6.3.0)(eslint@8.47.0)(typescript@5.1.6): + resolution: {integrity: sha512-2zAgwjsOFQ1b7MJmnzQAeyyqqqQjy7/b2ZG1oqWlLTxVda4B/msOyrMdO7nYSmqZFK+cdOi5rGT2pBFeX8EBkA==} peerDependencies: eslint: '>=7.4.0' dependencies: - eslint: 8.45.0 - eslint-plugin-antfu: 0.39.8(eslint@8.45.0)(typescript@5.1.6) - eslint-plugin-eslint-comments: 3.2.0(eslint@8.45.0) + eslint: 8.47.0 + eslint-plugin-antfu: 0.40.2(eslint@8.47.0)(typescript@5.1.6) + eslint-plugin-eslint-comments: 3.2.0(eslint@8.47.0) eslint-plugin-html: 7.1.0 - eslint-plugin-import: /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.1.0)(eslint@8.45.0) - eslint-plugin-jsonc: 2.9.0(eslint@8.45.0) - eslint-plugin-markdown: 3.0.0(eslint@8.45.0) - eslint-plugin-n: 16.0.1(eslint@8.45.0) + eslint-plugin-import: /eslint-plugin-i@2.28.0-2(@typescript-eslint/parser@6.3.0)(eslint@8.47.0) + eslint-plugin-jsonc: 2.9.0(eslint@8.47.0) + eslint-plugin-markdown: 3.0.1(eslint@8.47.0) + eslint-plugin-n: 16.0.1(eslint@8.47.0) eslint-plugin-no-only-tests: 3.1.0 - eslint-plugin-promise: 6.1.1(eslint@8.45.0) - eslint-plugin-unicorn: 48.0.0(eslint@8.45.0) - eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.1.0)(eslint@8.45.0) - eslint-plugin-yml: 1.8.0(eslint@8.45.0) + eslint-plugin-promise: 6.1.1(eslint@8.47.0) + eslint-plugin-unicorn: 48.0.1(eslint@8.47.0) + eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.3.0)(eslint@8.47.0) + eslint-plugin-yml: 1.8.0(eslint@8.47.0) jsonc-eslint-parser: 2.3.0 yaml-eslint-parser: 1.2.2 transitivePeerDependencies: @@ -763,17 +763,17 @@ packages: - typescript dev: true - /@antfu/eslint-config-ts@0.39.8(eslint@8.45.0)(typescript@5.1.6): - resolution: {integrity: sha512-oMkIzxxD+sdHpO7Ctk+ej1SCZAoSbPMGyqjfaGLqpaxh87gP7LSFlm6QpsdIWllnTyYB75Hk8LMqFQWCJU9dxw==} + /@antfu/eslint-config-ts@0.40.2(eslint@8.47.0)(typescript@5.1.6): + resolution: {integrity: sha512-ztClDCL4ooV6e7VA5tJQGXEqVn3wSB+3PdKJCMTAY+N4YhySurMEF4CSqDqQyvRzt3vAxKKYzrF+JCkUOqR/eA==} peerDependencies: eslint: '>=7.4.0' typescript: '>=3.9' dependencies: - '@antfu/eslint-config-basic': 0.39.8(@typescript-eslint/eslint-plugin@6.1.0)(@typescript-eslint/parser@6.1.0)(eslint@8.45.0)(typescript@5.1.6) - '@typescript-eslint/eslint-plugin': 6.1.0(@typescript-eslint/parser@6.1.0)(eslint@8.45.0)(typescript@5.1.6) - '@typescript-eslint/parser': 6.1.0(eslint@8.45.0)(typescript@5.1.6) - eslint: 8.45.0 - eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@6.1.0)(eslint@8.45.0)(typescript@5.1.6) + '@antfu/eslint-config-basic': 0.40.2(@typescript-eslint/eslint-plugin@6.3.0)(@typescript-eslint/parser@6.3.0)(eslint@8.47.0)(typescript@5.1.6) + '@typescript-eslint/eslint-plugin': 6.3.0(@typescript-eslint/parser@6.3.0)(eslint@8.47.0)(typescript@5.1.6) + '@typescript-eslint/parser': 6.3.0(eslint@8.47.0)(typescript@5.1.6) + eslint: 8.47.0 + eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@6.3.0)(eslint@8.47.0)(typescript@5.1.6) typescript: 5.1.6 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -782,15 +782,15 @@ packages: - supports-color dev: true - /@antfu/eslint-config-vue@0.39.8(@typescript-eslint/eslint-plugin@6.1.0)(@typescript-eslint/parser@6.1.0)(eslint@8.45.0)(typescript@5.1.6): - resolution: {integrity: sha512-BeBRdI8Bm0d9ppomvmPkrIim4IEW4ZHZHsGw2qSw/mSDZwprLyGi9tgNMnoHbN9OBGQwveuurdKFlJz5SlCjrA==} + /@antfu/eslint-config-vue@0.40.2(@typescript-eslint/eslint-plugin@6.3.0)(@typescript-eslint/parser@6.3.0)(eslint@8.47.0)(typescript@5.1.6): + resolution: {integrity: sha512-cmUQNzCGPoZ5EzWHQwWcBKtWVQnlLcvWx4L+oiWTatG0vB7niyqufKQSR/MlQIBYCWN5a8pVpUJQ4xwJTKbcHQ==} peerDependencies: eslint: '>=7.4.0' dependencies: - '@antfu/eslint-config-basic': 0.39.8(@typescript-eslint/eslint-plugin@6.1.0)(@typescript-eslint/parser@6.1.0)(eslint@8.45.0)(typescript@5.1.6) - '@antfu/eslint-config-ts': 0.39.8(eslint@8.45.0)(typescript@5.1.6) - eslint: 8.45.0 - eslint-plugin-vue: 9.15.1(eslint@8.45.0) + '@antfu/eslint-config-basic': 0.40.2(@typescript-eslint/eslint-plugin@6.3.0)(@typescript-eslint/parser@6.3.0)(eslint@8.47.0)(typescript@5.1.6) + '@antfu/eslint-config-ts': 0.40.2(eslint@8.47.0)(typescript@5.1.6) + eslint: 8.47.0 + eslint-plugin-vue: 9.17.0(eslint@8.47.0) local-pkg: 0.4.3 transitivePeerDependencies: - '@typescript-eslint/eslint-plugin' @@ -802,24 +802,24 @@ packages: - typescript dev: true - /@antfu/eslint-config@0.39.8(eslint@8.45.0)(typescript@5.1.6): - resolution: {integrity: sha512-KnDjLw6UEoHdEzB6CzQMm+EkA4ZI94r1Of1rRRw0qxhkFhD/+SQ2BTBgmF5d4wTsU0IT1Dk5JjJ6J/cVFKdXWQ==} + /@antfu/eslint-config@0.40.2(eslint@8.47.0)(typescript@5.1.6): + resolution: {integrity: sha512-65KUiPpjHdj2zZq7lh2CSQ7CK4Ow9q/upBydoCaXbkLeg2ojyYiry4IKSkTgHxUaPCHqOq9niegwnup0MEnwHA==} peerDependencies: eslint: '>=7.4.0' dependencies: - '@antfu/eslint-config-vue': 0.39.8(@typescript-eslint/eslint-plugin@6.1.0)(@typescript-eslint/parser@6.1.0)(eslint@8.45.0)(typescript@5.1.6) - '@typescript-eslint/eslint-plugin': 6.1.0(@typescript-eslint/parser@6.1.0)(eslint@8.45.0)(typescript@5.1.6) - '@typescript-eslint/parser': 6.1.0(eslint@8.45.0)(typescript@5.1.6) - eslint: 8.45.0 - eslint-plugin-eslint-comments: 3.2.0(eslint@8.45.0) + '@antfu/eslint-config-vue': 0.40.2(@typescript-eslint/eslint-plugin@6.3.0)(@typescript-eslint/parser@6.3.0)(eslint@8.47.0)(typescript@5.1.6) + '@typescript-eslint/eslint-plugin': 6.3.0(@typescript-eslint/parser@6.3.0)(eslint@8.47.0)(typescript@5.1.6) + '@typescript-eslint/parser': 6.3.0(eslint@8.47.0)(typescript@5.1.6) + eslint: 8.47.0 + eslint-plugin-eslint-comments: 3.2.0(eslint@8.47.0) eslint-plugin-html: 7.1.0 - eslint-plugin-import: /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.1.0)(eslint@8.45.0) - eslint-plugin-jsonc: 2.9.0(eslint@8.45.0) - eslint-plugin-n: 16.0.1(eslint@8.45.0) - eslint-plugin-promise: 6.1.1(eslint@8.45.0) - eslint-plugin-unicorn: 48.0.0(eslint@8.45.0) - eslint-plugin-vue: 9.15.1(eslint@8.45.0) - eslint-plugin-yml: 1.8.0(eslint@8.45.0) + eslint-plugin-import: /eslint-plugin-i@2.28.0-2(@typescript-eslint/parser@6.3.0)(eslint@8.47.0) + eslint-plugin-jsonc: 2.9.0(eslint@8.47.0) + eslint-plugin-n: 16.0.1(eslint@8.47.0) + eslint-plugin-promise: 6.1.1(eslint@8.47.0) + eslint-plugin-unicorn: 48.0.1(eslint@8.47.0) + eslint-plugin-vue: 9.17.0(eslint@8.47.0) + eslint-plugin-yml: 1.8.0(eslint@8.47.0) jsonc-eslint-parser: 2.3.0 yaml-eslint-parser: 1.2.2 transitivePeerDependencies: @@ -852,6 +852,23 @@ packages: transitivePeerDependencies: - encoding - supports-color + dev: false + + /@anthropic-ai/sdk@0.6.0: + resolution: {integrity: sha512-RT+vApAc/xGqGGj3QHRnep+MtbAJsxNfWV2S+3yVyFOHBchmch1JHmncQAfH/Kcbb/7OTSiT989uM493mXj2HQ==} + dependencies: + '@types/node': 18.16.19 + '@types/node-fetch': 2.6.4 + abort-controller: 3.0.0 + agentkeepalive: 4.3.0 + digest-fetch: 1.3.0 + form-data-encoder: 1.7.2 + formdata-node: 4.4.1 + node-fetch: 2.6.11 + transitivePeerDependencies: + - encoding + - supports-color + dev: true /@apideck/better-ajv-errors@0.3.6(ajv@8.12.0): resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} @@ -3372,7 +3389,7 @@ packages: '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-module-transforms': 7.21.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.19.1 + '@babel/helper-validator-identifier': 7.22.5 transitivePeerDependencies: - supports-color dev: false @@ -4899,7 +4916,7 @@ packages: resolution: {integrity: sha512-Hg8Xfma+rFwRi6Y/pfei4FJoQ1hdVURmmNs/XPoMTCPAImU+d5yxj+M+qdLtNjWRpfWziU4dQcqY94xgFBn2dg==} dev: false - /@docsearch/react@3.4.0(@algolia/client-search@4.17.1)(@types/react@18.2.17)(react-dom@17.0.2)(react@17.0.2): + /@docsearch/react@3.4.0(@algolia/client-search@4.17.1)(@types/react@18.2.20)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-ufrp5879XYGojgS30ZAp8H4qIMbahRHB9M85VDBP36Xgz5QjYM54i1URKj5e219F7gqTtOivfztFTij6itc0MQ==} peerDependencies: '@types/react': '>= 16.8.0 < 19.0.0' @@ -4916,7 +4933,7 @@ packages: '@algolia/autocomplete-core': 1.8.2 '@algolia/autocomplete-preset-algolia': 1.8.2(@algolia/client-search@4.17.1)(algoliasearch@4.17.1) '@docsearch/css': 3.4.0 - '@types/react': 18.2.17 + '@types/react': 18.2.20 algoliasearch: 4.17.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -4924,7 +4941,7 @@ packages: - '@algolia/client-search' dev: false - /@docusaurus/core@2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/core@2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-SNsY7PshK3Ri7vtsLXVeAJGS50nJN3RgF836zkyUfAD01Fq+sAk5EwWgLw+nnm5KVNGDu7PRR2kRGDsWvqpo0g==} engines: {node: '>=16.14'} hasBin: true @@ -4983,7 +5000,7 @@ packages: postcss-loader: 7.3.2(postcss@8.4.23)(webpack@5.88.1) prompts: 2.4.2 react: 17.0.2 - react-dev-utils: 12.0.1(eslint@8.45.0)(typescript@5.1.6)(webpack@5.88.1) + react-dev-utils: 12.0.1(eslint@8.47.0)(typescript@5.1.6)(webpack@5.88.1) react-dom: 17.0.2(react@17.0.2) react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2) react-loadable: /@docusaurus/react-loadable@5.5.2(react@17.0.2) @@ -5028,20 +5045,20 @@ packages: resolution: {integrity: sha512-ka+vqXwtcW1NbXxWsh6yA1Ckii1klY9E53cJ4O9J09nkMBgrNX3iEFED1fWdv8wf4mJjvGi5RLZ2p9hJNjsLyQ==} engines: {node: '>=16.14'} dependencies: - cssnano-preset-advanced: 5.3.10(postcss@8.4.25) - postcss: 8.4.25 - postcss-sort-media-queries: 4.4.1(postcss@8.4.25) + cssnano-preset-advanced: 5.3.10(postcss@8.4.27) + postcss: 8.4.27 + postcss-sort-media-queries: 4.4.1(postcss@8.4.27) tslib: 2.5.0 dev: false - /@docusaurus/eslint-plugin@2.4.1(eslint@8.45.0)(typescript@5.1.6): + /@docusaurus/eslint-plugin@2.4.1(eslint@8.47.0)(typescript@5.1.6): resolution: {integrity: sha512-Sb+aLgf07v2xenPHlcBtvADFkE6xi1Nx9cKNb98Tq5MGoywHpxUfwT3RHar+eA8vCjR3fu0npSzuRt26AJa5lw==} engines: {node: '>=16.14'} peerDependencies: eslint: '>=6' dependencies: - '@typescript-eslint/utils': 5.60.0(eslint@8.45.0)(typescript@5.1.6) - eslint: 8.45.0 + '@typescript-eslint/utils': 5.60.0(eslint@8.47.0)(typescript@5.1.6) + eslint: 8.47.0 tslib: 2.5.0 transitivePeerDependencies: - supports-color @@ -5113,7 +5130,7 @@ packages: '@docusaurus/react-loadable': 5.5.2(react@17.0.2) '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@types/history': 4.7.11 - '@types/react': 18.2.18 + '@types/react': 18.2.20 '@types/react-router-config': 5.0.7 '@types/react-router-dom': 5.3.3 react: 17.0.2 @@ -5127,14 +5144,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-client-redirects@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-client-redirects@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-tp0j16gaLIJ4p+IR0P6KDOFsTOGGMY54MNPnmM61Vaqqt5omLqsuKUO8UlCGU1oW/4EIQOhXYy99XYY5MjE+7A==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/logger': 2.4.1 '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1) @@ -5164,14 +5181,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-content-blog@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-content-blog@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-E2i7Knz5YIbE1XELI6RlTnZnGgS52cUO4BlCiCUCvQHbR+s1xeIWz4C6BtaVnlug0Ccz7nFSksfwDpVlkujg5Q==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/logger': 2.4.1 '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) @@ -5207,14 +5224,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-content-docs@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-content-docs@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-Lo7lSIcpswa2Kv4HEeUcGYqaasMUQNpjTXpV0N8G6jXgZaQurqp7E8NGYeGbDXnb48czmHWbzDL4S3+BbK0VzA==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/logger': 2.4.1 '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/module-type-aliases': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) @@ -5250,14 +5267,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-content-pages@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-content-pages@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-/UjuH/76KLaUlL+o1OvyORynv6FURzjurSjvn2lbWTFc4tpYY2qLYTlKpTCBVPhlLUQsfyFnshEJDLmPneq2oA==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) @@ -5285,20 +5302,20 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-debug@2.4.1(@swc/core@1.3.68)(@types/react@18.2.17)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-debug@2.4.1(@swc/core@1.3.68)(@types/react@18.2.20)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-7Yu9UPzRShlrH/G8btOpR0e6INFZr0EegWplMjOqelIwAcx3PKyR8mgPTxGTxcqiYj6hxSCRN0D8R7YrzImwNA==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) fs-extra: 10.1.0 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-json-view: 1.21.3(@types/react@18.2.17)(react-dom@17.0.2)(react@17.0.2) + react-json-view: 1.21.3(@types/react@18.2.20)(react-dom@17.0.2)(react@17.0.2) tslib: 2.5.0 transitivePeerDependencies: - '@parcel/css' @@ -5320,14 +5337,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-google-analytics@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-google-analytics@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-dyZJdJiCoL+rcfnm0RPkLt/o732HvLiEwmtoNzOoz9MSZz117UH2J6U2vUDtzUzwtFLIf32KkeyzisbwUCgcaQ==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) react: 17.0.2 @@ -5351,14 +5368,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-google-gtag@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-google-gtag@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-mKIefK+2kGTQBYvloNEKtDmnRD7bxHLsBcxgnbt4oZwzi2nxCGjPX6+9SQO2KCN5HZbNrYmGo5GJfMgoRvy6uA==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) react: 17.0.2 @@ -5382,14 +5399,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-google-tag-manager@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-google-tag-manager@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-Zg4Ii9CMOLfpeV2nG74lVTWNtisFaH9QNtEw48R5QE1KIwDBdTVaiSA18G1EujZjrzJJzXN79VhINSbOJO/r3g==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) react: 17.0.2 @@ -5413,7 +5430,7 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-ideal-image@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-ideal-image@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-jxvgCGPmHxdae2Y2uskzxIbMCA4WLTfzkufsLbD4mEAjCRIkt6yzux6q5kqKTrO+AxzpANVcJNGmaBtKZGv5aw==} engines: {node: '>=16.14'} peerDependencies: @@ -5424,7 +5441,7 @@ packages: jimp: optional: true dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/lqip-loader': 2.4.1(webpack@5.88.1) '@docusaurus/responsive-loader': 1.7.0(sharp@0.30.7) '@docusaurus/theme-translations': 2.4.1 @@ -5456,7 +5473,7 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-pwa@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-pwa@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-kiD4qu5u3Nhwa6dPFrBDGInJYI/MWu01mbeLJFLk7oFqbkvLrHPKyB6KxrKQQfx/sAJKro79RYejigUDj0Ahig==} engines: {node: '>=16.14'} peerDependencies: @@ -5465,8 +5482,8 @@ packages: dependencies: '@babel/core': 7.22.5 '@babel/preset-env': 7.21.5(@babel/core@7.22.5) - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/theme-translations': 2.4.1 '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) @@ -5502,14 +5519,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-sitemap@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/plugin-sitemap@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-lZx+ijt/+atQ3FVE8FOHV/+X3kuok688OydDXrqKRJyXBJZKgGjA2Qa8RjQ4f27V2woaXhtnyrdPop/+OjVMRg==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/logger': 2.4.1 '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) @@ -5538,25 +5555,25 @@ packages: - webpack-cli dev: false - /@docusaurus/preset-classic@2.4.1(@algolia/client-search@4.17.1)(@swc/core@1.3.68)(@types/react@18.2.17)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/preset-classic@2.4.1(@algolia/client-search@4.17.1)(@swc/core@1.3.68)(@types/react@18.2.20)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-P4//+I4zDqQJ+UDgoFrjIFaQ1MeS9UD1cvxVQaI6O7iBmiHQm0MGROP1TbE7HlxlDPXFJjZUK3x3cAoK63smGQ==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-content-blog': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-content-docs': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-content-pages': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-debug': 2.4.1(@swc/core@1.3.68)(@types/react@18.2.17)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-google-analytics': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-google-gtag': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-google-tag-manager': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-sitemap': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/theme-classic': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/theme-search-algolia': 2.4.1(@algolia/client-search@4.17.1)(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(@types/react@18.2.17)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-content-blog': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-content-docs': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-content-pages': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-debug': 2.4.1(@swc/core@1.3.68)(@types/react@18.2.20)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-google-analytics': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-google-gtag': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-google-tag-manager': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-sitemap': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/theme-classic': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/theme-search-algolia': 2.4.1(@algolia/client-search@4.17.1)(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(@types/react@18.2.20)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -5586,7 +5603,7 @@ packages: peerDependencies: react: '*' dependencies: - '@types/react': 18.2.18 + '@types/react': 18.2.20 prop-types: 15.8.1 react: 17.0.2 dev: false @@ -5616,20 +5633,20 @@ packages: sharp: 0.30.7 dev: false - /@docusaurus/theme-classic@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/theme-classic@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-Rz0wKUa+LTW1PLXmwnf8mn85EBzaGSt6qamqtmnh9Hflkc+EqiYMhtUJeLdV+wsgYq4aG0ANc+bpUDpsUhdnwg==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/module-type-aliases': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) - '@docusaurus/plugin-content-blog': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-content-docs': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-content-pages': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-content-blog': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-content-docs': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-content-pages': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/theme-translations': 2.4.1 '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) @@ -5668,7 +5685,7 @@ packages: - webpack-cli dev: false - /@docusaurus/theme-common@2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/theme-common@2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-G7Zau1W5rQTaFFB3x3soQoZpkgMbl/SYNG8PfMFIjKa3M3q8n0m/GRf5/H/e5BqOvt8c+ZWIXGCiz+kUCSHovA==} engines: {node: '>=16.14'} peerDependencies: @@ -5677,13 +5694,13 @@ packages: dependencies: '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/module-type-aliases': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) - '@docusaurus/plugin-content-blog': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-content-docs': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/plugin-content-pages': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-content-blog': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-content-docs': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-content-pages': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1) '@types/history': 4.7.11 - '@types/react': 18.2.18 + '@types/react': 18.2.20 '@types/react-router-config': 5.0.7 clsx: 1.2.1 parse-numeric-range: 1.3.0 @@ -5712,16 +5729,16 @@ packages: - webpack-cli dev: false - /@docusaurus/theme-mermaid@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/theme-mermaid@2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-cM0ImKIqZfjmlaC+uAjep39kNBvb1bjz429QBHGs32maob4+UnRzVPPpCUCltyPVb4xjG5h1Tyq4pHzhtIikqA==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/module-type-aliases': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) - '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/types': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(react-dom@17.0.2)(react@17.0.2) '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) '@mdx-js/react': 1.6.22(react@17.0.2) @@ -5747,18 +5764,18 @@ packages: - webpack-cli dev: false - /@docusaurus/theme-search-algolia@2.4.1(@algolia/client-search@4.17.1)(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(@types/react@18.2.17)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): + /@docusaurus/theme-search-algolia@2.4.1(@algolia/client-search@4.17.1)(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(@types/react@18.2.20)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-6BcqW2lnLhZCXuMAvPRezFs1DpmEKzXFKlYjruuas+Xy3AQeFzDJKTJFIm49N77WFCTyxff8d3E4Q9pi/+5McQ==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docsearch/react': 3.4.0(@algolia/client-search@4.17.1)(@types/react@18.2.17)(react-dom@17.0.2)(react@17.0.2) - '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docsearch/react': 3.4.0(@algolia/client-search@4.17.1)(@types/react@18.2.20)(react-dom@17.0.2)(react@17.0.2) + '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/logger': 2.4.1 - '@docusaurus/plugin-content-docs': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) - '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.45.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/plugin-content-docs': 2.4.1(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) + '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18)(eslint@8.47.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6) '@docusaurus/theme-translations': 2.4.1 '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(@swc/core@1.3.68)(esbuild@0.15.18) @@ -5808,7 +5825,7 @@ packages: react-dom: ^16.8.4 || ^17.0.0 dependencies: '@types/history': 4.7.11 - '@types/react': 18.2.18 + '@types/react': 18.2.20 commander: 5.1.0 joi: 17.9.2 react: 17.0.2 @@ -5964,15 +5981,6 @@ packages: dev: true optional: true - /@esbuild/android-arm64@0.18.9: - resolution: {integrity: sha512-G1rIBpSgjv0DEFmBYjljL85l4asf1dtQYwjoD02A5YG85JV3dsQSJL94vsEMWYMWkNd46hcvz3suURuY4dr+9g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - /@esbuild/android-arm@0.15.18: resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==} engines: {node: '>=12'} @@ -5998,15 +6006,6 @@ packages: dev: true optional: true - /@esbuild/android-arm@0.18.9: - resolution: {integrity: sha512-v1cr0l0RZOzIgLtTe8M1cRFFP0ICRdymPPa8HCPUpgZ+XasQrd5Mxyp9KlDqXLLyGmnZpzhufKEThLIihQL53A==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - /@esbuild/android-x64@0.17.19: resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} engines: {node: '>=12'} @@ -6024,15 +6023,6 @@ packages: dev: true optional: true - /@esbuild/android-x64@0.18.9: - resolution: {integrity: sha512-rPgcISGfoP7/Yk8+0eUf9R/KLCYGgqtojz/Uvj26wp7/EclwxoaOMArBnDChfuWF5YLdS16dDfqb4qwXS087lw==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - /@esbuild/darwin-arm64@0.17.19: resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} engines: {node: '>=12'} @@ -6050,15 +6040,6 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64@0.18.9: - resolution: {integrity: sha512-vw9kWBT2EvDhLAVkI5c2KWFh+GMwgXrzR1QnIpZazA+tIacaelNLMMSTHEJisOeQqiMQhv8goTODFm9liS7wpw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - /@esbuild/darwin-x64@0.17.19: resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} engines: {node: '>=12'} @@ -6076,15 +6057,6 @@ packages: dev: true optional: true - /@esbuild/darwin-x64@0.18.9: - resolution: {integrity: sha512-tDbKKMUeS0PckRtIxdF3+NgkE19kTyLFmUQ0umgXDnBvcWC3/DqhZyu4P4Af3zBzOfWH5DAAmGW1hgy53Z706w==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - /@esbuild/freebsd-arm64@0.17.19: resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} engines: {node: '>=12'} @@ -6102,15 +6074,6 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64@0.18.9: - resolution: {integrity: sha512-Anyk3qeTKJUcxiLE8VQ6y6frVuqFc71M5TEc2EzvXchoy6oWn5eZK+MpZBVnENVMSDA4wOjDKiFsPtVhnrhHHA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - /@esbuild/freebsd-x64@0.17.19: resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} engines: {node: '>=12'} @@ -6128,15 +6091,6 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64@0.18.9: - resolution: {integrity: sha512-BsOYio/4p/6RWG+sDQXVYet8qQ0bB91rfO0YNk5s0HlqE9vEth3Yi1jFNi4v7bUA4vQDWWoybpA/9NTz1sM88A==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-arm64@0.17.19: resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} engines: {node: '>=12'} @@ -6154,15 +6108,6 @@ packages: dev: true optional: true - /@esbuild/linux-arm64@0.18.9: - resolution: {integrity: sha512-2fJtf4KKR301FrhRNY1KIgVid2nUrZV6fzx39E+JgT3jAw2NsZYUiphR31CyH4MloyoEwgQTnskwaQH+nT4bHA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-arm@0.17.19: resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} engines: {node: '>=12'} @@ -6180,15 +6125,6 @@ packages: dev: true optional: true - /@esbuild/linux-arm@0.18.9: - resolution: {integrity: sha512-YotJBEt9swVrEBRBIXQzI03A4kDQSWk+mbGTTBreIRvWWWTXXqhNYZgqiwnEvtyQi9aqSipEzkRzAGNqs54EXw==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-ia32@0.17.19: resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} engines: {node: '>=12'} @@ -6206,15 +6142,6 @@ packages: dev: true optional: true - /@esbuild/linux-ia32@0.18.9: - resolution: {integrity: sha512-pTTBAGi2lrduXo4vATnqCtFi9zRbyXOlcV+euznW5EoFyjAIR+JCQgFDeFCMo343E2EI2MgV7ZQctO8IWcsdsA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-loong64@0.14.54: resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==} engines: {node: '>=12'} @@ -6249,15 +6176,6 @@ packages: dev: true optional: true - /@esbuild/linux-loong64@0.18.9: - resolution: {integrity: sha512-hmsjvhwHrsCKPthXhhNjLE+QON8uQCE9P/OBktaYOD8UDfmz9+txm04uXhnkRH0fDEqStsDEedbX+8KPg1CwyA==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-mips64el@0.17.19: resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} engines: {node: '>=12'} @@ -6275,15 +6193,6 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el@0.18.9: - resolution: {integrity: sha512-Ymv4j25ie7mVEVlcThnOlRVvqDSsj22MJBH31QGMsyA0dUwReqCg9yNqRM2Dh8QHDRO2UrMhGmiL6BaTdBWlQw==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-ppc64@0.17.19: resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} engines: {node: '>=12'} @@ -6301,15 +6210,6 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64@0.18.9: - resolution: {integrity: sha512-y2viEHwLpNfWP1eLa+vV+DWIbw/pQyv1Vf6qxSGJeBQmmu9T2hOagMiCr6zhDo89l+MUAXiShdKmqlKI6HdCkw==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-riscv64@0.17.19: resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} engines: {node: '>=12'} @@ -6327,15 +6227,6 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64@0.18.9: - resolution: {integrity: sha512-na8WG8Z7z1EIUcJFuXKOawJEsq8luOur7LHK/ophO0+RSE8A9yxCsKYhaN9IxlR1UciAuHjo/7d5yiflABwUmA==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-s390x@0.17.19: resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} engines: {node: '>=12'} @@ -6353,15 +6244,6 @@ packages: dev: true optional: true - /@esbuild/linux-s390x@0.18.9: - resolution: {integrity: sha512-XsnaI89KstE0jG4cMdzuJ8SKcKAod26had7U/4SzvuMrci0/XyEQXB1jikn6MB7LPGrd5rcLeYp3F7psUxhkWw==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/linux-x64@0.17.19: resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} engines: {node: '>=12'} @@ -6379,15 +6261,6 @@ packages: dev: true optional: true - /@esbuild/linux-x64@0.18.9: - resolution: {integrity: sha512-odEbmjtm3tLPtY43FRWOG+CLN7d4ooQpGjYVFVti5rLXLym26dORxnlbekNPXuQRuQKNMPczNNWE1jOc8yAyJQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@esbuild/netbsd-x64@0.17.19: resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} engines: {node: '>=12'} @@ -6405,15 +6278,6 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64@0.18.9: - resolution: {integrity: sha512-j/GgOjKNUPd54isC/RBYlS6CREbulnMWAJEIKTnPM0QnY0pEGfMHkFh73bsmZdovp/97zRty0NdePRk4dTP/cw==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - /@esbuild/openbsd-x64@0.17.19: resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} engines: {node: '>=12'} @@ -6431,15 +6295,6 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64@0.18.9: - resolution: {integrity: sha512-DN0Z9RGU/hlaMWSG9GaDLvlu0718u1HDGiF19wJ35fUznf9yJYgXDwZ5/cRQXUewHXJB0pD/VyQfRLDP3M4maw==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - /@esbuild/sunos-x64@0.17.19: resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} engines: {node: '>=12'} @@ -6457,15 +6312,6 @@ packages: dev: true optional: true - /@esbuild/sunos-x64@0.18.9: - resolution: {integrity: sha512-W/eHabLCXdki/8H3jmfE/ClDuh3bQQKpYfQHGQ7lQync9W72ZdVr2y1iWfEVTE7ZK/DQROo3GyfTkx5HPBZxmQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - /@esbuild/win32-arm64@0.17.19: resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} engines: {node: '>=12'} @@ -6483,15 +6329,6 @@ packages: dev: true optional: true - /@esbuild/win32-arm64@0.18.9: - resolution: {integrity: sha512-84FMz3Sh1hwGk/oWy6XGIW2bGVcsqvHLjjtbwd982XoTHOvQSthhrMef0J+4ShE1ZE7VeUXHIt2Mfer+myedYw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /@esbuild/win32-ia32@0.17.19: resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} engines: {node: '>=12'} @@ -6509,15 +6346,6 @@ packages: dev: true optional: true - /@esbuild/win32-ia32@0.18.9: - resolution: {integrity: sha512-/RsFTk0P13Nb+ixBVZfPdlLWKsP+he3ZLxOO/1eCsZZ2U7c/JxB053U7kURsyhhUPwiGzGVaAQAeyhGtYe8ehw==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - /@esbuild/win32-x64@0.17.19: resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} engines: {node: '>=12'} @@ -6535,35 +6363,26 @@ packages: dev: true optional: true - /@esbuild/win32-x64@0.18.9: - resolution: {integrity: sha512-S+oBiO8UE1hmDJZlZJ6HZEdBBrxCGovwN66P9rle4DWVktM5fsMouYhpbtUf4WQLEy0HvcE2ZOQ2gIq8v0BkBw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@eslint-community/eslint-utils@4.4.0(eslint@8.45.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.47.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.45.0 + eslint: 8.47.0 eslint-visitor-keys: 3.4.1 - /@eslint-community/regexpp@4.5.1: - resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} + /@eslint-community/regexpp@4.6.2: + resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - /@eslint/eslintrc@2.1.0: - resolution: {integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==} + /@eslint/eslintrc@2.1.2: + resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.6.0 + espree: 9.6.1 globals: 13.20.0 ignore: 5.2.4 import-fresh: 3.3.0 @@ -6573,8 +6392,8 @@ packages: transitivePeerDependencies: - supports-color - /@eslint/js@8.44.0: - resolution: {integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==} + /@eslint/js@8.47.0: + resolution: {integrity: sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} /@gar/promisify@1.1.3: @@ -6983,9 +6802,9 @@ packages: resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} dev: false - /@remix-run/router@1.7.2: - resolution: {integrity: sha512-7Lcn7IqGMV+vizMPoEl5F0XDshcdDYtMI6uJLQdQz5CfZAwy3vvGKYSUk789qndt5dEC4HfSjviSYlSoHGL2+A==} - engines: {node: '>=14'} + /@remix-run/router@1.8.0: + resolution: {integrity: sha512-mrfKqIHnSZRyIzBcanNJmVQELTnX+qagEDlcKO90RgRBVOZGSGvZKeDihTRfWcqoDn5N/NkUcwWTccnpN18Tfg==} + engines: {node: '>=14.0.0'} dev: true /@rollup/plugin-alias@3.1.9(rollup@2.79.1): @@ -7109,7 +6928,7 @@ packages: picomatch: 2.3.1 dev: true - /@rollup/pluginutils@5.0.2(rollup@3.26.3): + /@rollup/pluginutils@5.0.2(rollup@3.28.0): resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -7121,7 +6940,7 @@ packages: '@types/estree': 1.0.1 estree-walker: 2.0.2 picomatch: 2.3.1 - rollup: 3.26.3 + rollup: 3.28.0 dev: true /@sideway/address@4.1.4: @@ -7865,8 +7684,11 @@ packages: resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} dev: false - /@types/prettier@2.7.3: - resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} + /@types/prettier@3.0.0: + resolution: {integrity: sha512-mFMBfMOz8QxhYVbuINtswBp9VL2b4Y0QqYHwqLz3YbgtfAcat2Dl6Y1o4e22S/OVE6Ebl9m7wWiMT2lSbAs1wA==} + deprecated: This is a stub types definition. prettier provides its own type definitions, so you do not need this installed. + dependencies: + prettier: 3.0.1 dev: true /@types/prop-types@15.7.5: @@ -7881,14 +7703,14 @@ packages: /@types/react-dom@18.2.7: resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==} dependencies: - '@types/react': 18.2.18 + '@types/react': 18.2.20 dev: true /@types/react-router-config@5.0.7: resolution: {integrity: sha512-pFFVXUIydHlcJP6wJm7sDii5mD/bCmmAY0wQzq+M+uX7bqS95AQqHZWP1iNMKrWVQSuHIzj5qi9BvrtLX2/T4w==} dependencies: '@types/history': 4.7.11 - '@types/react': 18.2.18 + '@types/react': 18.2.20 '@types/react-router': 5.1.20 dev: false @@ -7896,7 +7718,7 @@ packages: resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} dependencies: '@types/history': 4.7.11 - '@types/react': 18.2.18 + '@types/react': 18.2.20 '@types/react-router': 5.1.20 dev: false @@ -7904,24 +7726,17 @@ packages: resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} dependencies: '@types/history': 4.7.11 - '@types/react': 18.2.18 + '@types/react': 18.2.20 dev: false /@types/react-syntax-highlighter@15.5.7: resolution: {integrity: sha512-bo5fEO5toQeyCp0zVHBeggclqf5SQ/Z5blfFmjwO5dkMVGPgmiwZsJh9nu/Bo5L7IHTuGWrja6LxJVE2uB5ZrQ==} dependencies: - '@types/react': 18.2.18 + '@types/react': 18.2.20 dev: true - /@types/react@18.2.17: - resolution: {integrity: sha512-u+e7OlgPPh+aryjOm5UJMX32OvB2E3QASOAqVMY6Ahs90djagxwv2ya0IctglNbNTexC12qCSMZG47KPfy1hAA==} - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.3 - csstype: 3.1.2 - - /@types/react@18.2.18: - resolution: {integrity: sha512-da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ==} + /@types/react@18.2.20: + resolution: {integrity: sha512-WKNtmsLWJM/3D5mG4U84cysVY31ivmyw85dE84fOCk5Hx78wezB/XEjVPWl2JTZ5FkEeaTJf+VgUAUn3PE7Isw==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.3 @@ -8022,8 +7837,8 @@ packages: '@types/yargs-parser': 21.0.0 dev: false - /@typescript-eslint/eslint-plugin@6.1.0(@typescript-eslint/parser@6.1.0)(eslint@8.45.0)(typescript@5.1.6): - resolution: {integrity: sha512-qg7Bm5TyP/I7iilGyp6DRqqkt8na00lI6HbjWZObgk3FFSzH5ypRwAHXJhJkwiRtTcfn+xYQIMOR5kJgpo6upw==} + /@typescript-eslint/eslint-plugin@6.3.0(@typescript-eslint/parser@6.3.0)(eslint@8.47.0)(typescript@5.1.6): + resolution: {integrity: sha512-IZYjYZ0ifGSLZbwMqIip/nOamFiWJ9AH+T/GYNZBWkVcyNQOFGtSMoWV7RvY4poYCMZ/4lHzNl796WOSNxmk8A==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha @@ -8033,14 +7848,14 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.5.1 - '@typescript-eslint/parser': 6.1.0(eslint@8.45.0)(typescript@5.1.6) - '@typescript-eslint/scope-manager': 6.1.0 - '@typescript-eslint/type-utils': 6.1.0(eslint@8.45.0)(typescript@5.1.6) - '@typescript-eslint/utils': 6.1.0(eslint@8.45.0)(typescript@5.1.6) - '@typescript-eslint/visitor-keys': 6.1.0 + '@eslint-community/regexpp': 4.6.2 + '@typescript-eslint/parser': 6.3.0(eslint@8.47.0)(typescript@5.1.6) + '@typescript-eslint/scope-manager': 6.3.0 + '@typescript-eslint/type-utils': 6.3.0(eslint@8.47.0)(typescript@5.1.6) + '@typescript-eslint/utils': 6.3.0(eslint@8.47.0)(typescript@5.1.6) + '@typescript-eslint/visitor-keys': 6.3.0 debug: 4.3.4 - eslint: 8.45.0 + eslint: 8.47.0 graphemer: 1.4.0 ignore: 5.2.4 natural-compare: 1.4.0 @@ -8052,8 +7867,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@6.1.0(eslint@8.45.0)(typescript@5.1.6): - resolution: {integrity: sha512-hIzCPvX4vDs4qL07SYzyomamcs2/tQYXg5DtdAfj35AyJ5PIUqhsLf4YrEIFzZcND7R2E8tpQIZKayxg8/6Wbw==} + /@typescript-eslint/parser@6.3.0(eslint@8.47.0)(typescript@5.1.6): + resolution: {integrity: sha512-ibP+y2Gr6p0qsUkhs7InMdXrwldjxZw66wpcQq9/PzAroM45wdwyu81T+7RibNCh8oc0AgrsyCwJByncY0Ongg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -8062,12 +7877,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 6.1.0 - '@typescript-eslint/types': 6.1.0 - '@typescript-eslint/typescript-estree': 6.1.0(typescript@5.1.6) - '@typescript-eslint/visitor-keys': 6.1.0 + '@typescript-eslint/scope-manager': 6.3.0 + '@typescript-eslint/types': 6.3.0 + '@typescript-eslint/typescript-estree': 6.3.0(typescript@5.1.6) + '@typescript-eslint/visitor-keys': 6.3.0 debug: 4.3.4 - eslint: 8.45.0 + eslint: 8.47.0 typescript: 5.1.6 transitivePeerDependencies: - supports-color @@ -8089,16 +7904,16 @@ packages: '@typescript-eslint/visitor-keys': 5.61.0 dev: true - /@typescript-eslint/scope-manager@6.1.0: - resolution: {integrity: sha512-AxjgxDn27hgPpe2rQe19k0tXw84YCOsjDJ2r61cIebq1t+AIxbgiXKvD4999Wk49GVaAcdJ/d49FYel+Pp3jjw==} + /@typescript-eslint/scope-manager@6.3.0: + resolution: {integrity: sha512-WlNFgBEuGu74ahrXzgefiz/QlVb+qg8KDTpknKwR7hMH+lQygWyx0CQFoUmMn1zDkQjTBBIn75IxtWss77iBIQ==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.1.0 - '@typescript-eslint/visitor-keys': 6.1.0 + '@typescript-eslint/types': 6.3.0 + '@typescript-eslint/visitor-keys': 6.3.0 dev: true - /@typescript-eslint/type-utils@6.1.0(eslint@8.45.0)(typescript@5.1.6): - resolution: {integrity: sha512-kFXBx6QWS1ZZ5Ni89TyT1X9Ag6RXVIVhqDs0vZE/jUeWlBv/ixq2diua6G7ece6+fXw3TvNRxP77/5mOMusx2w==} + /@typescript-eslint/type-utils@6.3.0(eslint@8.47.0)(typescript@5.1.6): + resolution: {integrity: sha512-7Oj+1ox1T2Yc8PKpBvOKWhoI/4rWFd1j7FA/rPE0lbBPXTKjdbtC+7Ev0SeBjEKkIhKWVeZSP+mR7y1Db1CdfQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -8107,10 +7922,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.1.0(typescript@5.1.6) - '@typescript-eslint/utils': 6.1.0(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/typescript-estree': 6.3.0(typescript@5.1.6) + '@typescript-eslint/utils': 6.3.0(eslint@8.47.0)(typescript@5.1.6) debug: 4.3.4 - eslint: 8.45.0 + eslint: 8.47.0 ts-api-utils: 1.0.1(typescript@5.1.6) typescript: 5.1.6 transitivePeerDependencies: @@ -8127,8 +7942,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types@6.1.0: - resolution: {integrity: sha512-+Gfd5NHCpDoHDOaU/yIF3WWRI2PcBRKKpP91ZcVbL0t5tQpqYWBs3z/GGhvU+EV1D0262g9XCnyqQh19prU0JQ==} + /@typescript-eslint/types@6.3.0: + resolution: {integrity: sha512-K6TZOvfVyc7MO9j60MkRNWyFSf86IbOatTKGrpTQnzarDZPYPVy0oe3myTMq7VjhfsUAbNUW8I5s+2lZvtx1gg==} engines: {node: ^16.0.0 || >=18.0.0} dev: true @@ -8174,8 +7989,8 @@ packages: - supports-color dev: true - /@typescript-eslint/typescript-estree@6.1.0(typescript@5.1.6): - resolution: {integrity: sha512-nUKAPWOaP/tQjU1IQw9sOPCDavs/iU5iYLiY/6u7gxS7oKQoi4aUxXS1nrrVGTyBBaGesjkcwwHkbkiD5eBvcg==} + /@typescript-eslint/typescript-estree@6.3.0(typescript@5.1.6): + resolution: {integrity: sha512-Xh4NVDaC4eYKY4O3QGPuQNp5NxBAlEvNQYOqJquR2MePNxO11E5K3t5x4M4Mx53IZvtpW+mBxIT0s274fLUocg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' @@ -8183,8 +7998,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 6.1.0 - '@typescript-eslint/visitor-keys': 6.1.0 + '@typescript-eslint/types': 6.3.0 + '@typescript-eslint/visitor-keys': 6.3.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -8195,19 +8010,19 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@5.60.0(eslint@8.45.0)(typescript@5.1.6): + /@typescript-eslint/utils@5.60.0(eslint@8.47.0)(typescript@5.1.6): resolution: {integrity: sha512-ba51uMqDtfLQ5+xHtwlO84vkdjrqNzOnqrnwbMHMRY8Tqeme8C2Q8Fc7LajfGR+e3/4LoYiWXUM6BpIIbHJ4hQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) '@types/json-schema': 7.0.11 '@types/semver': 7.5.0 '@typescript-eslint/scope-manager': 5.60.0 '@typescript-eslint/types': 5.60.0 '@typescript-eslint/typescript-estree': 5.60.0(typescript@5.1.6) - eslint: 8.45.0 + eslint: 8.47.0 eslint-scope: 5.1.1 semver: 7.5.4 transitivePeerDependencies: @@ -8215,19 +8030,19 @@ packages: - typescript dev: true - /@typescript-eslint/utils@5.61.0(eslint@8.45.0)(typescript@5.1.6): + /@typescript-eslint/utils@5.61.0(eslint@8.47.0)(typescript@5.1.6): resolution: {integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) '@types/json-schema': 7.0.12 '@types/semver': 7.5.0 '@typescript-eslint/scope-manager': 5.61.0 '@typescript-eslint/types': 5.61.0 '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6) - eslint: 8.45.0 + eslint: 8.47.0 eslint-scope: 5.1.1 semver: 7.5.4 transitivePeerDependencies: @@ -8235,19 +8050,19 @@ packages: - typescript dev: true - /@typescript-eslint/utils@6.1.0(eslint@8.45.0)(typescript@5.1.6): - resolution: {integrity: sha512-wp652EogZlKmQoMS5hAvWqRKplXvkuOnNzZSE0PVvsKjpexd/XznRVHAtrfHFYmqaJz0DFkjlDsGYC9OXw+OhQ==} + /@typescript-eslint/utils@6.3.0(eslint@8.47.0)(typescript@5.1.6): + resolution: {integrity: sha512-hLLg3BZE07XHnpzglNBG8P/IXq/ZVXraEbgY7FM0Cnc1ehM8RMdn9mat3LubJ3KBeYXXPxV1nugWbQPjGeJk6Q==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) '@types/json-schema': 7.0.12 '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 6.1.0 - '@typescript-eslint/types': 6.1.0 - '@typescript-eslint/typescript-estree': 6.1.0(typescript@5.1.6) - eslint: 8.45.0 + '@typescript-eslint/scope-manager': 6.3.0 + '@typescript-eslint/types': 6.3.0 + '@typescript-eslint/typescript-estree': 6.3.0(typescript@5.1.6) + eslint: 8.47.0 semver: 7.5.4 transitivePeerDependencies: - supports-color @@ -8267,15 +8082,15 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.61.0 - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 dev: true - /@typescript-eslint/visitor-keys@6.1.0: - resolution: {integrity: sha512-yQeh+EXhquh119Eis4k0kYhj9vmFzNpbhM3LftWQVwqVjipCkwHBQOZutcYW+JVkjtTG9k8nrZU1UoNedPDd1A==} + /@typescript-eslint/visitor-keys@6.3.0: + resolution: {integrity: sha512-kEhRRj7HnvaSjux1J9+7dBen15CdWmDnwrpyiHsFX6Qx2iW5LOBUgNefOFeh2PjWPlNwN8TOn6+4eBU3J/gupw==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.1.0 - eslint-visitor-keys: 3.4.1 + '@typescript-eslint/types': 6.3.0 + eslint-visitor-keys: 3.4.3 dev: true /@use-gesture/core@10.2.27: @@ -8291,7 +8106,7 @@ packages: react: 18.2.0 dev: true - /@vitejs/plugin-legacy@4.1.1(terser@5.19.2)(vite@4.4.7): + /@vitejs/plugin-legacy@4.1.1(terser@5.19.2)(vite@4.4.9): resolution: {integrity: sha512-um3gbVouD2Q/g19C0qpDfHwveXDCAHzs8OC3e9g6aXpKoD1H14himgs7wkMnhAynBJy7QqUoZNAXDuqN8zLR2g==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -8306,12 +8121,12 @@ packages: regenerator-runtime: 0.13.11 systemjs: 6.14.1 terser: 5.19.2 - vite: 4.4.7(@types/node@18.16.19)(terser@5.19.2) + vite: 4.4.9(@types/node@18.16.19)(terser@5.19.2) transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-react@4.0.4(vite@4.4.8): + /@vitejs/plugin-react@4.0.4(vite@4.4.9): resolution: {integrity: sha512-7wU921ABnNYkETiMaZy7XqpueMnpu5VxvVps13MjmCo+utBdD79sZzrApHawHtVX66cCJQQTXFcjH0y9dSUK8g==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -8321,66 +8136,66 @@ packages: '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.9) react-refresh: 0.14.0 - vite: 4.4.8(@types/node@18.16.19)(terser@5.19.2) + vite: 4.4.9(@types/node@18.16.19)(terser@5.19.2) transitivePeerDependencies: - supports-color dev: true - /@vitest/expect@0.33.0: - resolution: {integrity: sha512-sVNf+Gla3mhTCxNJx+wJLDPp/WcstOe0Ksqz4Vec51MmgMth/ia0MGFEkIZmVGeTL5HtjYR4Wl/ZxBxBXZJTzQ==} + /@vitest/expect@0.34.1: + resolution: {integrity: sha512-q2CD8+XIsQ+tHwypnoCk8Mnv5e6afLFvinVGCq3/BOT4kQdVQmY6rRfyKkwcg635lbliLPqbunXZr+L1ssUWiQ==} dependencies: - '@vitest/spy': 0.33.0 - '@vitest/utils': 0.33.0 + '@vitest/spy': 0.34.1 + '@vitest/utils': 0.34.1 chai: 4.3.7 dev: true - /@vitest/runner@0.33.0: - resolution: {integrity: sha512-UPfACnmCB6HKRHTlcgCoBh6ppl6fDn+J/xR8dTufWiKt/74Y9bHci5CKB8tESSV82zKYtkBJo9whU3mNvfaisg==} + /@vitest/runner@0.34.1: + resolution: {integrity: sha512-YfQMpYzDsYB7yqgmlxZ06NI4LurHWfrH7Wy3Pvf/z/vwUSgq1zLAb1lWcItCzQG+NVox+VvzlKQrYEXb47645g==} dependencies: - '@vitest/utils': 0.33.0 + '@vitest/utils': 0.34.1 p-limit: 4.0.0 pathe: 1.1.1 dev: true - /@vitest/snapshot@0.33.0: - resolution: {integrity: sha512-tJjrl//qAHbyHajpFvr8Wsk8DIOODEebTu7pgBrP07iOepR5jYkLFiqLq2Ltxv+r0uptUb4izv1J8XBOwKkVYA==} + /@vitest/snapshot@0.34.1: + resolution: {integrity: sha512-0O9LfLU0114OqdF8lENlrLsnn024Tb1CsS9UwG0YMWY2oGTQfPtkW+B/7ieyv0X9R2Oijhi3caB1xgGgEgclSQ==} dependencies: magic-string: 0.30.0 pathe: 1.1.1 pretty-format: 29.5.0 dev: true - /@vitest/spy@0.33.0: - resolution: {integrity: sha512-Kv+yZ4hnH1WdiAkPUQTpRxW8kGtH8VRTnus7ZTGovFYM1ZezJpvGtb9nPIjPnptHbsyIAxYZsEpVPYgtpjGnrg==} + /@vitest/spy@0.34.1: + resolution: {integrity: sha512-UT4WcI3EAPUNO8n6y9QoEqynGGEPmmRxC+cLzneFFXpmacivjHZsNbiKD88KUScv5DCHVDgdBsLD7O7s1enFcQ==} dependencies: tinyspy: 2.1.1 dev: true - /@vitest/ui@0.33.0(vitest@0.33.0): - resolution: {integrity: sha512-7gbAjLqt30R4bodkJAutdpy4ncv+u5IKTHYTow1c2q+FOxZUC9cKOSqMUxjwaaTwLN+EnDnmXYPtg3CoahaUzQ==} + /@vitest/ui@0.34.1(vitest@0.34.1): + resolution: {integrity: sha512-bwmkgMjDcMr3pg0UXLwfwZ/WI1fq2N+5DUisqHkY9bvnNRnpT6QiewtSS/VhmN61ixgNpSKbEGVboml2GLuxfA==} peerDependencies: vitest: '>=0.30.1 <1' dependencies: - '@vitest/utils': 0.33.0 + '@vitest/utils': 0.34.1 fast-glob: 3.3.1 fflate: 0.8.0 flatted: 3.2.7 pathe: 1.1.1 picocolors: 1.0.0 sirv: 2.0.3 - vitest: 0.33.0(@vitest/ui@0.33.0)(jsdom@22.1.0)(terser@5.19.2) + vitest: 0.34.1(@vitest/ui@0.34.1)(jsdom@22.1.0)(terser@5.19.2) dev: true - /@vitest/utils@0.33.0: - resolution: {integrity: sha512-pF1w22ic965sv+EN6uoePkAOTkAPWM03Ri/jXNyMIKBb/XHLDPfhLvf/Fa9g0YECevAIz56oVYXhodLvLQ/awA==} + /@vitest/utils@0.34.1: + resolution: {integrity: sha512-/ql9dsFi4iuEbiNcjNHQWXBum7aL8pyhxvfnD9gNtbjR9fUKAjxhj4AA3yfLXg6gJpMGGecvtF8Au2G9y3q47Q==} dependencies: diff-sequences: 29.4.3 loupe: 2.3.6 pretty-format: 29.5.0 dev: true - /@vscode/vsce@2.20.0: - resolution: {integrity: sha512-FR8Tq2WgGRi/Py5/9WUFG2DCxdqaHXyuhHXSP8hsNc1FsxNzAkqKqfvOUUGxA7gOytmc9s/000QA7wKVukMDbQ==} + /@vscode/vsce@2.20.1: + resolution: {integrity: sha512-ilbvoqvR/1/zseRPBAzYR6aKqSJ+jvda4/BqIwOqTxajpvLtEpK3kMLs77+dJdrlygS+VrP7Yhad8j0ukyD96g==} engines: {node: '>= 14'} hasBin: true dependencies: @@ -8860,7 +8675,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /autoprefixer@10.4.14(postcss@8.4.25): + /autoprefixer@10.4.14(postcss@8.4.27): resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -8872,7 +8687,7 @@ packages: fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -9272,13 +9087,13 @@ packages: run-applescript: 5.0.0 dev: true - /bundle-require@4.0.1(esbuild@0.18.9): + /bundle-require@4.0.1(esbuild@0.18.11): resolution: {integrity: sha512-9NQkRHlNdNpDBGmLpngF3EFDcwodhMUuLz9PaWYciVcQF9SE4LFjM2DB/xV1Li5JiuDMv7ZUWuC3rGbqR0MAXQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: esbuild: '>=0.17' dependencies: - esbuild: 0.18.9 + esbuild: 0.18.11 load-tsconfig: 0.2.5 dev: true @@ -10025,13 +9840,13 @@ packages: postcss: 8.4.23 dev: false - /css-declaration-sorter@6.4.0(postcss@8.4.25): + /css-declaration-sorter@6.4.0(postcss@8.4.27): resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==} engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 dev: false /css-in-js-utils@3.1.0: @@ -10046,12 +9861,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.25) - postcss: 8.4.25 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.25) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.25) - postcss-modules-scope: 3.0.0(postcss@8.4.25) - postcss-modules-values: 4.0.0(postcss@8.4.25) + icss-utils: 5.1.0(postcss@8.4.27) + postcss: 8.4.27 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.27) + postcss-modules-local-by-default: 4.0.3(postcss@8.4.27) + postcss-modules-scope: 3.0.0(postcss@8.4.27) + postcss-modules-values: 4.0.0(postcss@8.4.27) postcss-value-parser: 4.2.0 semver: 7.5.4 webpack: 5.88.1(@swc/core@1.3.68)(esbuild@0.15.18) @@ -10083,10 +9898,10 @@ packages: optional: true dependencies: clean-css: 5.3.2 - cssnano: 5.1.15(postcss@8.4.25) + cssnano: 5.1.15(postcss@8.4.27) esbuild: 0.15.18 jest-worker: 29.5.0 - postcss: 8.4.25 + postcss: 8.4.27 schema-utils: 4.1.0 serialize-javascript: 6.0.1 source-map: 0.6.1 @@ -10136,19 +9951,19 @@ packages: engines: {node: '>=4'} hasBin: true - /cssnano-preset-advanced@5.3.10(postcss@8.4.25): + /cssnano-preset-advanced@5.3.10(postcss@8.4.27): resolution: {integrity: sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - autoprefixer: 10.4.14(postcss@8.4.25) - cssnano-preset-default: 5.2.14(postcss@8.4.25) - postcss: 8.4.25 - postcss-discard-unused: 5.1.0(postcss@8.4.25) - postcss-merge-idents: 5.1.1(postcss@8.4.25) - postcss-reduce-idents: 5.2.0(postcss@8.4.25) - postcss-zindex: 5.1.0(postcss@8.4.25) + autoprefixer: 10.4.14(postcss@8.4.27) + cssnano-preset-default: 5.2.14(postcss@8.4.27) + postcss: 8.4.27 + postcss-discard-unused: 5.1.0(postcss@8.4.27) + postcss-merge-idents: 5.1.1(postcss@8.4.27) + postcss-reduce-idents: 5.2.0(postcss@8.4.27) + postcss-zindex: 5.1.0(postcss@8.4.27) dev: false /cssnano-preset-default@5.2.14(postcss@8.4.23): @@ -10189,42 +10004,42 @@ packages: postcss-unique-selectors: 5.1.1(postcss@8.4.23) dev: false - /cssnano-preset-default@5.2.14(postcss@8.4.25): + /cssnano-preset-default@5.2.14(postcss@8.4.27): resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.4.0(postcss@8.4.25) - cssnano-utils: 3.1.0(postcss@8.4.25) - postcss: 8.4.25 - postcss-calc: 8.2.4(postcss@8.4.25) - postcss-colormin: 5.3.1(postcss@8.4.25) - postcss-convert-values: 5.1.3(postcss@8.4.25) - postcss-discard-comments: 5.1.2(postcss@8.4.25) - postcss-discard-duplicates: 5.1.0(postcss@8.4.25) - postcss-discard-empty: 5.1.1(postcss@8.4.25) - postcss-discard-overridden: 5.1.0(postcss@8.4.25) - postcss-merge-longhand: 5.1.7(postcss@8.4.25) - postcss-merge-rules: 5.1.4(postcss@8.4.25) - postcss-minify-font-values: 5.1.0(postcss@8.4.25) - postcss-minify-gradients: 5.1.1(postcss@8.4.25) - postcss-minify-params: 5.1.4(postcss@8.4.25) - postcss-minify-selectors: 5.2.1(postcss@8.4.25) - postcss-normalize-charset: 5.1.0(postcss@8.4.25) - postcss-normalize-display-values: 5.1.0(postcss@8.4.25) - postcss-normalize-positions: 5.1.1(postcss@8.4.25) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.25) - postcss-normalize-string: 5.1.0(postcss@8.4.25) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.25) - postcss-normalize-unicode: 5.1.1(postcss@8.4.25) - postcss-normalize-url: 5.1.0(postcss@8.4.25) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.25) - postcss-ordered-values: 5.1.3(postcss@8.4.25) - postcss-reduce-initial: 5.1.2(postcss@8.4.25) - postcss-reduce-transforms: 5.1.0(postcss@8.4.25) - postcss-svgo: 5.1.0(postcss@8.4.25) - postcss-unique-selectors: 5.1.1(postcss@8.4.25) + css-declaration-sorter: 6.4.0(postcss@8.4.27) + cssnano-utils: 3.1.0(postcss@8.4.27) + postcss: 8.4.27 + postcss-calc: 8.2.4(postcss@8.4.27) + postcss-colormin: 5.3.1(postcss@8.4.27) + postcss-convert-values: 5.1.3(postcss@8.4.27) + postcss-discard-comments: 5.1.2(postcss@8.4.27) + postcss-discard-duplicates: 5.1.0(postcss@8.4.27) + postcss-discard-empty: 5.1.1(postcss@8.4.27) + postcss-discard-overridden: 5.1.0(postcss@8.4.27) + postcss-merge-longhand: 5.1.7(postcss@8.4.27) + postcss-merge-rules: 5.1.4(postcss@8.4.27) + postcss-minify-font-values: 5.1.0(postcss@8.4.27) + postcss-minify-gradients: 5.1.1(postcss@8.4.27) + postcss-minify-params: 5.1.4(postcss@8.4.27) + postcss-minify-selectors: 5.2.1(postcss@8.4.27) + postcss-normalize-charset: 5.1.0(postcss@8.4.27) + postcss-normalize-display-values: 5.1.0(postcss@8.4.27) + postcss-normalize-positions: 5.1.1(postcss@8.4.27) + postcss-normalize-repeat-style: 5.1.1(postcss@8.4.27) + postcss-normalize-string: 5.1.0(postcss@8.4.27) + postcss-normalize-timing-functions: 5.1.0(postcss@8.4.27) + postcss-normalize-unicode: 5.1.1(postcss@8.4.27) + postcss-normalize-url: 5.1.0(postcss@8.4.27) + postcss-normalize-whitespace: 5.1.1(postcss@8.4.27) + postcss-ordered-values: 5.1.3(postcss@8.4.27) + postcss-reduce-initial: 5.1.2(postcss@8.4.27) + postcss-reduce-transforms: 5.1.0(postcss@8.4.27) + postcss-svgo: 5.1.0(postcss@8.4.27) + postcss-unique-selectors: 5.1.1(postcss@8.4.27) dev: false /cssnano-utils@3.1.0(postcss@8.4.23): @@ -10236,13 +10051,13 @@ packages: postcss: 8.4.23 dev: false - /cssnano-utils@3.1.0(postcss@8.4.25): + /cssnano-utils@3.1.0(postcss@8.4.27): resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 dev: false /cssnano@5.1.15(postcss@8.4.23): @@ -10257,15 +10072,15 @@ packages: yaml: 1.10.2 dev: false - /cssnano@5.1.15(postcss@8.4.25): + /cssnano@5.1.15(postcss@8.4.27): resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.14(postcss@8.4.25) + cssnano-preset-default: 5.2.14(postcss@8.4.27) lilconfig: 2.1.0 - postcss: 8.4.25 + postcss: 8.4.27 yaml: 1.10.2 dev: false @@ -11092,6 +10907,10 @@ packages: dependencies: is-arrayish: 0.2.1 + /error-stack-parser-es@0.1.1: + resolution: {integrity: sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==} + dev: true + /error-stack-parser@2.1.4: resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} dependencies: @@ -11639,36 +11458,6 @@ packages: '@esbuild/win32-x64': 0.18.11 dev: true - /esbuild@0.18.9: - resolution: {integrity: sha512-rFw+7KsO3vF/imkldsCcIGnQVJ11Zq5a178SVS0N0wwFQ/alzS8owG06rivQ8FEuc66SJupdhTuYT7mnvmidLA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': 0.18.9 - '@esbuild/android-arm64': 0.18.9 - '@esbuild/android-x64': 0.18.9 - '@esbuild/darwin-arm64': 0.18.9 - '@esbuild/darwin-x64': 0.18.9 - '@esbuild/freebsd-arm64': 0.18.9 - '@esbuild/freebsd-x64': 0.18.9 - '@esbuild/linux-arm': 0.18.9 - '@esbuild/linux-arm64': 0.18.9 - '@esbuild/linux-ia32': 0.18.9 - '@esbuild/linux-loong64': 0.18.9 - '@esbuild/linux-mips64el': 0.18.9 - '@esbuild/linux-ppc64': 0.18.9 - '@esbuild/linux-riscv64': 0.18.9 - '@esbuild/linux-s390x': 0.18.9 - '@esbuild/linux-x64': 0.18.9 - '@esbuild/netbsd-x64': 0.18.9 - '@esbuild/openbsd-x64': 0.18.9 - '@esbuild/sunos-x64': 0.18.9 - '@esbuild/win32-arm64': 0.18.9 - '@esbuild/win32-ia32': 0.18.9 - '@esbuild/win32-x64': 0.18.9 - dev: true - /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -11704,7 +11493,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.1.0)(eslint-import-resolver-node@0.3.7)(eslint@8.45.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.3.0)(eslint-import-resolver-node@0.3.7)(eslint@8.47.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -11725,43 +11514,43 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 6.1.0(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/parser': 6.3.0(eslint@8.47.0)(typescript@5.1.6) debug: 3.2.7 - eslint: 8.45.0 + eslint: 8.47.0 eslint-import-resolver-node: 0.3.7 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-antfu@0.39.8(eslint@8.45.0)(typescript@5.1.6): - resolution: {integrity: sha512-VsQF1mofv0pg+9rhSohNhrxcufOzSsGyQdKqdyJHPMTT2mMwXAPgKW/v8SC6W7UDk1q/j2EHZ+UUOEAKRnkd7g==} + /eslint-plugin-antfu@0.40.2(eslint@8.47.0)(typescript@5.1.6): + resolution: {integrity: sha512-KB75cqamJ5/0OMlicC4HZUSnIBQb/TxFAPPEaubtT8sbI9614USTZNSfTjODjCk/+h21R9lFxpJvVzOlxyfDRQ==} dependencies: - '@typescript-eslint/utils': 6.1.0(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/utils': 6.3.0(eslint@8.47.0)(typescript@5.1.6) transitivePeerDependencies: - eslint - supports-color - typescript dev: true - /eslint-plugin-es-x@7.1.0(eslint@8.45.0): + /eslint-plugin-es-x@7.1.0(eslint@8.47.0): resolution: {integrity: sha512-AhiaF31syh4CCQ+C5ccJA0VG6+kJK8+5mXKKE7Qs1xcPRg02CDPOj3mWlQxuWS/AYtg7kxrDNgW9YW3vc0Q+Mw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '>=8' dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) - '@eslint-community/regexpp': 4.5.1 - eslint: 8.45.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) + '@eslint-community/regexpp': 4.6.2 + eslint: 8.47.0 dev: true - /eslint-plugin-eslint-comments@3.2.0(eslint@8.45.0): + /eslint-plugin-eslint-comments@3.2.0(eslint@8.47.0): resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} engines: {node: '>=6.5.0'} peerDependencies: eslint: '>=4.19.1' dependencies: escape-string-regexp: 1.0.5 - eslint: 8.45.0 + eslint: 8.47.0 ignore: 5.2.4 dev: true @@ -11771,17 +11560,17 @@ packages: htmlparser2: 8.0.2 dev: true - /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.1.0)(eslint@8.45.0): - resolution: {integrity: sha512-X3Z+dp9nZw7d/y41EDO6JyFw4WVMOT91SFuoJvL0C0/4M1l6NxQ5mLTjXHuYhq0AazW75pAmj25yMk5wPMzjsw==} + /eslint-plugin-i@2.28.0-2(@typescript-eslint/parser@6.3.0)(eslint@8.47.0): + resolution: {integrity: sha512-z48kG4qmE4TmiLcxbmvxMT5ycwvPkXaWW0XpU1L768uZaTbiDbxsHMEdV24JHlOR1xDsPpKW39BfP/pRdYIwFA==} engines: {node: '>=12'} peerDependencies: eslint: ^7.2.0 || ^8 dependencies: debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.45.0 + eslint: 8.47.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.1.0)(eslint-import-resolver-node@0.3.7)(eslint@8.45.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.3.0)(eslint-import-resolver-node@0.3.7)(eslint@8.47.0) get-tsconfig: 4.6.2 is-glob: 4.0.3 minimatch: 3.1.2 @@ -11794,7 +11583,7 @@ packages: - supports-color dev: true - /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.1.0)(eslint@8.45.0)(typescript@5.1.6): + /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.3.0)(eslint@8.47.0)(typescript@5.1.6): resolution: {integrity: sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -11807,52 +11596,52 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 6.1.0(@typescript-eslint/parser@6.1.0)(eslint@8.45.0)(typescript@5.1.6) - '@typescript-eslint/utils': 5.61.0(eslint@8.45.0)(typescript@5.1.6) - eslint: 8.45.0 + '@typescript-eslint/eslint-plugin': 6.3.0(@typescript-eslint/parser@6.3.0)(eslint@8.47.0)(typescript@5.1.6) + '@typescript-eslint/utils': 5.61.0(eslint@8.47.0)(typescript@5.1.6) + eslint: 8.47.0 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jsonc@2.9.0(eslint@8.45.0): + /eslint-plugin-jsonc@2.9.0(eslint@8.47.0): resolution: {integrity: sha512-RK+LeONVukbLwT2+t7/OY54NJRccTXh/QbnXzPuTLpFMVZhPuq1C9E07+qWenGx7rrQl0kAalAWl7EmB+RjpGA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) - eslint: 8.45.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) + eslint: 8.47.0 jsonc-eslint-parser: 2.3.0 natural-compare: 1.4.0 dev: true - /eslint-plugin-markdown@3.0.0(eslint@8.45.0): - resolution: {integrity: sha512-hRs5RUJGbeHDLfS7ELanT0e29Ocyssf/7kBM+p7KluY5AwngGkDf8Oyu4658/NZSGTTq05FZeWbkxXtbVyHPwg==} + /eslint-plugin-markdown@3.0.1(eslint@8.47.0): + resolution: {integrity: sha512-8rqoc148DWdGdmYF6WSQFT3uQ6PO7zXYgeBpHAOAakX/zpq+NvFYbDA/H7PYzHajwtmaOzAwfxyl++x0g1/N9A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.45.0 + eslint: 8.47.0 mdast-util-from-markdown: 0.8.5 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-n@16.0.1(eslint@8.45.0): + /eslint-plugin-n@16.0.1(eslint@8.47.0): resolution: {integrity: sha512-CDmHegJN0OF3L5cz5tATH84RPQm9kG+Yx39wIqIwPR2C0uhBGMWfbbOtetR83PQjjidA5aXMu+LEFw1jaSwvTA==} engines: {node: '>=16.0.0'} peerDependencies: eslint: '>=7.0.0' dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) builtins: 5.0.1 - eslint: 8.45.0 - eslint-plugin-es-x: 7.1.0(eslint@8.45.0) + eslint: 8.47.0 + eslint-plugin-es-x: 7.1.0(eslint@8.47.0) ignore: 5.2.4 is-core-module: 2.12.1 minimatch: 3.1.2 - resolve: 1.22.2 + resolve: 1.22.3 semver: 7.5.4 dev: true @@ -11861,26 +11650,26 @@ packages: engines: {node: '>=5.0.0'} dev: true - /eslint-plugin-promise@6.1.1(eslint@8.45.0): + /eslint-plugin-promise@6.1.1(eslint@8.47.0): resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.45.0 + eslint: 8.47.0 dev: true - /eslint-plugin-unicorn@48.0.0(eslint@8.45.0): - resolution: {integrity: sha512-8fk/v3p1ro34JSVDBEmtOq6EEQRpMR0iTir79q69KnXFZ6DJyPkT3RAi+ZoTqhQMdDSpGh8BGR68ne1sP5cnAA==} + /eslint-plugin-unicorn@48.0.1(eslint@8.47.0): + resolution: {integrity: sha512-FW+4r20myG/DqFcCSzoumaddKBicIPeFnTrifon2mWIzlfyvzwyqZjqVP7m4Cqr/ZYisS2aiLghkUWaPg6vtCw==} engines: {node: '>=16'} peerDependencies: eslint: '>=8.44.0' dependencies: '@babel/helper-validator-identifier': 7.22.5 - '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) ci-info: 3.8.0 clean-regexp: 1.0.0 - eslint: 8.45.0 + eslint: 8.47.0 esquery: 1.5.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 @@ -11894,7 +11683,7 @@ packages: strip-indent: 3.0.0 dev: true - /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.1.0)(eslint@8.45.0): + /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.3.0)(eslint@8.47.0): resolution: {integrity: sha512-sduiswLJfZHeeBJ+MQaG+xYzSWdRXoSw61DpU13mzWumCkR0ufD0HmO4kdNokjrkluMHpj/7PJeN35pgbhW3kw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -11904,37 +11693,37 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 6.1.0(@typescript-eslint/parser@6.1.0)(eslint@8.45.0)(typescript@5.1.6) - eslint: 8.45.0 + '@typescript-eslint/eslint-plugin': 6.3.0(@typescript-eslint/parser@6.3.0)(eslint@8.47.0)(typescript@5.1.6) + eslint: 8.47.0 eslint-rule-composer: 0.3.0 dev: true - /eslint-plugin-vue@9.15.1(eslint@8.45.0): - resolution: {integrity: sha512-CJE/oZOslvmAR9hf8SClTdQ9JLweghT6JCBQNrT2Iel1uVw0W0OLJxzvPd6CxmABKCvLrtyDnqGV37O7KQv6+A==} + /eslint-plugin-vue@9.17.0(eslint@8.47.0): + resolution: {integrity: sha512-r7Bp79pxQk9I5XDP0k2dpUC7Ots3OSWgvGZNu3BxmKK6Zg7NgVtcOB6OCna5Kb9oQwJPl5hq183WD0SY5tZtIQ==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) - eslint: 8.45.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) + eslint: 8.47.0 natural-compare: 1.4.0 nth-check: 2.1.1 - postcss-selector-parser: 6.0.12 + postcss-selector-parser: 6.0.13 semver: 7.5.4 - vue-eslint-parser: 9.3.0(eslint@8.45.0) + vue-eslint-parser: 9.3.1(eslint@8.47.0) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-yml@1.8.0(eslint@8.45.0): + /eslint-plugin-yml@1.8.0(eslint@8.47.0): resolution: {integrity: sha512-fgBiJvXD0P2IN7SARDJ2J7mx8t0bLdG6Zcig4ufOqW5hOvSiFxeUyc2g5I1uIm8AExbo26NNYCcTGZT0MXTsyg==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 - eslint: 8.45.0 + eslint: 8.47.0 lodash: 4.17.21 natural-compare: 1.4.0 yaml-eslint-parser: 1.2.2 @@ -11954,8 +11743,8 @@ packages: esrecurse: 4.3.0 estraverse: 4.3.0 - /eslint-scope@7.2.0: - resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} + /eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: esrecurse: 4.3.0 @@ -11965,15 +11754,19 @@ packages: resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /eslint@8.45.0: - resolution: {integrity: sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw==} + /eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + /eslint@8.47.0: + resolution: {integrity: sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) - '@eslint-community/regexpp': 4.5.1 - '@eslint/eslintrc': 2.1.0 - '@eslint/js': 8.44.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) + '@eslint-community/regexpp': 4.6.2 + '@eslint/eslintrc': 2.1.2 + '@eslint/js': 8.47.0 '@humanwhocodes/config-array': 0.11.10 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 @@ -11983,9 +11776,9 @@ packages: debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 - eslint-scope: 7.2.0 - eslint-visitor-keys: 3.4.1 - espree: 9.6.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 @@ -12024,13 +11817,13 @@ packages: tsx: 3.12.7 dev: true - /espree@9.6.0: - resolution: {integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==} + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.9.0 acorn-jsx: 5.3.2(acorn@8.9.0) - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 /esprima-extract-comments@1.1.0: resolution: {integrity: sha512-sBQUnvJwpeE9QnPrxh7dpI/dp67erYG4WXEAreAMoelPRpMR7NWb4YtwRPn9b+H1uLQKl/qS8WYmyaljTpjIsw==} @@ -12457,7 +12250,7 @@ packages: signal-exit: 4.0.2 dev: true - /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.45.0)(typescript@5.1.6)(webpack@5.88.1): + /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.47.0)(typescript@5.1.6)(webpack@5.88.1): resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -12477,7 +12270,7 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.3.1 - eslint: 8.45.0 + eslint: 8.47.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.5.3 @@ -12528,8 +12321,8 @@ packages: resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} dev: false - /framer-motion@10.15.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-HDjWrYWgbO5orKuhnXETLFzk7UUvwWur2HFs2elAZ8lVpI49ClHql31DNTVvVBcOrSHfAOS4eBDBedIvOx634w==} + /framer-motion@10.15.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-6avJj/Uftblw0fMmo6jDHkKRH4TBdkMX/FiyR3G/hFe3hQHE4BUNJCqlMPKg9EzfI5jyqDOwO5oDnU+bW5y0eg==} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 @@ -13370,8 +13163,8 @@ packages: - encoding dev: true - /i18next@23.4.2: - resolution: {integrity: sha512-hkVPHKFLtn9iewdqHDiU+MGVIBk+bVFn5usw7CIeCn/SBcVKGTItGdjNPm2B8Lnz42CeHUlnSOTgsr5vbITjhA==} + /i18next@23.4.4: + resolution: {integrity: sha512-+c9B0txp/x1m5zn+QlwHaCS9vyFtmIAEXbVSFzwCX7vupm5V7va8F9cJGNJZ46X9ZtoGzhIiRC7eTIIh93TxPA==} dependencies: '@babel/runtime': 7.22.5 dev: true @@ -13388,13 +13181,13 @@ packages: dependencies: safer-buffer: 2.1.2 - /icss-utils@5.1.0(postcss@8.4.25): + /icss-utils@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 dev: false /idb@7.1.1: @@ -14126,8 +13919,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.9.0 - eslint-visitor-keys: 3.4.1 - espree: 9.6.0 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 semver: 7.5.4 dev: true @@ -14200,8 +13993,8 @@ packages: engines: {node: '>= 8'} dev: false - /langchain@0.0.123(ignore@5.2.4): - resolution: {integrity: sha512-dMncy/yttMqch11tQUNdygQJlqlKampl8BULFWqZGG1uopzXC1ljqohWpdeLkwAYdKZ7uKcpdaYEXMvhxZsIJQ==} + /langchain@0.0.127(ignore@5.2.4): + resolution: {integrity: sha512-1y2zoK43eZvnJDxr4cADXzv9FmCW5JPzcRD6B5QedwduMGyKlS8OAoKhCGw/Q1Df8qZkNuYP9fE6hLhucJpzKg==} engines: {node: '>=18'} peerDependencies: '@aws-sdk/client-dynamodb': ^3.310.0 @@ -14214,7 +14007,7 @@ packages: '@clickhouse/client': ^0.0.14 '@elastic/elasticsearch': ^8.4.0 '@getmetal/metal-sdk': '*' - '@getzep/zep-js': ^0.4.1 + '@getzep/zep-js': ^0.6.3 '@gomomento/sdk': ^1.23.0 '@google-ai/generativelanguage': ^0.2.1 '@google-cloud/storage': ^6.10.1 @@ -14224,6 +14017,7 @@ packages: '@pinecone-database/pinecone': '*' '@planetscale/database': ^1.8.0 '@qdrant/js-client-rest': ^1.2.0 + '@raycast/api': ^1.55.2 '@supabase/postgrest-js': ^1.1.1 '@supabase/supabase-js': ^2.10.0 '@tensorflow-models/universal-sentence-encoder': '*' @@ -14264,8 +14058,9 @@ packages: srt-parser-2: ^1.2.2 typeorm: ^0.3.12 typesense: ^1.5.3 + usearch: ^1.1.1 vectordb: ^0.1.4 - weaviate-ts-client: ^1.0.0 + weaviate-ts-client: ^1.4.0 peerDependenciesMeta: '@aws-sdk/client-dynamodb': optional: true @@ -14307,6 +14102,8 @@ packages: optional: true '@qdrant/js-client-rest': optional: true + '@raycast/api': + optional: true '@supabase/postgrest-js': optional: true '@supabase/supabase-js': @@ -14387,6 +14184,8 @@ packages: optional: true typesense: optional: true + usearch: + optional: true vectordb: optional: true weaviate-ts-client: @@ -16392,8 +16191,8 @@ packages: engines: {node: '>=4'} dev: true - /pnpm@8.6.10: - resolution: {integrity: sha512-EBlPdgrAqmIDK6lflNm8M4lueWGM4PKJIDngt6vJ1+fmzh3e0482tg52nUjiuGvkzZ2sngA181GLqknXhAHgIg==} + /pnpm@8.6.12: + resolution: {integrity: sha512-Eza4C5SO/Xl5IYozupbZ5NOA5leBRPYxmXmXfe7G4/4uCkRLhks84rB33aitxNZU/uMrnDGGjwrLktoKvPjqHA==} engines: {node: '>=16.14'} hasBin: true dev: true @@ -16404,17 +16203,17 @@ packages: postcss: ^8.2.2 dependencies: postcss: 8.4.23 - postcss-selector-parser: 6.0.12 + postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 dev: false - /postcss-calc@8.2.4(postcss@8.4.25): + /postcss-calc@8.2.4(postcss@8.4.27): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.25 - postcss-selector-parser: 6.0.12 + postcss: 8.4.27 + postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 dev: false @@ -16431,7 +16230,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-colormin@5.3.1(postcss@8.4.25): + /postcss-colormin@5.3.1(postcss@8.4.27): resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -16440,7 +16239,7 @@ packages: browserslist: 4.21.9 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16455,14 +16254,14 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-convert-values@5.1.3(postcss@8.4.25): + /postcss-convert-values@5.1.3(postcss@8.4.27): resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.9 - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16475,13 +16274,13 @@ packages: postcss: 8.4.23 dev: false - /postcss-discard-comments@5.1.2(postcss@8.4.25): + /postcss-discard-comments@5.1.2(postcss@8.4.27): resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 dev: false /postcss-discard-duplicates@5.1.0(postcss@8.4.23): @@ -16493,13 +16292,13 @@ packages: postcss: 8.4.23 dev: false - /postcss-discard-duplicates@5.1.0(postcss@8.4.25): + /postcss-discard-duplicates@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 dev: false /postcss-discard-empty@5.1.1(postcss@8.4.23): @@ -16511,13 +16310,13 @@ packages: postcss: 8.4.23 dev: false - /postcss-discard-empty@5.1.1(postcss@8.4.25): + /postcss-discard-empty@5.1.1(postcss@8.4.27): resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 dev: false /postcss-discard-overridden@5.1.0(postcss@8.4.23): @@ -16529,23 +16328,23 @@ packages: postcss: 8.4.23 dev: false - /postcss-discard-overridden@5.1.0(postcss@8.4.25): + /postcss-discard-overridden@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 dev: false - /postcss-discard-unused@5.1.0(postcss@8.4.25): + /postcss-discard-unused@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 - postcss-selector-parser: 6.0.12 + postcss: 8.4.27 + postcss-selector-parser: 6.0.13 dev: false /postcss-load-config@4.0.1: @@ -16579,14 +16378,14 @@ packages: webpack: 5.88.1(@swc/core@1.3.68)(esbuild@0.15.18) dev: false - /postcss-merge-idents@5.1.1(postcss@8.4.25): + /postcss-merge-idents@5.1.1(postcss@8.4.27): resolution: {integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0(postcss@8.4.25) - postcss: 8.4.25 + cssnano-utils: 3.1.0(postcss@8.4.27) + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16601,15 +16400,15 @@ packages: stylehacks: 5.1.1(postcss@8.4.23) dev: false - /postcss-merge-longhand@5.1.7(postcss@8.4.25): + /postcss-merge-longhand@5.1.7(postcss@8.4.27): resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1(postcss@8.4.25) + stylehacks: 5.1.1(postcss@8.4.27) dev: false /postcss-merge-rules@5.1.4(postcss@8.4.23): @@ -16622,10 +16421,10 @@ packages: caniuse-api: 3.0.0 cssnano-utils: 3.1.0(postcss@8.4.23) postcss: 8.4.23 - postcss-selector-parser: 6.0.12 + postcss-selector-parser: 6.0.13 dev: false - /postcss-merge-rules@5.1.4(postcss@8.4.25): + /postcss-merge-rules@5.1.4(postcss@8.4.27): resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -16633,9 +16432,9 @@ packages: dependencies: browserslist: 4.21.9 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.25) - postcss: 8.4.25 - postcss-selector-parser: 6.0.12 + cssnano-utils: 3.1.0(postcss@8.4.27) + postcss: 8.4.27 + postcss-selector-parser: 6.0.13 dev: false /postcss-minify-font-values@5.1.0(postcss@8.4.23): @@ -16648,13 +16447,13 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-minify-font-values@5.1.0(postcss@8.4.25): + /postcss-minify-font-values@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16670,15 +16469,15 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-minify-gradients@5.1.1(postcss@8.4.25): + /postcss-minify-gradients@5.1.1(postcss@8.4.27): resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0(postcss@8.4.25) - postcss: 8.4.25 + cssnano-utils: 3.1.0(postcss@8.4.27) + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16694,15 +16493,15 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-minify-params@5.1.4(postcss@8.4.25): + /postcss-minify-params@5.1.4(postcss@8.4.27): resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.9 - cssnano-utils: 3.1.0(postcss@8.4.25) - postcss: 8.4.25 + cssnano-utils: 3.1.0(postcss@8.4.27) + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16713,58 +16512,58 @@ packages: postcss: ^8.2.15 dependencies: postcss: 8.4.23 - postcss-selector-parser: 6.0.12 + postcss-selector-parser: 6.0.13 dev: false - /postcss-minify-selectors@5.2.1(postcss@8.4.25): + /postcss-minify-selectors@5.2.1(postcss@8.4.27): resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 - postcss-selector-parser: 6.0.12 + postcss: 8.4.27 + postcss-selector-parser: 6.0.13 dev: false - /postcss-modules-extract-imports@3.0.0(postcss@8.4.25): + /postcss-modules-extract-imports@3.0.0(postcss@8.4.27): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 dev: false - /postcss-modules-local-by-default@4.0.3(postcss@8.4.25): + /postcss-modules-local-by-default@4.0.3(postcss@8.4.27): resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.25) - postcss: 8.4.25 - postcss-selector-parser: 6.0.12 + icss-utils: 5.1.0(postcss@8.4.27) + postcss: 8.4.27 + postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 dev: false - /postcss-modules-scope@3.0.0(postcss@8.4.25): + /postcss-modules-scope@3.0.0(postcss@8.4.27): resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.25 - postcss-selector-parser: 6.0.12 + postcss: 8.4.27 + postcss-selector-parser: 6.0.13 dev: false - /postcss-modules-values@4.0.0(postcss@8.4.25): + /postcss-modules-values@4.0.0(postcss@8.4.27): resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.25) - postcss: 8.4.25 + icss-utils: 5.1.0(postcss@8.4.27) + postcss: 8.4.27 dev: false /postcss-normalize-charset@5.1.0(postcss@8.4.23): @@ -16776,13 +16575,13 @@ packages: postcss: 8.4.23 dev: false - /postcss-normalize-charset@5.1.0(postcss@8.4.25): + /postcss-normalize-charset@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 dev: false /postcss-normalize-display-values@5.1.0(postcss@8.4.23): @@ -16795,13 +16594,13 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-display-values@5.1.0(postcss@8.4.25): + /postcss-normalize-display-values@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16815,13 +16614,13 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-positions@5.1.1(postcss@8.4.25): + /postcss-normalize-positions@5.1.1(postcss@8.4.27): resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16835,13 +16634,13 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.25): + /postcss-normalize-repeat-style@5.1.1(postcss@8.4.27): resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16855,13 +16654,13 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-string@5.1.0(postcss@8.4.25): + /postcss-normalize-string@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16875,13 +16674,13 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.25): + /postcss-normalize-timing-functions@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16896,14 +16695,14 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-unicode@5.1.1(postcss@8.4.25): + /postcss-normalize-unicode@5.1.1(postcss@8.4.27): resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.9 - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16918,14 +16717,14 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-url@5.1.0(postcss@8.4.25): + /postcss-normalize-url@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16939,13 +16738,13 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-whitespace@5.1.1(postcss@8.4.25): + /postcss-normalize-whitespace@5.1.1(postcss@8.4.27): resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16960,24 +16759,24 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-ordered-values@5.1.3(postcss@8.4.25): + /postcss-ordered-values@5.1.3(postcss@8.4.27): resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0(postcss@8.4.25) - postcss: 8.4.25 + cssnano-utils: 3.1.0(postcss@8.4.27) + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false - /postcss-reduce-idents@5.2.0(postcss@8.4.25): + /postcss-reduce-idents@5.2.0(postcss@8.4.27): resolution: {integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false @@ -16992,7 +16791,7 @@ packages: postcss: 8.4.23 dev: false - /postcss-reduce-initial@5.1.2(postcss@8.4.25): + /postcss-reduce-initial@5.1.2(postcss@8.4.27): resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -17000,7 +16799,7 @@ packages: dependencies: browserslist: 4.21.9 caniuse-api: 3.0.0 - postcss: 8.4.25 + postcss: 8.4.27 dev: false /postcss-reduce-transforms@5.1.0(postcss@8.4.23): @@ -17013,30 +16812,30 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-reduce-transforms@5.1.0(postcss@8.4.25): + /postcss-reduce-transforms@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 dev: false - /postcss-selector-parser@6.0.12: - resolution: {integrity: sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg==} + /postcss-selector-parser@6.0.13: + resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} engines: {node: '>=4'} dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-sort-media-queries@4.4.1(postcss@8.4.25): + /postcss-sort-media-queries@4.4.1(postcss@8.4.27): resolution: {integrity: sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.4.16 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 sort-css-media-queries: 2.1.0 dev: false @@ -17051,13 +16850,13 @@ packages: svgo: 2.8.0 dev: false - /postcss-svgo@5.1.0(postcss@8.4.25): + /postcss-svgo@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 postcss-value-parser: 4.2.0 svgo: 2.8.0 dev: false @@ -17069,29 +16868,29 @@ packages: postcss: ^8.2.15 dependencies: postcss: 8.4.23 - postcss-selector-parser: 6.0.12 + postcss-selector-parser: 6.0.13 dev: false - /postcss-unique-selectors@5.1.1(postcss@8.4.25): + /postcss-unique-selectors@5.1.1(postcss@8.4.27): resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 - postcss-selector-parser: 6.0.12 + postcss: 8.4.27 + postcss-selector-parser: 6.0.13 dev: false /postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - /postcss-zindex@5.1.0(postcss@8.4.25): + /postcss-zindex@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.25 + postcss: 8.4.27 dev: false /postcss@8.4.23: @@ -17103,15 +16902,6 @@ packages: source-map-js: 1.0.2 dev: false - /postcss@8.4.25: - resolution: {integrity: sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw==} - engines: {node: ^10 || ^12 || >=14} - dependencies: - nanoid: 3.3.6 - picocolors: 1.0.0 - source-map-js: 1.0.2 - dev: false - /postcss@8.4.27: resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==} engines: {node: ^10 || ^12 || >=14} @@ -17119,7 +16909,6 @@ packages: nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 - dev: true /prebuild-install@7.1.1: resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} @@ -17148,8 +16937,8 @@ packages: engines: {node: '>=4'} dev: false - /prettier@3.0.0: - resolution: {integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==} + /prettier@3.0.1: + resolution: {integrity: sha512-fcOWSnnpCrovBsmFZIGIy9UqK2FaI7Hqax+DIO0A9UxeVoY4iweyaFjS5TavZN97Hfehph0nhsZnjlVKzEQSrQ==} engines: {node: '>=14'} hasBin: true dev: true @@ -17375,7 +17164,7 @@ packages: pure-color: 1.3.0 dev: false - /react-dev-utils@12.0.1(eslint@8.45.0)(typescript@5.1.6)(webpack@5.88.1): + /react-dev-utils@12.0.1(eslint@8.47.0)(typescript@5.1.6)(webpack@5.88.1): resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} peerDependencies: @@ -17394,7 +17183,7 @@ packages: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.45.0)(typescript@5.1.6)(webpack@5.88.1) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.47.0)(typescript@5.1.6)(webpack@5.88.1) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -17438,12 +17227,12 @@ packages: scheduler: 0.23.0 dev: true - /react-error-boundary@4.0.10(react@18.2.0): - resolution: {integrity: sha512-pvVKdi77j2OoPHo+p3rorgE43OjDWiqFkaqkJz8sJKK6uf/u8xtzuaVfj5qJ2JnDLIgF1De3zY5AJDijp+LVPA==} + /react-error-boundary@4.0.11(react@18.2.0): + resolution: {integrity: sha512-U13ul67aP5DOSPNSCWQ/eO0AQEYzEFkVljULQIjMV0KlffTAhxuDoBKdO0pb/JZ8mDhMKFZ9NZi0BmLGUiNphw==} peerDependencies: react: '>=16.13.1' dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.22.5 react: 18.2.0 dev: true @@ -17493,8 +17282,8 @@ packages: - csstype dev: true - /react-i18next@13.0.3(i18next@23.4.2)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-/t4kt4Y2o+21hbvx+o9zpVnmoiud7KLDncyZFGN0U6TGAWYaXdTsp/ytAHFcKKSAODg4noIMaOO3X7bMgCqLHw==} + /react-i18next@13.1.2(i18next@23.4.4)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-D/OJ/8ZQYscabsvbCAiOgvJq8W3feQF/VIV0to1w7V7UvrUE1IZ3hcalOckUYvKBd7BP3b8EPm+hop3J8sS+Mw==} peerDependencies: i18next: '>= 23.2.3' react: '>= 16.8.0' @@ -17508,7 +17297,7 @@ packages: dependencies: '@babel/runtime': 7.22.5 html-parse-stringify: 3.0.1 - i18next: 23.4.2 + i18next: 23.4.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -17519,7 +17308,7 @@ packages: /react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - /react-json-view@1.21.3(@types/react@18.2.17)(react-dom@17.0.2)(react@17.0.2): + /react-json-view@1.21.3(@types/react@18.2.20)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==} peerDependencies: react: ^17.0.0 || ^16.3.0 || ^15.5.4 @@ -17530,7 +17319,7 @@ packages: react-base16-styling: 0.6.0 react-dom: 17.0.2(react@17.0.2) react-lifecycles-compat: 3.0.4 - react-textarea-autosize: 8.4.1(@types/react@18.2.17)(react@17.0.2) + react-textarea-autosize: 8.4.1(@types/react@18.2.20)(react@17.0.2) transitivePeerDependencies: - '@types/react' - encoding @@ -17562,7 +17351,7 @@ packages: webpack: 5.88.1(@swc/core@1.3.68)(esbuild@0.15.18) dev: false - /react-markdown@8.0.7(@types/react@18.2.18)(react@18.2.0): + /react-markdown@8.0.7(@types/react@18.2.20)(react@18.2.0): resolution: {integrity: sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==} peerDependencies: '@types/react': '>=16' @@ -17570,7 +17359,7 @@ packages: dependencies: '@types/hast': 2.3.4 '@types/prop-types': 15.7.5 - '@types/react': 18.2.18 + '@types/react': 18.2.20 '@types/unist': 2.0.6 comma-separated-tokens: 2.0.3 hast-util-whitespace: 2.0.1 @@ -17646,17 +17435,17 @@ packages: tiny-warning: 1.0.3 dev: false - /react-router-dom@6.14.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-5pWX0jdKR48XFZBuJqHosX3AAHjRAzygouMTyimnBPOLdY3WjzUSKhus2FVMihUFWzeLebDgr4r8UeQFAct7Bg==} - engines: {node: '>=14'} + /react-router-dom@6.15.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-aR42t0fs7brintwBGAv2+mGlCtgtFQeOzK0BM1/OiqEzRejOZtpMZepvgkscpMUnKb8YO84G7s3LsHnnDNonbQ==} + engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' react-dom: '>=16.8' dependencies: - '@remix-run/router': 1.7.2 + '@remix-run/router': 1.8.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-router: 6.14.2(react@18.2.0) + react-router: 6.15.0(react@18.2.0) dev: true /react-router@5.3.4(react@17.0.2): @@ -17676,13 +17465,13 @@ packages: tiny-warning: 1.0.3 dev: false - /react-router@6.14.2(react@18.2.0): - resolution: {integrity: sha512-09Zss2dE2z+T1D03IheqAFtK4UzQyX8nFPWx6jkwdYzGLXd5ie06A6ezS2fO6zJfEb/SpG6UocN2O1hfD+2urQ==} - engines: {node: '>=14'} + /react-router@6.15.0(react@18.2.0): + resolution: {integrity: sha512-NIytlzvzLwJkCQj2HLefmeakxxWHWAP+02EGqWEZy+DgfHHKQMUoBBjUQLOtFInBMhWtb3hiUy6MfFgwLjXhqg==} + engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' dependencies: - '@remix-run/router': 1.7.2 + '@remix-run/router': 1.8.0 react: 18.2.0 dev: true @@ -17699,7 +17488,7 @@ packages: refractor: 3.6.0 dev: true - /react-textarea-autosize@8.4.1(@types/react@18.2.17)(react@17.0.2): + /react-textarea-autosize@8.4.1(@types/react@18.2.20)(react@17.0.2): resolution: {integrity: sha512-aD2C+qK6QypknC+lCMzteOdIjoMbNlgSFmJjCV+DrfTPwp59i/it9mMNf2HDzvRjQgKAyBDPyLJhcrzElf2U4Q==} engines: {node: '>=10'} peerDependencies: @@ -17708,7 +17497,7 @@ packages: '@babel/runtime': 7.22.5 react: 17.0.2 use-composed-ref: 1.3.0(react@17.0.2) - use-latest: 1.2.1(@types/react@18.2.17)(react@17.0.2) + use-latest: 1.2.1(@types/react@18.2.20)(react@17.0.2) transitivePeerDependencies: - '@types/react' dev: false @@ -18104,15 +17893,6 @@ packages: /resolve-pkg-maps@1.0.0: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} - /resolve@1.22.2: - resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} - hasBin: true - dependencies: - is-core-module: 2.12.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - dev: true - /resolve@1.22.3: resolution: {integrity: sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==} hasBin: true @@ -18227,8 +18007,8 @@ packages: optionalDependencies: fsevents: 2.3.2 - /rollup@3.26.3: - resolution: {integrity: sha512-7Tin0C8l86TkpcMtXvQu6saWH93nhG3dGQ1/+l5V2TDMceTxO7kDiK6GzbfLWNNxqJXm591PcEZUozZm51ogwQ==} + /rollup@3.28.0: + resolution: {integrity: sha512-d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -18255,7 +18035,7 @@ packages: dependencies: find-up: 5.0.0 picocolors: 1.0.0 - postcss: 8.4.25 + postcss: 8.4.27 strip-json-comments: 3.1.1 dev: false @@ -19175,18 +18955,18 @@ packages: dependencies: browserslist: 4.21.9 postcss: 8.4.23 - postcss-selector-parser: 6.0.12 + postcss-selector-parser: 6.0.13 dev: false - /stylehacks@5.1.1(postcss@8.4.25): + /stylehacks@5.1.1(postcss@8.4.27): resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.9 - postcss: 8.4.25 - postcss-selector-parser: 6.0.12 + postcss: 8.4.27 + postcss-selector-parser: 6.0.13 dev: false /stylis@4.2.0: @@ -19435,8 +19215,8 @@ packages: resolution: {integrity: sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA==} dev: true - /tinypool@0.6.0: - resolution: {integrity: sha512-FdswUUo5SxRizcBc6b1GSuLpLjisa8N8qMyYoP3rl+bym+QauhtJP5bvZY1ytt8krKGmMLYIRl36HBZfeAoqhQ==} + /tinypool@0.7.0: + resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==} engines: {node: '>=14.0.0'} dev: true @@ -19609,8 +19389,8 @@ packages: /tslib@2.5.0: resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - /tsup@7.1.0(typescript@5.1.6): - resolution: {integrity: sha512-mazl/GRAk70j8S43/AbSYXGgvRP54oQeX8Un4iZxzATHt0roW0t6HYDVZIXMw0ZQIpvr1nFMniIVnN5186lW7w==} + /tsup@7.2.0(typescript@5.1.6): + resolution: {integrity: sha512-vDHlczXbgUvY3rWvqFEbSqmC1L7woozbzngMqTtL2PGBODTtWlRwGDDawhvWzr5c1QjKe4OAKqJGfE1xeXUvtQ==} engines: {node: '>=16.14'} hasBin: true peerDependencies: @@ -19625,17 +19405,17 @@ packages: typescript: optional: true dependencies: - bundle-require: 4.0.1(esbuild@0.18.9) + bundle-require: 4.0.1(esbuild@0.18.11) cac: 6.7.14 chokidar: 3.5.3 debug: 4.3.4 - esbuild: 0.18.9 + esbuild: 0.18.11 execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 postcss-load-config: 4.0.1 resolve-from: 5.0.0 - rollup: 3.26.3 + rollup: 3.28.0 source-map: 0.8.0-beta.0 sucrase: 3.32.0 tree-kill: 1.2.2 @@ -19906,10 +19686,10 @@ packages: vfile: 4.2.1 dev: false - /unimport@3.0.14(rollup@3.26.3): + /unimport@3.0.14(rollup@3.28.0): resolution: {integrity: sha512-67Rh/sGpEuVqdHWkXaZ6NOq+I7sKt86o+DUtKeGB6dh4Hk1A8AQrzyVGg2+LaVEYotStH7HwvV9YSaRjyT7Uqg==} dependencies: - '@rollup/pluginutils': 5.0.2(rollup@3.26.3) + '@rollup/pluginutils': 5.0.2(rollup@3.28.0) escape-string-regexp: 5.0.0 fast-glob: 3.3.1 local-pkg: 0.4.3 @@ -20088,7 +19868,7 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - /unplugin-auto-import@0.16.6(rollup@3.26.3): + /unplugin-auto-import@0.16.6(rollup@3.28.0): resolution: {integrity: sha512-M+YIITkx3C/Hg38hp8HmswP5mShUUyJOzpifv7RTlAbeFlO2Tyw0pwrogSSxnipHDPTtI8VHFBpkYkNKzYSuyA==} engines: {node: '>=14'} peerDependencies: @@ -20101,12 +19881,12 @@ packages: optional: true dependencies: '@antfu/utils': 0.7.5 - '@rollup/pluginutils': 5.0.2(rollup@3.26.3) + '@rollup/pluginutils': 5.0.2(rollup@3.28.0) fast-glob: 3.3.1 local-pkg: 0.4.3 magic-string: 0.30.0 minimatch: 9.0.3 - unimport: 3.0.14(rollup@3.26.3) + unimport: 3.0.14(rollup@3.28.0) unplugin: 1.3.2 transitivePeerDependencies: - rollup @@ -20220,7 +20000,7 @@ packages: react: 17.0.2 dev: false - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.17)(react@17.0.2): + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.20)(react@17.0.2): resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -20229,11 +20009,11 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.17 + '@types/react': 18.2.20 react: 17.0.2 dev: false - /use-latest@1.2.1(@types/react@18.2.17)(react@17.0.2): + /use-latest@1.2.1(@types/react@18.2.20)(react@17.0.2): resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' @@ -20242,9 +20022,9 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.17 + '@types/react': 18.2.20 react: 17.0.2 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.17)(react@17.0.2) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.20)(react@17.0.2) dev: false /use-sync-external-store@1.2.0(react@17.0.2): @@ -20376,8 +20156,8 @@ packages: unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 - /vite-node@0.33.0(@types/node@18.16.19)(terser@5.19.2): - resolution: {integrity: sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==} + /vite-node@0.34.1(@types/node@18.16.19)(terser@5.19.2): + resolution: {integrity: sha512-odAZAL9xFMuAg8aWd7nSPT+hU8u2r9gU3LRm9QKjxBEF2rRdWpMuqkrkjvyVQEdNFiBctqr2Gg4uJYizm5Le6w==} engines: {node: '>=v14.18.0'} hasBin: true dependencies: @@ -20386,7 +20166,7 @@ packages: mlly: 1.4.0 pathe: 1.1.1 picocolors: 1.0.0 - vite: 4.4.8(@types/node@18.16.19)(terser@5.19.2) + vite: 4.4.9(@types/node@18.16.19)(terser@5.19.2) transitivePeerDependencies: - '@types/node' - less @@ -20398,20 +20178,25 @@ packages: - terser dev: true - /vite-plugin-inspect@0.7.33(rollup@3.26.3)(vite@4.4.7): - resolution: {integrity: sha512-cQRLQKa/+Ua++5hN0IZfqNn1JYXBg2eCQOSUatPTwhXMO7nwfSvhhSc45E1nXfBBEhzLLOxgr1OdbDu55PiDDA==} + /vite-plugin-inspect@0.7.38(rollup@3.28.0)(vite@4.4.9): + resolution: {integrity: sha512-+p6pJVtBOLGv+RBrcKAFUdx+euizg0bjL35HhPyM0MjtKlqoC5V9xkCmO9Ctc8JrTyXqODbHqiLWJKumu5zJ7g==} engines: {node: '>=14'} peerDependencies: + '@nuxt/kit': '*' vite: ^3.1.0 || ^4.0.0 + peerDependenciesMeta: + '@nuxt/kit': + optional: true dependencies: '@antfu/utils': 0.7.5 - '@rollup/pluginutils': 5.0.2(rollup@3.26.3) + '@rollup/pluginutils': 5.0.2(rollup@3.28.0) debug: 4.3.4 + error-stack-parser-es: 0.1.1 fs-extra: 11.1.1 open: 9.1.0 picocolors: 1.0.0 sirv: 2.0.3 - vite: 4.4.7(@types/node@18.16.19)(terser@5.19.2) + vite: 4.4.9(@types/node@18.16.19)(terser@5.19.2) transitivePeerDependencies: - rollup - supports-color @@ -20425,7 +20210,7 @@ packages: monaco-editor: 0.41.0 dev: true - /vite-plugin-pages@0.31.0(vite@4.4.7): + /vite-plugin-pages@0.31.0(vite@4.4.9): resolution: {integrity: sha512-fw3onBfVTXQI7rOzAbSZhmfwvk50+3qNnGZpERjmD93c8nEjrGLyd53eFXYMxcJV4KA1vzi4qIHt2+6tS4dEMw==} peerDependencies: '@vue/compiler-sfc': ^2.7.0 || ^3.0.0 @@ -20442,28 +20227,28 @@ packages: json5: 2.2.3 local-pkg: 0.4.3 picocolors: 1.0.0 - vite: 4.4.7(@types/node@18.16.19)(terser@5.19.2) + vite: 4.4.9(@types/node@18.16.19)(terser@5.19.2) yaml: 2.3.1 transitivePeerDependencies: - supports-color dev: true - /vite-plugin-svgr@3.2.0(rollup@3.26.3)(vite@4.4.8): + /vite-plugin-svgr@3.2.0(rollup@3.28.0)(vite@4.4.9): resolution: {integrity: sha512-Uvq6niTvhqJU6ga78qLKBFJSDvxWhOnyfQSoKpDPMAGxJPo5S3+9hyjExE5YDj6Lpa4uaLkGc1cBgxXov+LjSw==} peerDependencies: vite: ^2.6.0 || 3 || 4 dependencies: - '@rollup/pluginutils': 5.0.2(rollup@3.26.3) + '@rollup/pluginutils': 5.0.2(rollup@3.28.0) '@svgr/core': 7.0.0 '@svgr/plugin-jsx': 7.0.0 - vite: 4.4.8(@types/node@18.16.19)(terser@5.19.2) + vite: 4.4.9(@types/node@18.16.19)(terser@5.19.2) transitivePeerDependencies: - rollup - supports-color dev: true - /vite@4.4.7(@types/node@18.16.19)(terser@5.19.2): - resolution: {integrity: sha512-6pYf9QJ1mHylfVh39HpuSfMPojPSKVxZvnclX1K1FyZ1PXDOcLBibdq5t1qxJSnL63ca8Wf4zts6mD8u8oc9Fw==} + /vite@4.4.9(@types/node@18.16.19)(terser@5.19.2): + resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -20493,51 +20278,14 @@ packages: '@types/node': 18.16.19 esbuild: 0.18.11 postcss: 8.4.27 - rollup: 3.26.3 + rollup: 3.28.0 terser: 5.19.2 optionalDependencies: fsevents: 2.3.2 dev: true - /vite@4.4.8(@types/node@18.16.19)(terser@5.19.2): - resolution: {integrity: sha512-LONawOUUjxQridNWGQlNizfKH89qPigK36XhMI7COMGztz8KNY0JHim7/xDd71CZwGT4HtSRgI7Hy+RlhG0Gvg==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - lightningcss: ^1.21.0 - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - '@types/node': 18.16.19 - esbuild: 0.18.11 - postcss: 8.4.27 - rollup: 3.26.3 - terser: 5.19.2 - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /vitest@0.33.0(@vitest/ui@0.33.0)(jsdom@22.1.0)(terser@5.19.2): - resolution: {integrity: sha512-1CxaugJ50xskkQ0e969R/hW47za4YXDUfWJDxip1hwbnhUjYolpfUn2AMOulqG/Dtd9WYAtkHmM/m3yKVrEejQ==} + /vitest@0.34.1(@vitest/ui@0.34.1)(jsdom@22.1.0)(terser@5.19.2): + resolution: {integrity: sha512-G1PzuBEq9A75XSU88yO5G4vPT20UovbC/2osB2KEuV/FisSIIsw7m5y2xMdB7RsAGHAfg2lPmp2qKr3KWliVlQ==} engines: {node: '>=v14.18.0'} hasBin: true peerDependencies: @@ -20570,12 +20318,12 @@ packages: '@types/chai': 4.3.5 '@types/chai-subset': 1.3.3 '@types/node': 18.16.19 - '@vitest/expect': 0.33.0 - '@vitest/runner': 0.33.0 - '@vitest/snapshot': 0.33.0 - '@vitest/spy': 0.33.0 - '@vitest/ui': 0.33.0(vitest@0.33.0) - '@vitest/utils': 0.33.0 + '@vitest/expect': 0.34.1 + '@vitest/runner': 0.34.1 + '@vitest/snapshot': 0.34.1 + '@vitest/spy': 0.34.1 + '@vitest/ui': 0.34.1(vitest@0.34.1) + '@vitest/utils': 0.34.1 acorn: 8.9.0 acorn-walk: 8.2.0 cac: 6.7.14 @@ -20589,9 +20337,9 @@ packages: std-env: 3.3.3 strip-literal: 1.0.1 tinybench: 2.5.0 - tinypool: 0.6.0 - vite: 4.4.8(@types/node@18.16.19)(terser@5.19.2) - vite-node: 0.33.0(@types/node@18.16.19)(terser@5.19.2) + tinypool: 0.7.0 + vite: 4.4.9(@types/node@18.16.19)(terser@5.19.2) + vite-node: 0.34.1(@types/node@18.16.19)(terser@5.19.2) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -20608,17 +20356,17 @@ packages: engines: {node: '>=0.10.0'} dev: true - /vue-eslint-parser@9.3.0(eslint@8.45.0): - resolution: {integrity: sha512-48IxT9d0+wArT1+3wNIy0tascRoywqSUe2E1YalIC1L8jsUGe5aJQItWfRok7DVFGz3UYvzEI7n5wiTXsCMAcQ==} + /vue-eslint-parser@9.3.1(eslint@8.47.0): + resolution: {integrity: sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 - eslint: 8.45.0 - eslint-scope: 7.2.0 - eslint-visitor-keys: 3.4.1 - espree: 9.6.0 + eslint: 8.47.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 esquery: 1.5.0 lodash: 4.17.21 semver: 7.5.4 @@ -21318,7 +21066,7 @@ packages: resolution: {integrity: sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg==} engines: {node: ^14.17.0 || >=16.0.0} dependencies: - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 lodash: 4.17.21 yaml: 2.3.1 dev: true @@ -21388,7 +21136,7 @@ packages: resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} dev: false - /zustand@4.4.1(@types/react@18.2.18)(react@18.2.0): + /zustand@4.4.1(@types/react@18.2.20)(react@18.2.0): resolution: {integrity: sha512-QCPfstAS4EBiTQzlaGP1gmorkh/UL1Leaj2tdj+zZCZ/9bm0WS7sI2wnfD5lpOszFqWJ1DcPnGoY8RDL61uokw==} engines: {node: '>=12.7.0'} peerDependencies: @@ -21403,7 +21151,7 @@ packages: react: optional: true dependencies: - '@types/react': 18.2.18 + '@types/react': 18.2.20 react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) dev: true