diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 497046bde6b..ec7bf1d769a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -385,7 +385,7 @@ jobs: set -o pipefail cd dist - PACKAGES=("@winglang/sdk" "@winglang/compiler" "@wingconsole/design-system" "@wingconsole/ui" "@wingconsole/server" "@wingconsole/app" "winglang" "@winglang/platform-awscdk") + PACKAGES=("@winglang/sdk" "ts4w" "@winglang/compiler" "@wingconsole/design-system" "@wingconsole/ui" "@wingconsole/server" "@wingconsole/app" "winglang" "@winglang/platform-awscdk") for PACKAGE in "${PACKAGES[@]}"; do # Check if already published VERSION_FOUND=$(npm view "$PACKAGE@$PACKAGE_VERSION" version --verbose || true) diff --git a/apps/jsii-docgen/.projen/deps.json b/apps/jsii-docgen/.projen/deps.json index 79ac7266541..7144c1fa2dc 100644 --- a/apps/jsii-docgen/.projen/deps.json +++ b/apps/jsii-docgen/.projen/deps.json @@ -100,6 +100,11 @@ "name": "typescript", "type": "build" }, + { + "name": "@types/node", + "version": "^18.17.13", + "type": "devenv" + }, { "name": "@jsii/spec", "type": "runtime" diff --git a/apps/jsii-docgen/.projen/tasks.json b/apps/jsii-docgen/.projen/tasks.json index 7caa2c9e2ec..913858eb891 100644 --- a/apps/jsii-docgen/.projen/tasks.json +++ b/apps/jsii-docgen/.projen/tasks.json @@ -180,7 +180,7 @@ "exec": "pnpm i --no-frozen-lockfile" }, { - "exec": "pnpm update @types/fs-extra @types/jest @types/node @types/semver @types/yargs @typescript-eslint/eslint-plugin @typescript-eslint/parser constructs eslint-config-prettier eslint-import-resolver-node eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-prettier eslint jest jest-junit jsii npm-check-updates prettier projen ts-jest ts-node typescript @jsii/spec case fs-extra glob glob-promise jsii-reflect semver yargs" + "exec": "pnpm update @types/fs-extra @types/jest @types/node @types/semver @types/yargs @typescript-eslint/eslint-plugin @typescript-eslint/parser constructs eslint-config-prettier eslint-import-resolver-node eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-prettier eslint jest jest-junit jsii npm-check-updates prettier projen ts-jest ts-node typescript @types/node @jsii/spec case fs-extra glob glob-promise jsii-reflect semver yargs" }, { "exec": "pnpm exec projen" diff --git a/apps/jsii-docgen/.projenrc.ts b/apps/jsii-docgen/.projenrc.ts index 2ee950d10f4..2630b8dc8ae 100644 --- a/apps/jsii-docgen/.projenrc.ts +++ b/apps/jsii-docgen/.projenrc.ts @@ -1,4 +1,4 @@ -import { typescript, javascript } from "projen"; +import { typescript, javascript, DependencyType } from "projen"; const project = new typescript.TypeScriptProject({ name: "@winglang/jsii-docgen", @@ -19,7 +19,6 @@ const project = new typescript.TypeScriptProject({ "@types/fs-extra", "@types/semver", "@types/yargs@^16", - "@types/node", "constructs", ], deps: [ @@ -73,4 +72,6 @@ project.addFields({ project.package.file.addDeletionOverride("pnpm"); project.tryRemoveFile(".npmrc"); +project.deps.addDependency("@types/node@^18.17.13", DependencyType.DEVENV); + project.synth(); diff --git a/apps/jsii-docgen/package.json b/apps/jsii-docgen/package.json index 1cae345dfe9..5ca85b32b83 100644 --- a/apps/jsii-docgen/package.json +++ b/apps/jsii-docgen/package.json @@ -34,7 +34,7 @@ "devDependencies": { "@types/fs-extra": "^9.0.13", "@types/jest": "^27.5.2", - "@types/node": "^16", + "@types/node": "^18.17.13", "@types/semver": "^7.5.1", "@types/yargs": "^16", "@typescript-eslint/eslint-plugin": "^5", diff --git a/apps/jsii-docgen/test/docgen/view/_npm.test.ts b/apps/jsii-docgen/test/docgen/view/_npm.test.ts index 7860fc640a5..d6864dc19c9 100644 --- a/apps/jsii-docgen/test/docgen/view/_npm.test.ts +++ b/apps/jsii-docgen/test/docgen/view/_npm.test.ts @@ -184,6 +184,8 @@ class MockChildProcess extends EventEmitter implements ChildProcess { public unref(): never { throw new UnsupportedCallError(); } + + [Symbol.dispose](): void {} } export class UnsupportedCallError extends Error { diff --git a/apps/vscode-wing/.projen/deps.json b/apps/vscode-wing/.projen/deps.json index 432892546f0..ea6ce3a6477 100644 --- a/apps/vscode-wing/.projen/deps.json +++ b/apps/vscode-wing/.projen/deps.json @@ -125,6 +125,11 @@ { "name": "ws", "type": "build" + }, + { + "name": "@types/node", + "version": "^18.17.13", + "type": "devenv" } ], "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"." diff --git a/apps/vscode-wing/.projen/tasks.json b/apps/vscode-wing/.projen/tasks.json index 07e05df05de..c34f374279b 100644 --- a/apps/vscode-wing/.projen/tasks.json +++ b/apps/vscode-wing/.projen/tasks.json @@ -183,7 +183,7 @@ "exec": "pnpm i --no-frozen-lockfile" }, { - "exec": "pnpm update @trpc/client @types/node-fetch @types/node @types/vscode @types/which @types/ws @typescript-eslint/eslint-plugin @typescript-eslint/parser @vscode/vsce @wingconsole/app @wingconsole/server eslint-config-prettier eslint-import-resolver-node eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-prettier eslint node-fetch npm-check-updates open prettier projen ts-node tsup typescript vscode-languageclient which winglang ws" + "exec": "pnpm update @trpc/client @types/node-fetch @types/node @types/vscode @types/which @types/ws @typescript-eslint/eslint-plugin @typescript-eslint/parser @vscode/vsce @wingconsole/app @wingconsole/server eslint-config-prettier eslint-import-resolver-node eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-prettier eslint node-fetch npm-check-updates open prettier projen ts-node tsup typescript vscode-languageclient which winglang ws @types/node" }, { "exec": "pnpm exec projen" diff --git a/apps/vscode-wing/.projenrc.ts b/apps/vscode-wing/.projenrc.ts index 32cbf87b50b..2387cced007 100644 --- a/apps/vscode-wing/.projenrc.ts +++ b/apps/vscode-wing/.projenrc.ts @@ -1,4 +1,4 @@ -import { IgnoreFile } from "projen"; +import { IgnoreFile, DependencyType } from "projen"; import { NodePackageManager } from "projen/lib/javascript"; import { TypeScriptAppProject } from "projen/lib/typescript"; import { VSCodeExtensionContributions } from "./src/project/vscode_types"; @@ -61,7 +61,6 @@ const project = new TypeScriptAppProject({ "ws", "open", "node-fetch@^2.6.7", - "@types/node", "@types/which", "@vscode/vsce", "@types/node-fetch", @@ -251,4 +250,6 @@ project.tryRemoveFile(".npmrc"); project.addTask("dev").exec("node scripts/dev.mjs"); +project.deps.addDependency("@types/node@^18.17.13", DependencyType.DEVENV); + project.synth(); diff --git a/apps/vscode-wing/package.json b/apps/vscode-wing/package.json index 07fe5fe8c69..4bef40b102f 100644 --- a/apps/vscode-wing/package.json +++ b/apps/vscode-wing/package.json @@ -30,7 +30,7 @@ }, "devDependencies": { "@trpc/client": "^10.38.1", - "@types/node": "^16", + "@types/node": "^18.17.13", "@types/node-fetch": "^2.6.4", "@types/vscode": "^1.70.0", "@types/which": "^3.0.0", diff --git a/apps/wing-api-checker/.projen/deps.json b/apps/wing-api-checker/.projen/deps.json index 1adb2467a25..a7fb3fb3ac1 100644 --- a/apps/wing-api-checker/.projen/deps.json +++ b/apps/wing-api-checker/.projen/deps.json @@ -87,6 +87,11 @@ "name": "typescript", "type": "build" }, + { + "name": "@types/node", + "version": "^18.17.13", + "type": "devenv" + }, { "name": "chalk", "type": "runtime" diff --git a/apps/wing-api-checker/.projen/tasks.json b/apps/wing-api-checker/.projen/tasks.json index 05641fb5850..528839fabf4 100644 --- a/apps/wing-api-checker/.projen/tasks.json +++ b/apps/wing-api-checker/.projen/tasks.json @@ -237,7 +237,7 @@ "exec": "pnpm i --no-frozen-lockfile" }, { - "exec": "pnpm update @types/jest @types/node @types/yargs @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier eslint-import-resolver-node eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-prettier eslint jest jest-junit npm-check-updates prettier projen standard-version ts-jest ts-node typescript chalk chokidar glob-promise jsii-reflect yargs" + "exec": "pnpm update @types/jest @types/node @types/yargs @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier eslint-import-resolver-node eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-prettier eslint jest jest-junit npm-check-updates prettier projen standard-version ts-jest ts-node typescript @types/node chalk chokidar glob-promise jsii-reflect yargs" }, { "exec": "pnpm exec projen" diff --git a/apps/wing-api-checker/.projenrc.ts b/apps/wing-api-checker/.projenrc.ts index 3e0268cd960..8bc97146245 100644 --- a/apps/wing-api-checker/.projenrc.ts +++ b/apps/wing-api-checker/.projenrc.ts @@ -1,4 +1,4 @@ -import { javascript, typescript } from "projen"; +import { javascript, typescript, DependencyType } from "projen"; const project = new typescript.TypeScriptProject({ defaultReleaseBranch: "main", @@ -20,7 +20,7 @@ const project = new typescript.TypeScriptProject({ prettier: true, package: false, deps: ["chalk", "chokidar", "glob-promise", "jsii-reflect", "yargs"], - devDeps: ["@types/node@^18", "@types/yargs"], + devDeps: ["@types/yargs"], }); const bumpTask = project.tasks.tryFind("bump")!; @@ -37,4 +37,6 @@ project.addFields({ project.package.file.addDeletionOverride("pnpm"); project.tryRemoveFile(".npmrc"); +project.deps.addDependency("@types/node@^18.17.13", DependencyType.DEVENV); + project.synth(); diff --git a/apps/wing-api-checker/package.json b/apps/wing-api-checker/package.json index 86287db9682..12c371784e5 100644 --- a/apps/wing-api-checker/package.json +++ b/apps/wing-api-checker/package.json @@ -35,7 +35,7 @@ }, "devDependencies": { "@types/jest": "^29.5.4", - "@types/node": "^16", + "@types/node": "^18.17.13", "@types/yargs": "^16.0.5", "@typescript-eslint/eslint-plugin": "^5", "@typescript-eslint/parser": "^5", diff --git a/examples/ts-fixture/README.md b/examples/ts-fixture/README.md new file mode 100644 index 00000000000..2fc1e28b29f --- /dev/null +++ b/examples/ts-fixture/README.md @@ -0,0 +1 @@ +# TypeScript Wing Project \ No newline at end of file diff --git a/examples/ts-fixture/package.json b/examples/ts-fixture/package.json new file mode 100644 index 00000000000..3e822263749 --- /dev/null +++ b/examples/ts-fixture/package.json @@ -0,0 +1,16 @@ +{ + "name": "ts-fixture", + "version": "0.0.0", + "scripts": { + "compile": "wing compile ./src/main.ts", + "test": "wing test ./src/main.ts" + }, + "dependencies": { + "ts4w": "workspace:^", + "@winglang/sdk": "workspace:^", + "winglang": "workspace:^" + }, + "volta": { + "extends": "../../package.json" + } +} diff --git a/examples/ts-fixture/src/main.ts b/examples/ts-fixture/src/main.ts new file mode 100644 index 00000000000..d96497cea00 --- /dev/null +++ b/examples/ts-fixture/src/main.ts @@ -0,0 +1,6 @@ +import { main } from "ts4w"; +import { cloud } from "@winglang/sdk"; + +main((app) => { + new cloud.Bucket(app, "Bucket"); +}); diff --git a/examples/ts-fixture/turbo.json b/examples/ts-fixture/turbo.json new file mode 100644 index 00000000000..09431dae786 --- /dev/null +++ b/examples/ts-fixture/turbo.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://turborepo.org/schema.json", + "extends": ["//"], + "pipeline": { + "compile": { + "outputs": ["src/target/**"] + }, + "test": {} + } + } diff --git a/libs/ts4w/.gitignore b/libs/ts4w/.gitignore new file mode 100644 index 00000000000..77738287f0e --- /dev/null +++ b/libs/ts4w/.gitignore @@ -0,0 +1 @@ +dist/ \ No newline at end of file diff --git a/libs/ts4w/README.md b/libs/ts4w/README.md new file mode 100644 index 00000000000..9fd9442a267 --- /dev/null +++ b/libs/ts4w/README.md @@ -0,0 +1,17 @@ +# ts4w - Experimental TypeScript experience for Wing + +```ts +// main.ts +import { main } from "ts4w"; +import { cloud } from "@winglang/sdk"; + +main((app) => { + new cloud.Bucket(app, "Bucket"); +}) +``` + +```shell +wing compile main.ts +wing compile -t tf-aws main.ts +wing test main.ts +``` \ No newline at end of file diff --git a/libs/ts4w/package.json b/libs/ts4w/package.json new file mode 100644 index 00000000000..966e1890203 --- /dev/null +++ b/libs/ts4w/package.json @@ -0,0 +1,44 @@ +{ + "name": "ts4w", + "version": "0.0.0", + "author": { + "name": "Wing Cloud", + "email": "ping@wing.cloud", + "organization": true + }, + "repository": { + "type": "git", + "url": "https://github.com/winglang/wing.git", + "directory": "libs/ts4w" + }, + "description": "Experimental TypeScript experience for Wing", + "main": "dist/index.js", + "license": "MIT", + "scripts": { + "compile": "tsup", + "package": "bump-pack -b" + }, + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org", + "tag": "latest" + }, + "dependencies": { + "@winglang/sdk": "workspace:^", + "constructs": "~10.2.69" + }, + "peerDependencies": { + "typescript": "^5.3.3" + }, + "devDependencies": { + "@types/node": "^18.17.13", + "tsup": "^8.0.1", + "bump-pack": "workspace:^" + }, + "files": [ + "dist" + ], + "volta": { + "extends": "../../package.json" + } +} diff --git a/libs/ts4w/src/index.ts b/libs/ts4w/src/index.ts new file mode 100644 index 00000000000..e52bdd9749f --- /dev/null +++ b/libs/ts4w/src/index.ts @@ -0,0 +1,76 @@ +import { std, platform } from "@winglang/sdk"; +import { Construct } from "constructs"; + +export * as internal from "./internal"; + +/** + * Properties for a Wing app. + */ +export interface AppProps { + /** + * The name and id of the app. + * @default "main" + */ + name?: string; +} + +/** + * Create a Wing app. + * + * ```ts + * import { main } from "ts4w"; + * import { cloud } from "@winglang/sdk"; + * + * main(app => { + * new cloud.Bucket(app, "Bucket"); + * }); + * ``` + * + * @param fn Define your application using the provided root construct. + * Note that this function may be called multiple times when used with `wing test`. + */ +export function main(fn: (root: Construct) => void, props: AppProps = {}) { + // check if we have everything we need + const requiredEnvVars = [ + "WING_PLATFORMS", + "WING_SYNTH_DIR", + "WING_SOURCE_DIR", + "WING_IS_TEST", + ]; + for (const envVar of requiredEnvVars) { + if (process.env[envVar] === undefined) { + throw new Error(`\ +Missing environment variable: ${envVar} +This is a Wing app and must be run through the Wing CLI (npm install -f winglang).`); + } + } + + class $Root extends std.Resource { + constructor(scope: Construct, id: string) { + super(scope, id); + fn(this); + } + } + + const platformPaths = ((s) => (!s ? [] : s.split(";")))( + process.env.WING_PLATFORMS + ); + const outdir = process.env.WING_SYNTH_DIR; + const name = props.name ?? "main"; + const rootConstruct = $Root; + const isTestEnvironment = process.env.WING_IS_TEST === "true"; + const entrypointDir = process.env.WING_SOURCE_DIR!; + const rootId = process.env.WING_ROOT_ID; + + const $PlatformManager = new platform.PlatformManager({ platformPaths }); + const app = $PlatformManager.createApp({ + outdir, + name, + rootConstruct, + isTestEnvironment, + entrypointDir, + rootId, + }); + + app.synth(); +} diff --git a/libs/ts4w/src/internal.ts b/libs/ts4w/src/internal.ts new file mode 100644 index 00000000000..b87fff62e54 --- /dev/null +++ b/libs/ts4w/src/internal.ts @@ -0,0 +1,43 @@ +import { join } from "path"; + +export interface CompileOptions { + workDir: string; + entrypoint: string; +} + +export async function compile(options: CompileOptions) { + const ts = (await import("typescript")).default; + const outDir = join(options.workDir, "ts"); + + const program = ts.createProgram([options.entrypoint], { + target: ts.ScriptTarget.ES2022, + module: ts.ModuleKind.CommonJS, + moduleResolution: ts.ModuleResolutionKind.NodeJs, + alwaysStrict: true, + allowSyntheticDefaultImports: true, + esModuleInterop: true, + strict: true, + sourceMap: true, + outDir, + noEmitOnError: true, + listEmittedFiles: true, + }) + const results = program.emit(); + + for (const diagnostic of results.diagnostics) { + console.error(diagnostic.messageText); + } + if (results.emitSkipped) { + throw new Error("TS compilation failed"); + } + + // get the last .js file emitted, this should be the entrypoint + const emittedFiles = results.emittedFiles?.filter((f) => f.endsWith(".js")); + const emittedFile = emittedFiles?.[emittedFiles.length - 1]; + + if (!emittedFile) { + throw new Error(`TS compilation failed: Could not find emitted file in ${outDir}`); + } + + return emittedFile; +} \ No newline at end of file diff --git a/libs/ts4w/test/main.ts b/libs/ts4w/test/main.ts new file mode 100644 index 00000000000..ded9774cf03 --- /dev/null +++ b/libs/ts4w/test/main.ts @@ -0,0 +1,6 @@ +import { main } from "../src"; +import { cloud } from "@winglang/sdk" + +main((app) => { + new cloud.Bucket(app, "Bucket"); +}); diff --git a/libs/ts4w/tsconfig.json b/libs/ts4w/tsconfig.json new file mode 100644 index 00000000000..13b4b5837a9 --- /dev/null +++ b/libs/ts4w/tsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "strict": true, + "alwaysStrict": true, + "target": "ES2022", + "module": "CommonJS", + "moduleResolution": "Node", + "esModuleInterop": true, + } +} \ No newline at end of file diff --git a/libs/ts4w/tsup.config.ts b/libs/ts4w/tsup.config.ts new file mode 100644 index 00000000000..f7e7f33fe30 --- /dev/null +++ b/libs/ts4w/tsup.config.ts @@ -0,0 +1,11 @@ +import { defineConfig } from "tsup"; + +export default defineConfig({ + entry: ["src/index.ts", "src/internal.ts"], + format: "cjs", + target: "es2022", + dts: true, + clean: true, + sourcemap: true, + bundle: false, +}); diff --git a/libs/ts4w/turbo.json b/libs/ts4w/turbo.json new file mode 100644 index 00000000000..42b43cce8f0 --- /dev/null +++ b/libs/ts4w/turbo.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://turborepo.org/schema.json", + "extends": [ + "//" + ], + "pipeline": { + "compile": { + "outputs": [ + "dist/**" + ] + }, + "test": { + "dependsOn": ["compile"] + }, + "package": { + "dependsOn": ["compile"], + "outputs": ["../../dist/ts4w-*.tgz"] + } + } +} \ No newline at end of file diff --git a/libs/wingcompiler/package.json b/libs/wingcompiler/package.json index c3935a3d1ca..0a1bddadba6 100644 --- a/libs/wingcompiler/package.json +++ b/libs/wingcompiler/package.json @@ -25,6 +25,7 @@ }, "dependencies": { "@winglang/sdk": "workspace:^", + "ts4w": "workspace:^", "wasi-js": "^1.7.3" }, "bundledDependencies": [ diff --git a/libs/wingcompiler/src/compile.ts b/libs/wingcompiler/src/compile.ts index 1602d08ce26..2922bd36884 100644 --- a/libs/wingcompiler/src/compile.ts +++ b/libs/wingcompiler/src/compile.ts @@ -1,5 +1,3 @@ -import * as vm from "vm"; - import { promises as fs, lstatSync } from "fs"; import { basename, dirname, join, resolve } from "path"; import * as os from "os"; @@ -9,6 +7,8 @@ import { copyDir, normalPath } from "./util"; import { existsSync } from "fs"; import { BuiltinPlatform } from "./constants"; import { CompileError, PreflightError } from "./errors"; +import { Worker } from "worker_threads"; +import { readFile } from "fs/promises"; // increase the stack trace limit to 50, useful for debugging Rust panics // (not setting the limit too high in case of infinite recursion) @@ -112,7 +112,9 @@ function resolveSynthDir( * @returns the resolved model */ export function determineTargetFromPlatforms(platforms: string[]): string { - if (platforms.length === 0) { return ""; } + if (platforms.length === 0) { + return ""; + } // determine target based on first platform const platform = platforms[0]; @@ -136,100 +138,80 @@ export async function compile(entrypoint: string, options: CompileOptions): Prom const { log } = options; // create a unique temporary directory for the compilation const targetdir = options.targetDir ?? join(dirname(entrypoint), "target"); - const wingFile = resolve(entrypoint); - log?.("wing file: %s", wingFile); - const wingDir = resolve(dirname(wingFile)); + const entrypointFile = resolve(entrypoint); + log?.("wing file: %s", entrypointFile); + const wingDir = resolve(dirname(entrypointFile)); log?.("wing dir: %s", wingDir); const testing = options.testing ?? false; log?.("testing: %s", testing); const target = determineTargetFromPlatforms(options.platform); - const tmpSynthDir = resolveSynthDir(targetdir, wingFile, target, testing, true); + const tmpSynthDir = resolveSynthDir(targetdir, entrypointFile, target, testing, true); log?.("temp synth dir: %s", tmpSynthDir); - const synthDir = resolveSynthDir(targetdir, wingFile, target, testing); + const synthDir = resolveSynthDir(targetdir, entrypointFile, target, testing); log?.("synth dir: %s", synthDir); const workDir = resolve(tmpSynthDir, ".wing"); log?.("work dir: %s", workDir); - // TODO: couldn't be moved to the context's since used in utils.env(...) - // in the future we may look for a unified approach - process.env["WING_TARGET"] = target; - process.env["WING_VALUES"] = options.value?.length == 0 ? undefined : options.value; - process.env["WING_VALUES_FILE"] = options.values; - process.env["WING_IS_TEST"] = testing.toString(); - process.env["WING_PLATFORMS"] = resolvePlatformPaths(options.platform); + const nearestNodeModules = (dir: string): string => { + let nodeModules = join(dir, "node_modules"); + while (!existsSync(nodeModules)) { + nodeModules = dirname(dirname(nodeModules)); - const tempProcess: { env: Record } = { env: { ...process.env } }; + if (nodeModules === "/" || nodeModules.match(/^[A-Z]:\\/)) { + break; + } - tempProcess.env["WING_SOURCE_DIR"] = wingDir; - if (options.rootId) { - tempProcess.env["WING_ROOT_ID"] = options.rootId; - } - // from wingDir, find the nearest node_modules directory - let wingNodeModules = join(wingDir, "node_modules"); - while (!existsSync(wingNodeModules)) { - wingNodeModules = dirname(dirname(wingNodeModules)); - - if (wingNodeModules === "/" || wingNodeModules.match(/^[A-Z]:\\/)) { - break; + nodeModules = resolve(nodeModules, "node_modules"); } - wingNodeModules = resolve(wingNodeModules, "node_modules"); - } + return nodeModules; + }; - tempProcess.env["WING_SYNTH_DIR"] = tmpSynthDir; - tempProcess.env["WING_NODE_MODULES"] = wingNodeModules; + let wingNodeModules = nearestNodeModules(wingDir); await Promise.all([ fs.mkdir(workDir, { recursive: true }), fs.mkdir(tmpSynthDir, { recursive: true }), ]); - let env: Record = { - RUST_BACKTRACE: "full", - WING_SYNTH_DIR: normalPath(tmpSynthDir), - }; - if (options.color !== undefined) { - env.CLICOLOR = options.color ? "1" : "0"; - } - - const wingc = await wingCompiler.load({ - env, - imports: { - env: { - send_diagnostic, - }, - }, + let preflightEntrypoint = await compileForPreflight({ + entrypointFile, + workDir, + wingDir, + tmpSynthDir, + color: options.color, + log, }); - const errors: wingCompiler.WingDiagnostic[] = []; + if (isEntrypointFile(entrypoint)) { + let preflightEnv: Record = { + ...process.env, + WING_TARGET: target, + WING_PLATFORMS: resolvePlatformPaths(options.platform), + WING_SYNTH_DIR: tmpSynthDir, + WING_SOURCE_DIR: wingDir, + WING_IS_TEST: testing.toString(), + WING_VALUES: options.value?.length == 0 ? undefined : options.value, + WING_VALUES_FILE: options.values, + WING_NODE_MODULES: wingNodeModules, + }; + + if (options.rootId) { + preflightEnv.WING_ROOT_ID = options.rootId; + } - function send_diagnostic(data_ptr: number, data_len: number) { - const data_buf = Buffer.from( - (wingc.exports.memory as WebAssembly.Memory).buffer, - data_ptr, - data_len - ); - const data_str = new TextDecoder().decode(data_buf); - errors.push(JSON.parse(data_str)); - } + if (os.platform() === "win32") { + // In worker threads on Windows, environment variables are case-sensitive. + // Most people probably already assume this is the case everywhere, so + // it is sufficient for now to just to normalize common automatic env vars. - const arg = `${normalPath(wingFile)};${normalPath(workDir)};${normalPath(wingDir)}`; - log?.(`invoking %s with: "%s"`, WINGC_COMPILE, arg); - let compileSuccess: boolean; - try { - compileSuccess = wingCompiler.invoke(wingc, WINGC_COMPILE, arg) !== 0; - } catch (error) { - // This is a bug in the compiler, indicate a compilation failure. - // The bug details should be part of the diagnostics handling below. - compileSuccess = false; - } - if (!compileSuccess) { - // This is a bug in the user's code. Print the compiler diagnostics. - throw new CompileError(errors); - } + if ("Path" in preflightEnv) { + preflightEnv.PATH = preflightEnv.Path; + delete preflightEnv.Path; + } + } - if (isEntrypointFile(entrypoint)) { - await runPreflightCodeInVm(workDir, wingDir, tempProcess, log); + await runPreflightCodeInWorkerThread(preflightEntrypoint, preflightEnv); } if (os.platform() === "win32") { @@ -251,6 +233,7 @@ export async function compile(entrypoint: string, options: CompileOptions): Prom function isEntrypointFile(path: string) { return ( + path.endsWith(".ts") || path.endsWith(".main.w") || path.endsWith(".test.w") || path.endsWith("/main.w") || @@ -259,57 +242,117 @@ function isEntrypointFile(path: string) { ); } -async function runPreflightCodeInVm( - workDir: string, - wingDir: string, - tempProcess: { env: Record }, - log?: (...args: any[]) => void -): Promise { - const artifactPath = join(workDir, WINGC_PREFLIGHT); - log?.("reading artifact from %s", artifactPath); - const artifact = await fs.readFile(artifactPath, "utf-8"); - log?.("artifact: %s", artifact); - - // Try looking for dependencies not only in the current directory (wherever - // the wing CLI was installed to), but also in the source code directory. - // This is necessary because the Wing app may have installed dependencies in - // the project directory. - const requireResolve = (path: string) => - require.resolve(path, { paths: [__dirname, wingDir, workDir] }); - const preflightRequire = (path: string) => require(requireResolve(path)); - preflightRequire.resolve = requireResolve; - - // If you're wondering how the execution of the preflight works, despite it - // being in a different directory: it works because at the top of the file - // require.resolve is called to cache wingsdk in-memory. So by the time VM - // is starting up, the passed context already has wingsdk in it. - // "__dirname" is also synthetically changed so nested requires work. - const context = vm.createContext({ - require: preflightRequire, - process: tempProcess, - console, - __dirname: workDir, - __filename: artifactPath, - // since the SDK is loaded in the outer VM, we need these to be the same class instance, - // otherwise "instanceof" won't work between preflight code and the SDK. this is needed e.g. in - // `serializeImmutableData` which has special cases for serializing these types. - Map, - Set, - Array, - Promise, - Object, - RegExp, - String, - Date, - Function, - }); +async function compileForPreflight(props: { + entrypointFile: string; + workDir: string; + wingDir: string; + tmpSynthDir: string; + color?: boolean; + log?: (...args: any[]) => void; +}) { + if (props.entrypointFile.endsWith(".ts")) { + const ts4w = await import("ts4w") + .then((m) => m.internal) + .catch((err) => { + throw new Error(`\ +Failed to load "ts4w": ${err.message} + +To use Wing with TypeScript files, you must install "ts4w" as a dependency of your project. +npm i ts4w +`); + }); + + return await ts4w.compile({ + workDir: props.workDir, + entrypoint: props.entrypointFile, + }); + } else { + let env: Record = { + RUST_BACKTRACE: "full", + WING_SYNTH_DIR: normalPath(props.tmpSynthDir), + }; + if (props.color !== undefined) { + env.CLICOLOR = props.color ? "1" : "0"; + } + + const wingc = await wingCompiler.load({ + env, + imports: { + env: { + send_diagnostic, + }, + }, + }); + + const errors: wingCompiler.WingDiagnostic[] = []; + + function send_diagnostic(data_ptr: number, data_len: number) { + const data_buf = Buffer.from( + (wingc.exports.memory as WebAssembly.Memory).buffer, + data_ptr, + data_len + ); + const data_str = new TextDecoder().decode(data_buf); + errors.push(JSON.parse(data_str)); + } + const arg = `${normalPath(props.entrypointFile)};${normalPath(props.workDir)};${normalPath( + props.wingDir + )}`; + props.log?.(`invoking %s with: "%s"`, WINGC_COMPILE, arg); + let compileSuccess: boolean; + try { + compileSuccess = wingCompiler.invoke(wingc, WINGC_COMPILE, arg) !== 0; + } catch (error) { + // This is a bug in the compiler, indicate a compilation failure. + // The bug details should be part of the diagnostics handling below. + compileSuccess = false; + } + if (!compileSuccess) { + // This is a bug in the user's code. Print the compiler diagnostics. + throw new CompileError(errors); + } + + return join(props.workDir, WINGC_PREFLIGHT); + } +} + +async function runPreflightCodeInWorkerThread( + entrypoint: string, + env: Record +): Promise { try { - vm.runInContext(artifact, context, { - filename: artifactPath + // Create a shimmed entrypoint that ensures we always load the compiler's version of the SDK + const shim = `\ +var Module = require('module'); +var original_resolveFilename = Module._resolveFilename; +var WINGSDK_PATH = '${normalPath(require.resolve("@winglang/sdk"))}'; + +Module._resolveFilename = function () { + if(arguments[0] === '@winglang/sdk') return WINGSDK_PATH; + return original_resolveFilename.apply(this, arguments); +}; + +require('${normalPath(entrypoint)}'); +`; + + await new Promise((resolve, reject) => { + const worker = new Worker(shim, { + env, + eval: true, + }); + worker.on("error", reject); + worker.on("exit", (code) => { + if (code === 0) { + resolve(undefined); + } else { + reject(new Error(`Worker stopped with exit code ${code}`)); + } + }); }); } catch (error) { - throw new PreflightError(error as any, artifactPath, artifact); + const artifact = await readFile(entrypoint, "utf-8"); + throw new PreflightError(error as any, entrypoint, artifact); } } diff --git a/libs/wingii/src/fixtures/constructs/package.json b/libs/wingii/src/fixtures/constructs/package.json index 3afee36931f..55874ea6acb 100644 --- a/libs/wingii/src/fixtures/constructs/package.json +++ b/libs/wingii/src/fixtures/constructs/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "@types/jest": "^27", - "@types/node": "^14", + "@types/node": "^18.17.13", "@typescript-eslint/eslint-plugin": "^5", "@typescript-eslint/parser": "^5", "eslint": "^8", diff --git a/libs/wingsdk/.projen/deps.json b/libs/wingsdk/.projen/deps.json index a37df272ec1..8fd47203866 100644 --- a/libs/wingsdk/.projen/deps.json +++ b/libs/wingsdk/.projen/deps.json @@ -314,6 +314,11 @@ "name": "yaml", "type": "bundled" }, + { + "name": "@types/node", + "version": "^18.17.13", + "type": "devenv" + }, { "name": "constructs", "version": "~10.2.69", diff --git a/libs/wingsdk/.projen/tasks.json b/libs/wingsdk/.projen/tasks.json index 07e2b18f8df..fe678a1dbd0 100644 --- a/libs/wingsdk/.projen/tasks.json +++ b/libs/wingsdk/.projen/tasks.json @@ -648,7 +648,7 @@ "exec": "pnpm i --no-frozen-lockfile" }, { - "exec": "pnpm update @cdktf/provider-aws @types/aws-lambda @types/express @types/fs-extra @types/mime-types @types/node @types/uuid @typescript-eslint/eslint-plugin @typescript-eslint/parser @vitest/coverage-v8 @winglang/jsii-docgen aws-sdk-client-mock aws-sdk-client-mock-jest bump-pack cdktf-cli chalk constructs eslint-config-prettier eslint-import-resolver-node eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-prettier eslint-plugin-sort-exports eslint fs-extra jsii-diff jsii-pacmak jsii mock-gcs nanoid npm-check-updates prettier projen standard-version ts-node typescript vitest wing-api-checker @aws-sdk/client-cloudwatch-logs @aws-sdk/client-dynamodb @aws-sdk/client-elasticache @aws-sdk/client-lambda @aws-sdk/client-s3 @aws-sdk/client-secrets-manager @aws-sdk/client-sns @aws-sdk/client-sqs @aws-sdk/s3-request-presigner @aws-sdk/types @aws-sdk/util-dynamodb @azure/core-paging @azure/identity @azure/storage-blob @google-cloud/storage @smithy/util-stream @smithy/util-utf8 @types/aws-lambda cdktf cron-parser esbuild-wasm express google-auth-library ioredis jsonschema mime-types mime nanoid safe-stable-stringify stacktracey undici uuid yaml constructs constructs" + "exec": "pnpm update @cdktf/provider-aws @types/aws-lambda @types/express @types/fs-extra @types/mime-types @types/node @types/uuid @typescript-eslint/eslint-plugin @typescript-eslint/parser @vitest/coverage-v8 @winglang/jsii-docgen aws-sdk-client-mock aws-sdk-client-mock-jest bump-pack cdktf-cli chalk constructs eslint-config-prettier eslint-import-resolver-node eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-prettier eslint-plugin-sort-exports eslint fs-extra jsii-diff jsii-pacmak jsii mock-gcs nanoid npm-check-updates prettier projen standard-version ts-node typescript vitest wing-api-checker @aws-sdk/client-cloudwatch-logs @aws-sdk/client-dynamodb @aws-sdk/client-elasticache @aws-sdk/client-lambda @aws-sdk/client-s3 @aws-sdk/client-secrets-manager @aws-sdk/client-sns @aws-sdk/client-sqs @aws-sdk/s3-request-presigner @aws-sdk/types @aws-sdk/util-dynamodb @azure/core-paging @azure/identity @azure/storage-blob @google-cloud/storage @smithy/util-stream @smithy/util-utf8 @types/aws-lambda cdktf cron-parser esbuild-wasm express google-auth-library ioredis jsonschema mime-types mime nanoid safe-stable-stringify stacktracey undici uuid yaml @types/node constructs constructs" }, { "exec": "pnpm exec projen" diff --git a/libs/wingsdk/.projenrc.ts b/libs/wingsdk/.projenrc.ts index 4eb437cba6f..db383fc14d6 100644 --- a/libs/wingsdk/.projenrc.ts +++ b/libs/wingsdk/.projenrc.ts @@ -1,6 +1,6 @@ import { readdirSync } from "fs"; import { join } from "path"; -import { JsonFile, cdk, javascript } from "projen"; +import { JsonFile, cdk, javascript, DependencyType } from "projen"; import * as cloud from "./src"; const JSII_DEPS = ["constructs@~10.2.69"]; @@ -410,4 +410,6 @@ project.tryRemoveFile(".npmrc"); project.packageTask.reset("bump-pack -b"); +project.deps.addDependency("@types/node@^18.17.13", DependencyType.DEVENV); + project.synth(); diff --git a/libs/wingsdk/package.json b/libs/wingsdk/package.json index ff0e1fe636f..a00139b54e0 100644 --- a/libs/wingsdk/package.json +++ b/libs/wingsdk/package.json @@ -42,7 +42,7 @@ "@types/express": "^4.17.17", "@types/fs-extra": "^11.0.1", "@types/mime-types": "^2.1.2", - "@types/node": "^18", + "@types/node": "^18.17.13", "@types/uuid": "^9.0.3", "@typescript-eslint/eslint-plugin": "^5", "@typescript-eslint/parser": "^5", diff --git a/libs/wingsdk/src/core/errors.ts b/libs/wingsdk/src/core/errors.ts index fc9b3dbbd01..5b0de379735 100644 --- a/libs/wingsdk/src/core/errors.ts +++ b/libs/wingsdk/src/core/errors.ts @@ -1,4 +1,5 @@ export class NotImplementedError extends Error { + public name: string = "NotImplementedError"; constructor(message: string, issue?: string) { super( `${message}${ diff --git a/libs/wingsdk/src/platform/platform-manager.ts b/libs/wingsdk/src/platform/platform-manager.ts index ff87af7dc6a..77c119b7155 100644 --- a/libs/wingsdk/src/platform/platform-manager.ts +++ b/libs/wingsdk/src/platform/platform-manager.ts @@ -6,7 +6,6 @@ import { IPlatform } from "./platform"; import { App, AppProps, SynthHooks } from "../core"; interface PlatformManagerOptions { - readonly appProps: AppProps; /** * Either a builtin platform name or a path to a custom platform */ @@ -18,13 +17,10 @@ const BUILTIN_PLATFORMS = ["tf-aws", "tf-azure", "tf-gcp", "sim"]; /** @internal */ export class PlatformManager { private readonly platformPaths: string[]; - private readonly appProps: AppProps; private readonly platformInstances: IPlatform[] = []; constructor(options: PlatformManagerOptions) { - this.appProps = options.appProps; this.platformPaths = options.platformPaths ?? []; - this.appProps; } private loadPlatformPath(platformPath: string) { @@ -66,9 +62,8 @@ export class PlatformManager { } // This method is called from preflight.js in order to return an App instance - // that can be synthesized, so need to ignore the "declared but never read" - // @ts-ignore-next-line - private createApp(appProps: AppProps): App { + // that can be synthesized + public createApp(appProps: AppProps): App { this.createPlatformInstances(); let appCall = this.platformInstances[0].newApp; diff --git a/libs/wingsdk/src/util/enhanced-error.ts b/libs/wingsdk/src/util/enhanced-error.ts index 3f63f59e9eb..e978490685a 100644 --- a/libs/wingsdk/src/util/enhanced-error.ts +++ b/libs/wingsdk/src/util/enhanced-error.ts @@ -171,6 +171,7 @@ function printItem(item: StackTracey.Entry) { // These are typically useless // TODO These can possibly be removed when sourcemaps support "names" mappings if ( + item.calleeShort === "$Root" || item.calleeShort === "new $Root" || item.calleeShort.includes("") ) { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 041ed7ed708..34bf30d118c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: "6.0" +lockfileVersion: '6.0' settings: autoInstallPeers: true @@ -22,6 +22,7 @@ patchedDependencies: path: patches/wasi-js@1.7.3.patch importers: + .: devDependencies: bump-pack: @@ -36,7 +37,7 @@ importers: apps/jsii-docgen: dependencies: - "@jsii/spec": + '@jsii/spec': specifier: ^1.88.0 version: 1.90.0 case: @@ -61,25 +62,25 @@ importers: specifier: ^16 version: 16.2.0 devDependencies: - "@types/fs-extra": + '@types/fs-extra': specifier: ^9.0.13 version: 9.0.13 - "@types/jest": + '@types/jest': specifier: ^27.5.2 version: 27.5.2 - "@types/node": - specifier: ^16 - version: 16.18.58 - "@types/semver": + '@types/node': + specifier: ^18.17.13 + version: 18.18.4 + '@types/semver': specifier: ^7.5.1 version: 7.5.3 - "@types/yargs": + '@types/yargs': specifier: ^16 version: 16.0.6 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^5 version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.51.0)(typescript@4.9.5) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^5 version: 5.62.0(eslint@8.51.0)(typescript@4.9.5) constructs: @@ -126,39 +127,39 @@ importers: version: 27.1.5(@babel/core@7.23.3)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@16.18.58)(typescript@4.9.5) + version: 10.9.1(@types/node@18.18.4)(typescript@4.9.5) typescript: specifier: ~4.9.5 version: 4.9.5 apps/jsii-docgen/test/__fixtures__/libraries/construct-library: dependencies: - "@aws-cdk/aws-events": + '@aws-cdk/aws-events': specifier: ^1.204.0 version: 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@3.4.344) - "@aws-cdk/aws-iam": + '@aws-cdk/aws-iam': specifier: ^1.204.0 version: 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) - "@aws-cdk/aws-kms": + '@aws-cdk/aws-kms': specifier: ^1.204.0 version: 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@3.4.344) - "@aws-cdk/aws-s3": + '@aws-cdk/aws-s3': specifier: ^1.204.0 version: 1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@3.4.344) - "@aws-cdk/cloud-assembly-schema": + '@aws-cdk/cloud-assembly-schema': specifier: ^1.204.0 version: 1.204.0 - "@aws-cdk/core": + '@aws-cdk/core': specifier: ^1.204.0 version: 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) constructs: specifier: ^3.4.344 version: 3.4.344 devDependencies: - "@types/node": + '@types/node': specifier: ^18.17.13 version: 18.18.4 - "@types/prettier": + '@types/prettier': specifier: 2.6.0 version: 2.6.0 jsii: @@ -170,37 +171,37 @@ importers: apps/vscode-wing: devDependencies: - "@trpc/client": + '@trpc/client': specifier: ^10.38.1 version: 10.40.0(@trpc/server@10.40.0) - "@types/node": - specifier: ^16 - version: 16.18.58 - "@types/node-fetch": + '@types/node': + specifier: ^18.17.13 + version: 18.18.4 + '@types/node-fetch': specifier: ^2.6.4 version: 2.6.6 - "@types/vscode": + '@types/vscode': specifier: ^1.70.0 version: 1.83.0 - "@types/which": + '@types/which': specifier: ^3.0.0 version: 3.0.0 - "@types/ws": + '@types/ws': specifier: ^8.5.5 version: 8.5.6 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^5 version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.51.0)(typescript@4.9.5) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^5 version: 5.62.0(eslint@8.51.0)(typescript@4.9.5) - "@vscode/vsce": + '@vscode/vsce': specifier: ^2.21.0 version: 2.21.1 - "@wingconsole/app": + '@wingconsole/app': specifier: workspace:^ version: link:../wing-console/console/app - "@wingconsole/server": + '@wingconsole/server': specifier: workspace:^ version: link:../wing-console/console/server eslint: @@ -238,7 +239,7 @@ importers: version: 0.71.163 ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@16.18.58)(typescript@4.9.5) + version: 10.9.1(@types/node@18.18.4)(typescript@4.9.5) tsup: specifier: ^6.7.0 version: 6.7.0(ts-node@10.9.1)(typescript@4.9.5) @@ -260,22 +261,22 @@ importers: apps/wing: dependencies: - "@npmcli/arborist": + '@npmcli/arborist': specifier: ^7.2.0 version: 7.2.0 - "@segment/analytics-node": + '@segment/analytics-node': specifier: ^1.1.0 version: 1.1.1 - "@wingconsole/app": + '@wingconsole/app': specifier: workspace:^ version: link:../wing-console/console/app - "@wingconsole/server": + '@wingconsole/server': specifier: workspace:^ version: link:../wing-console/console/server - "@winglang/compiler": + '@winglang/compiler': specifier: workspace:^ version: link:../../libs/wingcompiler - "@winglang/sdk": + '@winglang/sdk': specifier: workspace:^ version: link:../../libs/wingsdk chalk: @@ -327,34 +328,34 @@ importers: specifier: ^8.1.0 version: 8.1.0 devDependencies: - "@types/debug": + '@types/debug': specifier: ^4.1.8 version: 4.1.9 - "@types/node": + '@types/node': specifier: ^18.17.13 version: 18.18.4 - "@types/node-persist": + '@types/node-persist': specifier: ^3.1.4 version: 3.1.4 - "@types/npm-packlist": + '@types/npm-packlist': specifier: ^7.0.1 version: 7.0.1 - "@types/npmcli__arborist": + '@types/npmcli__arborist': specifier: ^5.6.2 version: 5.6.2 - "@types/semver-utils": + '@types/semver-utils': specifier: ^1.1.1 version: 1.1.1 - "@types/tar": + '@types/tar': specifier: ^6.1.6 version: 6.1.6 - "@types/uuid": + '@types/uuid': specifier: ^8.3.4 version: 8.3.4 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^6.7.4 version: 6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.51.0)(typescript@4.9.5) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^6.7.4 version: 6.7.4(eslint@8.51.0)(typescript@4.9.5) bump-pack: @@ -406,19 +407,19 @@ importers: specifier: ^17.7.2 version: 17.7.2 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.4 version: 29.5.5 - "@types/node": - specifier: ^16 - version: 16.18.58 - "@types/yargs": + '@types/node': + specifier: ^18.17.13 + version: 18.18.4 + '@types/yargs': specifier: ^16.0.5 version: 16.0.6 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^5 version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.51.0)(typescript@4.9.5) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^5 version: 5.62.0(eslint@8.51.0)(typescript@4.9.5) eslint: @@ -441,7 +442,7 @@ importers: version: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.51.0)(prettier@2.8.8) jest: specifier: ^29.6.4 - version: 29.7.0(@types/node@16.18.58)(ts-node@10.9.1) + version: 29.7.0(@types/node@18.18.4)(ts-node@10.9.1) jest-junit: specifier: ^15 version: 15.0.0 @@ -462,17 +463,17 @@ importers: version: 29.1.1(@babel/core@7.23.3)(jest@29.7.0)(typescript@4.9.5) ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@16.18.58)(typescript@4.9.5) + version: 10.9.1(@types/node@18.18.4)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 apps/wing-console/console/app: dependencies: - "@segment/analytics-node": + '@segment/analytics-node': specifier: ^1.1.0 version: 1.1.1 - "@wingconsole/server": + '@wingconsole/server': specifier: workspace:^ version: link:../server cross-spawn: @@ -485,37 +486,37 @@ importers: specifier: ^1.0.0 version: 1.0.0 devDependencies: - "@ibm/plex": + '@ibm/plex': specifier: ^6.3.0 version: 6.3.0 - "@playwright/test": + '@playwright/test': specifier: ^1.37.1 version: 1.38.1 - "@tailwindcss/forms": + '@tailwindcss/forms': specifier: ^0.5.3 version: 0.5.6(tailwindcss@3.3.3) - "@types/express": + '@types/express': specifier: ^4.17.17 version: 4.17.18 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.25 - "@types/react-dom": + '@types/react-dom': specifier: ^18.2.7 version: 18.2.11 - "@vitejs/plugin-react": + '@vitejs/plugin-react': specifier: ^4.0.4 version: 4.1.0(vite@4.4.11) - "@vitest/coverage-c8": + '@vitest/coverage-c8': specifier: ^0.31.4 version: 0.31.4(vitest@0.34.6) - "@wingconsole/eslint-plugin": + '@wingconsole/eslint-plugin': specifier: workspace:^ version: link:../../tools/eslint-plugin - "@wingconsole/tsconfig": + '@wingconsole/tsconfig': specifier: workspace:^ version: link:../../tools/tsconfig - "@wingconsole/ui": + '@wingconsole/ui': specifier: workspace:^ version: link:../ui autoprefixer: @@ -560,16 +561,16 @@ importers: apps/wing-console/console/design-system: dependencies: - "@headlessui/react": + '@headlessui/react': specifier: ^1.7.17 version: 1.7.17(react-dom@18.2.0)(react@18.2.0) - "@heroicons/react": + '@heroicons/react': specifier: ^2.0.18 version: 2.0.18(react@18.2.0) - "@popperjs/core": + '@popperjs/core': specifier: ^2.11.8 version: 2.11.8 - "@tailwindcss/forms": + '@tailwindcss/forms': specifier: ^0.5.3 version: 0.5.6(tailwindcss@3.3.3) classnames: @@ -594,34 +595,34 @@ importers: specifier: ^3.3.3 version: 3.3.3 devDependencies: - "@babel/core": + '@babel/core': specifier: ^7.22.11 version: 7.23.0 - "@storybook/react": + '@storybook/react': specifier: ^7.4.0 version: 7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) - "@testing-library/react": + '@testing-library/react': specifier: ^14.0.0 version: 14.0.0(react-dom@18.2.0)(react@18.2.0) - "@types/lodash.uniq": + '@types/lodash.uniq': specifier: ^4.5.7 version: 4.5.7 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.25 - "@types/react-dom": + '@types/react-dom': specifier: ^18.2.7 version: 18.2.11 - "@vitejs/plugin-react": + '@vitejs/plugin-react': specifier: ^4.0.4 version: 4.1.0(vite@4.4.11) - "@vitest/coverage-c8": + '@vitest/coverage-c8': specifier: ^0.31.4 version: 0.31.4(vitest@0.31.4) - "@wingconsole/eslint-plugin": + '@wingconsole/eslint-plugin': specifier: workspace:^ version: link:../../tools/eslint-plugin - "@wingconsole/tsconfig": + '@wingconsole/tsconfig': specifier: workspace:^ version: link:../../tools/tsconfig bump-pack: @@ -651,10 +652,10 @@ importers: apps/wing-console/console/server: dependencies: - "@winglang/compiler": + '@winglang/compiler': specifier: workspace:^ version: link:../../../../libs/wingcompiler - "@winglang/sdk": + '@winglang/sdk': specifier: workspace:^ version: link:../../../../libs/wingsdk codespan-wasm: @@ -670,31 +671,31 @@ importers: specifier: ^2.1.3 version: 2.1.3 devDependencies: - "@trpc/server": + '@trpc/server': specifier: ^10.38.1 version: 10.40.0 - "@types/cors": + '@types/cors': specifier: ^2.8.13 version: 2.8.14 - "@types/express": + '@types/express': specifier: ^4.17.17 version: 4.17.18 - "@types/lodash.uniqby": + '@types/lodash.uniqby': specifier: ^4.7.7 version: 4.7.7 - "@types/ws": + '@types/ws': specifier: ^8.5.5 version: 8.5.6 - "@vitest/coverage-c8": + '@vitest/coverage-c8': specifier: ^0.31.4 version: 0.31.4(vitest@0.31.4) - "@wingconsole/error-message": + '@wingconsole/error-message': specifier: workspace:^ version: link:../../packages/error-message - "@wingconsole/eslint-plugin": + '@wingconsole/eslint-plugin': specifier: workspace:^ version: link:../../tools/eslint-plugin - "@wingconsole/tsconfig": + '@wingconsole/tsconfig': specifier: workspace:^ version: link:../../tools/tsconfig bump-pack: @@ -757,28 +758,28 @@ importers: apps/wing-console/console/ui: dependencies: - "@headlessui/react": + '@headlessui/react': specifier: ^1.7.17 version: 1.7.17(react-dom@18.2.0)(react@18.2.0) - "@heroicons/react": + '@heroicons/react': specifier: ^2.0.18 version: 2.0.18(react@18.2.0) - "@popperjs/core": + '@popperjs/core': specifier: ^2.11.8 version: 2.11.8 - "@tanstack/react-query": + '@tanstack/react-query': specifier: ^4.33.0 version: 4.36.1(react-dom@18.2.0)(react@18.2.0) - "@trpc/client": + '@trpc/client': specifier: ^10.38.1 version: 10.40.0(@trpc/server@10.40.0) - "@trpc/react-query": + '@trpc/react-query': specifier: ^10.38.1 version: 10.40.0(@tanstack/react-query@4.36.1)(@trpc/client@10.40.0)(@trpc/server@10.40.0)(react-dom@18.2.0)(react@18.2.0) - "@trpc/server": + '@trpc/server': specifier: ^10.38.1 version: 10.40.0 - "@wingconsole/design-system": + '@wingconsole/design-system': specifier: workspace:^ version: link:../design-system classnames: @@ -824,67 +825,67 @@ importers: specifier: ^3.22.2 version: 3.22.4 devDependencies: - "@babel/core": + '@babel/core': specifier: ^7.22.11 version: 7.23.0 - "@storybook/addon-essentials": + '@storybook/addon-essentials': specifier: ^7.4.0 version: 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-interactions": + '@storybook/addon-interactions': specifier: ^7.4.0 version: 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-links": + '@storybook/addon-links': specifier: ^7.4.0 version: 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/blocks": + '@storybook/blocks': specifier: ^7.4.0 version: 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/react": + '@storybook/react': specifier: ^7.4.0 version: 7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) - "@storybook/react-vite": + '@storybook/react-vite': specifier: ^7.4.0 version: 7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.4.11) - "@storybook/testing-library": + '@storybook/testing-library': specifier: ^0.1.0 version: 0.1.0 - "@types/cors": + '@types/cors': specifier: ^2.8.13 version: 2.8.14 - "@types/d3-selection": + '@types/d3-selection': specifier: ^3.0.6 version: 3.0.7 - "@types/d3-zoom": + '@types/d3-zoom': specifier: ^3.0.4 version: 3.0.5 - "@types/lodash.debounce": + '@types/lodash.debounce': specifier: ^4.0.7 version: 4.0.7 - "@types/lodash.throttle": + '@types/lodash.throttle': specifier: ^4.1.7 version: 4.1.7 - "@types/lodash.uniqby": + '@types/lodash.uniqby': specifier: ^4.7.7 version: 4.7.7 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.25 - "@vitejs/plugin-react-swc": + '@vitejs/plugin-react-swc': specifier: ^3.3.2 version: 3.4.0(vite@4.4.11) - "@wingconsole/eslint-plugin": + '@wingconsole/eslint-plugin': specifier: workspace:^ version: link:../../tools/eslint-plugin - "@wingconsole/server": + '@wingconsole/server': specifier: workspace:^ version: link:../server - "@wingconsole/tsconfig": + '@wingconsole/tsconfig': specifier: workspace:^ version: link:../../tools/tsconfig - "@wingconsole/use-loading": + '@wingconsole/use-loading': specifier: workspace:^ version: link:../../packages/use-loading - "@wingconsole/use-persistent-state": + '@wingconsole/use-persistent-state': specifier: workspace:^ version: link:../../packages/use-persistent-state autoprefixer: @@ -923,10 +924,10 @@ importers: apps/wing-console/packages/error-message: devDependencies: - "@wingconsole/eslint-plugin": + '@wingconsole/eslint-plugin': specifier: workspace:^ version: link:../../tools/eslint-plugin - "@wingconsole/tsconfig": + '@wingconsole/tsconfig': specifier: workspace:^ version: link:../../tools/tsconfig typescript: @@ -935,13 +936,13 @@ importers: apps/wing-console/packages/use-loading: devDependencies: - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.25 - "@wingconsole/eslint-plugin": + '@wingconsole/eslint-plugin': specifier: workspace:^ version: link:../../tools/eslint-plugin - "@wingconsole/tsconfig": + '@wingconsole/tsconfig': specifier: workspace:^ version: link:../../tools/tsconfig typescript: @@ -950,13 +951,13 @@ importers: apps/wing-console/packages/use-persistent-state: devDependencies: - "@types/react": + '@types/react': specifier: ^18.2.12 version: 18.2.25 - "@wingconsole/eslint-plugin": + '@wingconsole/eslint-plugin': specifier: workspace:^ version: link:../../tools/eslint-plugin - "@wingconsole/tsconfig": + '@wingconsole/tsconfig': specifier: workspace:^ version: link:../../tools/tsconfig typescript: @@ -965,13 +966,13 @@ importers: apps/wing-console/tools/eslint-plugin: dependencies: - "@cloudy-ts/eslint-plugin": + '@cloudy-ts/eslint-plugin': specifier: ^0.0.260 version: 0.0.260(eslint@8.51.0) - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^5.62.0 version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.51.0)(typescript@5.2.2) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^5.62.0 version: 5.62.0(eslint@8.51.0)(typescript@5.2.2) eslint-config-prettier: @@ -1057,22 +1058,22 @@ importers: examples/tests/valid: dependencies: - "@aws-cdk/asset-awscli-v1": + '@aws-cdk/asset-awscli-v1': specifier: ^2.2.200 version: 2.2.200 - "@aws-cdk/asset-kubectl-v20": + '@aws-cdk/asset-kubectl-v20': specifier: ^2.1.2 version: 2.1.2 - "@aws-cdk/asset-node-proxy-agent-v6": + '@aws-cdk/asset-node-proxy-agent-v6': specifier: ^2.0.1 version: 2.0.1 - "@aws-sdk/client-dynamodb": + '@aws-sdk/client-dynamodb': specifier: ^3.405.0 version: 3.405.0 - "@cdktf/provider-aws": + '@cdktf/provider-aws': specifier: ^15.0.0 version: 15.0.0(cdktf@0.17.0)(constructs@10.2.70) - "@winglibs/testfixture": + '@winglibs/testfixture': specifier: workspace:^ version: link:../../wing-fixture aws-cdk-lib: @@ -1103,11 +1104,23 @@ importers: specifier: ^9.0.0 version: 9.0.1 + examples/ts-fixture: + dependencies: + '@winglang/sdk': + specifier: workspace:^ + version: link:../../libs/wingsdk + ts4w: + specifier: workspace:^ + version: link:../../libs/ts4w + winglang: + specifier: workspace:^ + version: link:../../apps/wing + examples/wing-fixture: {} libs/awscdk: dependencies: - "@winglang/sdk": + '@winglang/sdk': specifier: workspace:^ version: link:../wingsdk aws-cdk-lib: @@ -1146,31 +1159,56 @@ importers: specifier: 0.20.6 version: 0.20.6 + libs/ts4w: + dependencies: + '@winglang/sdk': + specifier: workspace:^ + version: link:../wingsdk + constructs: + specifier: ~10.2.69 + version: 10.2.70 + typescript: + specifier: ^5.3.3 + version: 5.3.3 + devDependencies: + '@types/node': + specifier: ^18.17.13 + version: 18.18.4 + bump-pack: + specifier: workspace:^ + version: link:../../tools/bump-pack + tsup: + specifier: ^8.0.1 + version: 8.0.1(typescript@5.3.3) + libs/wingc: devDependencies: - "@winglang/sdk": + '@winglang/sdk': specifier: workspace:^ version: link:../wingsdk - "@winglang/tree-sitter-wing": + '@winglang/tree-sitter-wing': specifier: workspace:^ version: link:../tree-sitter-wing - "@winglang/wingii": + '@winglang/wingii': specifier: workspace:^ version: link:../wingii libs/wingcompiler: dependencies: - "@winglang/sdk": + '@winglang/sdk': specifier: workspace:^ version: link:../wingsdk + ts4w: + specifier: workspace:^ + version: link:../ts4w wasi-js: specifier: ^1.7.3 version: 1.7.3(patch_hash=rmwvp46j2ligfusbdx5dzh4a3q) devDependencies: - "@types/node": + '@types/node': specifier: ^18.17.13 version: 18.18.4 - "@winglang/wingc": + '@winglang/wingc': specifier: workspace:^ version: link:../wingc bump-pack: @@ -1190,58 +1228,58 @@ importers: libs/wingsdk: dependencies: - "@aws-sdk/client-cloudwatch-logs": + '@aws-sdk/client-cloudwatch-logs': specifier: 3.449.0 version: 3.449.0 - "@aws-sdk/client-dynamodb": + '@aws-sdk/client-dynamodb': specifier: 3.449.0 version: 3.449.0 - "@aws-sdk/client-elasticache": + '@aws-sdk/client-elasticache': specifier: 3.449.0 version: 3.449.0 - "@aws-sdk/client-lambda": + '@aws-sdk/client-lambda': specifier: 3.449.0 version: 3.449.0 - "@aws-sdk/client-s3": + '@aws-sdk/client-s3': specifier: 3.449.0 version: 3.449.0 - "@aws-sdk/client-secrets-manager": + '@aws-sdk/client-secrets-manager': specifier: 3.449.0 version: 3.449.0 - "@aws-sdk/client-sns": + '@aws-sdk/client-sns': specifier: 3.449.0 version: 3.449.0 - "@aws-sdk/client-sqs": + '@aws-sdk/client-sqs': specifier: 3.449.0 version: 3.449.0 - "@aws-sdk/s3-request-presigner": + '@aws-sdk/s3-request-presigner': specifier: 3.449.0 version: 3.449.0 - "@aws-sdk/types": + '@aws-sdk/types': specifier: 3.449.0 version: 3.449.0 - "@aws-sdk/util-dynamodb": + '@aws-sdk/util-dynamodb': specifier: 3.449.0 version: 3.449.0(@aws-sdk/client-dynamodb@3.449.0) - "@azure/core-paging": + '@azure/core-paging': specifier: ^1.5.0 version: 1.5.0 - "@azure/identity": + '@azure/identity': specifier: 3.1.3 version: 3.1.3 - "@azure/storage-blob": + '@azure/storage-blob': specifier: 12.14.0 version: 12.14.0 - "@google-cloud/storage": + '@google-cloud/storage': specifier: 6.9.5 version: 6.9.5 - "@smithy/util-stream": + '@smithy/util-stream': specifier: 2.0.17 version: 2.0.17 - "@smithy/util-utf8": + '@smithy/util-utf8': specifier: 2.0.0 version: 2.0.0 - "@types/aws-lambda": + '@types/aws-lambda': specifier: ^8.10.119 version: 8.10.124 cdktf: @@ -1293,34 +1331,34 @@ importers: specifier: ^2.3.2 version: 2.3.2 devDependencies: - "@cdktf/provider-aws": + '@cdktf/provider-aws': specifier: ^15.0.0 version: 15.0.0(cdktf@0.17.0)(constructs@10.2.70) - "@types/express": + '@types/express': specifier: ^4.17.17 version: 4.17.18 - "@types/fs-extra": + '@types/fs-extra': specifier: ^11.0.1 version: 11.0.2 - "@types/mime-types": + '@types/mime-types': specifier: ^2.1.2 version: 2.1.2 - "@types/node": - specifier: ^18 + '@types/node': + specifier: ^18.17.13 version: 18.18.4 - "@types/uuid": + '@types/uuid': specifier: ^9.0.3 version: 9.0.5 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^5 version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.51.0)(typescript@4.9.5) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^5 version: 5.62.0(eslint@8.51.0)(typescript@4.9.5) - "@vitest/coverage-v8": + '@vitest/coverage-v8': specifier: ^0.32.4 version: 0.32.4(vitest@0.32.4) - "@winglang/jsii-docgen": + '@winglang/jsii-docgen': specifier: workspace:^ version: link:../../apps/jsii-docgen aws-sdk-client-mock: @@ -1401,16 +1439,16 @@ importers: tools/bump-pack: dependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.0 version: 1.10.1 - "@pnpm/find-workspace-dir": + '@pnpm/find-workspace-dir': specifier: ^6.0.2 version: 6.0.2 - "@pnpm/reviewing.dependencies-hierarchy": + '@pnpm/reviewing.dependencies-hierarchy': specifier: ^2.0.10 version: 2.1.1(@pnpm/logger@5.0.0) - "@pnpm/workspace.find-packages": + '@pnpm/workspace.find-packages': specifier: ^1.0.5 version: 1.0.13(@pnpm/logger@5.0.0) changelogen: @@ -1432,13 +1470,13 @@ importers: specifier: ^3.12.8 version: 3.13.0 devDependencies: - "@types/fs-extra": + '@types/fs-extra': specifier: ^11.0.1 version: 11.0.2 - "@types/node": + '@types/node': specifier: ^18.17.13 version: 18.18.4 - "@types/semver": + '@types/semver': specifier: ^7.5.1 version: 7.5.3 typescript: @@ -1447,10 +1485,10 @@ importers: tools/generate-workspace: dependencies: - "@pnpm/find-workspace-dir": + '@pnpm/find-workspace-dir': specifier: ^6.0.2 version: 6.0.2 - "@pnpm/workspace.find-packages": + '@pnpm/workspace.find-packages': specifier: ^1.0.1 version: 1.0.13(@pnpm/logger@5.0.0) npm-which: @@ -1460,13 +1498,13 @@ importers: specifier: ^3.12.7 version: 3.13.0 devDependencies: - "@types/fs-extra": + '@types/fs-extra': specifier: ^11 version: 11.0.2 - "@types/node": - specifier: ^18.16.18 + '@types/node': + specifier: ^18.17.13 version: 18.18.4 - "@types/semver": + '@types/semver': specifier: ^7.5.0 version: 7.5.3 typescript: @@ -1475,25 +1513,25 @@ importers: tools/hangar: devDependencies: - "@wingconsole/app": + '@wingconsole/app': specifier: workspace:^ version: link:../../apps/wing-console/console/app - "@wingconsole/design-system": + '@wingconsole/design-system': specifier: workspace:^ version: link:../../apps/wing-console/console/design-system - "@wingconsole/server": + '@wingconsole/server': specifier: workspace:^ version: link:../../apps/wing-console/console/server - "@wingconsole/ui": + '@wingconsole/ui': specifier: workspace:^ version: link:../../apps/wing-console/console/ui - "@winglang/compiler": + '@winglang/compiler': specifier: workspace:^ version: link:../../libs/wingcompiler - "@winglang/platform-awscdk": + '@winglang/platform-awscdk': specifier: workspace:^ version: link:../../libs/awscdk - "@winglang/sdk": + '@winglang/sdk': specifier: workspace:^ version: link:../../libs/wingsdk cdktf: @@ -1511,6 +1549,9 @@ importers: octokit: specifier: ^3.1.0 version: 3.1.1 + ts4w: + specifier: workspace:^ + version: link:../../libs/ts4w tsx: specifier: ^3.12.8 version: 3.13.0 @@ -1525,14 +1566,15 @@ importers: version: 2.3.2 packages: + /@aashutoshrathi/word-wrap@1.2.6: resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /@actions/core@1.10.1: resolution: {integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==} dependencies: - "@actions/http-client": 2.2.0 + '@actions/http-client': 2.2.0 uuid: 8.3.2 dev: false @@ -1545,14 +1587,14 @@ packages: /@alloc/quick-lru@5.2.0: resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} - engines: {node: ">=10"} + engines: {node: '>=10'} /@ampproject/remapping@2.2.1: resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} - engines: {node: ">=6.0.0"} + engines: {node: '>=6.0.0'} dependencies: - "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.19 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.19 dev: true /@aw-web-design/x-default-browser@1.4.126: @@ -1576,88 +1618,88 @@ packages: /@aws-cdk/aws-events@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@3.4.344): resolution: {integrity: sha512-KnfUmtv+4RhydD9+5CHFxNJxtgn7+Xftwfwg1G7qV/tWYPFHcNIvhlSOgwDrQPa+pTo1MmkiUN0lAR0G8B/cbw==} - engines: {node: ">= 14.15.0"} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/core": 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/core': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) constructs: 3.4.344 dev: false /@aws-cdk/aws-iam@1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344): resolution: {integrity: sha512-Fh2egW3v/uDdw3m4jvcupS7COL/+sJl2NHjz9l298ddyMxqDwJD2NQwE8mvgPLK4rDtAtDnE0c8RS6d+NWiC+w==} - engines: {node: ">= 14.15.0"} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/core": 1.204.0 - "@aws-cdk/region-info": 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/region-info': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - "@aws-cdk/region-info": 1.204.0 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + '@aws-cdk/region-info': 1.204.0 constructs: 3.4.344 transitivePeerDependencies: - - "@aws-cdk/cloud-assembly-schema" + - '@aws-cdk/cloud-assembly-schema' dev: false /@aws-cdk/aws-kms@1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@3.4.344): resolution: {integrity: sha512-iryZQ428L1VUVQ0zE96XTWWX7ANVtDrb6x+ZXXLTVUEPgjEd/W6zlcp++Qi0A3a9HLNd4PbEhK9rs0UKNTylzw==} - engines: {node: ">= 14.15.0"} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) constructs: 3.4.344 dev: false /@aws-cdk/aws-s3@1.204.0(@aws-cdk/aws-events@1.204.0)(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/aws-kms@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@3.4.344): resolution: {integrity: sha512-jsQ4n1L4MdPYDirBoOYgg7yzSk1TaFYo4dnwDlKiLJ5LcHG3Nai1cHb9XQbCy/9KKqbWsbd3WlkH+vcWEl8EUA==} - engines: {node: ">= 14.15.0"} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/aws-events": 1.204.0 - "@aws-cdk/aws-iam": 1.204.0 - "@aws-cdk/aws-kms": 1.204.0 - "@aws-cdk/core": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 + '@aws-cdk/aws-events': 1.204.0 + '@aws-cdk/aws-iam': 1.204.0 + '@aws-cdk/aws-kms': 1.204.0 + '@aws-cdk/core': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/aws-events": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@3.4.344) - "@aws-cdk/aws-iam": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) - "@aws-cdk/aws-kms": 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@3.4.344) - "@aws-cdk/core": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + '@aws-cdk/aws-events': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/core@1.204.0)(constructs@3.4.344) + '@aws-cdk/aws-iam': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) + '@aws-cdk/aws-kms': 1.204.0(@aws-cdk/aws-iam@1.204.0)(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/core@1.204.0)(@aws-cdk/cx-api@1.204.0)(constructs@3.4.344) + '@aws-cdk/core': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344) + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) constructs: 3.4.344 dev: false /@aws-cdk/cloud-assembly-schema@1.204.0: resolution: {integrity: sha512-DMNSR4DNKMNNfhOq1UizwZvesOKdhk3R3gRigrvWBHIkHMQg+W6aZFl7WZLKSBkChAXhIsH///psjhDQ20gl1w==} - engines: {node: ">= 14.15.0"} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. @@ -1672,21 +1714,21 @@ packages: /@aws-cdk/core@1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0)(@aws-cdk/cx-api@1.204.0)(@aws-cdk/region-info@1.204.0)(constructs@3.4.344): resolution: {integrity: sha512-yO/flJ9ihpzRhLTEqlbdbuPGtyyghHiiQPkUTLslwUM5vThVTbpgvW4UQHSGqytyst4MYXrN2jQn2RkwIRU57g==} - engines: {node: ">= 14.15.0"} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/cx-api": 1.204.0 - "@aws-cdk/region-info": 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/cx-api': 1.204.0 + '@aws-cdk/region-info': 1.204.0 constructs: ^3.3.69 dependencies: - "@aws-cdk/cloud-assembly-schema": 1.204.0 - "@aws-cdk/cx-api": 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) - "@aws-cdk/region-info": 1.204.0 - "@balena/dockerignore": 1.0.2 + '@aws-cdk/cloud-assembly-schema': 1.204.0 + '@aws-cdk/cx-api': 1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0) + '@aws-cdk/region-info': 1.204.0 + '@balena/dockerignore': 1.0.2 constructs: 3.4.344 fs-extra: 9.1.0 ignore: 5.2.4 @@ -1695,20 +1737,20 @@ packages: bundledDependencies: - fs-extra - minimatch - - "@balena/dockerignore" + - '@balena/dockerignore' - ignore /@aws-cdk/cx-api@1.204.0(@aws-cdk/cloud-assembly-schema@1.204.0): resolution: {integrity: sha512-Juh/jL1kFPD5JcI9Uu6X0mM2L6hBCN5grdjSS40F8dThbH25VPzFBejaKjiy5nP1UZB83X+HW3utYOEi97DqxA==} - engines: {node: ">= 14.15.0"} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html peerDependencies: - "@aws-cdk/cloud-assembly-schema": 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 dependencies: - "@aws-cdk/cloud-assembly-schema": 1.204.0 + '@aws-cdk/cloud-assembly-schema': 1.204.0 semver: 7.5.4 dev: false bundledDependencies: @@ -1716,7 +1758,7 @@ packages: /@aws-cdk/region-info@1.204.0: resolution: {integrity: sha512-lPkYJNoN4Gjlf0Fdfgcd1RTm5RD9qtfaFMwVvTn2KGTr7ZqmFskGQ9FqIcd5vd6GmsbAL8OrFOToLr1AHDuOiQ==} - engines: {node: ">= 14.15.0"} + engines: {node: '>= 14.15.0'} deprecated: |- AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2. @@ -1727,16 +1769,16 @@ packages: /@aws-crypto/crc32@3.0.0: resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==} dependencies: - "@aws-crypto/util": 3.0.0 - "@aws-sdk/types": 3.449.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.449.0 tslib: 1.14.1 dev: false /@aws-crypto/crc32c@3.0.0: resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==} dependencies: - "@aws-crypto/util": 3.0.0 - "@aws-sdk/types": 3.449.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.449.0 tslib: 1.14.1 dev: false @@ -1749,33 +1791,33 @@ packages: /@aws-crypto/sha1-browser@3.0.0: resolution: {integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==} dependencies: - "@aws-crypto/ie11-detection": 3.0.0 - "@aws-crypto/supports-web-crypto": 3.0.0 - "@aws-crypto/util": 3.0.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-locate-window": 3.310.0 - "@aws-sdk/util-utf8-browser": 3.259.0 + '@aws-crypto/ie11-detection': 3.0.0 + '@aws-crypto/supports-web-crypto': 3.0.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-locate-window': 3.310.0 + '@aws-sdk/util-utf8-browser': 3.259.0 tslib: 1.14.1 dev: false /@aws-crypto/sha256-browser@3.0.0: resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==} dependencies: - "@aws-crypto/ie11-detection": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-crypto/supports-web-crypto": 3.0.0 - "@aws-crypto/util": 3.0.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-locate-window": 3.310.0 - "@aws-sdk/util-utf8-browser": 3.259.0 + '@aws-crypto/ie11-detection': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-crypto/supports-web-crypto': 3.0.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-locate-window': 3.310.0 + '@aws-sdk/util-utf8-browser': 3.259.0 tslib: 1.14.1 dev: false /@aws-crypto/sha256-js@3.0.0: resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==} dependencies: - "@aws-crypto/util": 3.0.0 - "@aws-sdk/types": 3.449.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.449.0 tslib: 1.14.1 dev: false @@ -1788,53 +1830,53 @@ packages: /@aws-crypto/util@3.0.0: resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==} dependencies: - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-utf8-browser": 3.259.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-utf8-browser': 3.259.0 tslib: 1.14.1 dev: false /@aws-sdk/client-cloudwatch-logs@3.449.0: resolution: {integrity: sha512-Oz9eV+e0ehaiHTt8w3xk5fDek0DOzKUn8QDBC0BzlO2OozFVKkJ27XiGsqLRUEYjgXH8mv80hOvfoNQK2Y5FDw==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.449.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.449.0 + '@aws-sdk/core': 3.445.0 + '@aws-sdk/credential-provider-node': 3.449.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-signing': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 uuid: 8.3.2 transitivePeerDependencies: @@ -1843,45 +1885,45 @@ packages: /@aws-sdk/client-dynamodb@3.405.0: resolution: {integrity: sha512-hBaC5F6M1CMRg7RkVC4xbqT+9CVunxrxeQKZCy4H2iMnOmFyY9InjOqF06rF3dRTTDJl5Ski9AWJrovg29Q+iw==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.405.0 - "@aws-sdk/credential-provider-node": 3.405.0 - "@aws-sdk/middleware-endpoint-discovery": 3.405.0 - "@aws-sdk/middleware-host-header": 3.398.0 - "@aws-sdk/middleware-logger": 3.398.0 - "@aws-sdk/middleware-recursion-detection": 3.398.0 - "@aws-sdk/middleware-signing": 3.398.0 - "@aws-sdk/middleware-user-agent": 3.398.0 - "@aws-sdk/types": 3.398.0 - "@aws-sdk/util-endpoints": 3.398.0 - "@aws-sdk/util-user-agent-browser": 3.398.0 - "@aws-sdk/util-user-agent-node": 3.405.0 - "@smithy/config-resolver": 2.0.14 - "@smithy/fetch-http-handler": 2.2.2 - "@smithy/hash-node": 2.0.11 - "@smithy/invalid-dependency": 2.0.11 - "@smithy/middleware-content-length": 2.0.13 - "@smithy/middleware-endpoint": 2.0.11 - "@smithy/middleware-retry": 2.0.16 - "@smithy/middleware-serde": 2.0.11 - "@smithy/middleware-stack": 2.0.5 - "@smithy/node-config-provider": 2.1.1 - "@smithy/node-http-handler": 2.1.7 - "@smithy/protocol-http": 2.0.5 - "@smithy/smithy-client": 2.1.10 - "@smithy/types": 2.3.5 - "@smithy/url-parser": 2.0.11 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.14 - "@smithy/util-defaults-mode-node": 2.0.18 - "@smithy/util-retry": 2.0.4 - "@smithy/util-utf8": 2.0.0 - "@smithy/util-waiter": 2.0.11 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.405.0 + '@aws-sdk/credential-provider-node': 3.405.0 + '@aws-sdk/middleware-endpoint-discovery': 3.405.0 + '@aws-sdk/middleware-host-header': 3.398.0 + '@aws-sdk/middleware-logger': 3.398.0 + '@aws-sdk/middleware-recursion-detection': 3.398.0 + '@aws-sdk/middleware-signing': 3.398.0 + '@aws-sdk/middleware-user-agent': 3.398.0 + '@aws-sdk/types': 3.398.0 + '@aws-sdk/util-endpoints': 3.398.0 + '@aws-sdk/util-user-agent-browser': 3.398.0 + '@aws-sdk/util-user-agent-node': 3.405.0 + '@smithy/config-resolver': 2.0.14 + '@smithy/fetch-http-handler': 2.2.2 + '@smithy/hash-node': 2.0.11 + '@smithy/invalid-dependency': 2.0.11 + '@smithy/middleware-content-length': 2.0.13 + '@smithy/middleware-endpoint': 2.0.11 + '@smithy/middleware-retry': 2.0.16 + '@smithy/middleware-serde': 2.0.11 + '@smithy/middleware-stack': 2.0.5 + '@smithy/node-config-provider': 2.1.1 + '@smithy/node-http-handler': 2.1.7 + '@smithy/protocol-http': 2.0.5 + '@smithy/smithy-client': 2.1.10 + '@smithy/types': 2.3.5 + '@smithy/url-parser': 2.0.11 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.14 + '@smithy/util-defaults-mode-node': 2.0.18 + '@smithy/util-retry': 2.0.4 + '@smithy/util-utf8': 2.0.0 + '@smithy/util-waiter': 2.0.11 tslib: 2.6.2 uuid: 8.3.2 transitivePeerDependencies: @@ -1890,48 +1932,48 @@ packages: /@aws-sdk/client-dynamodb@3.449.0: resolution: {integrity: sha512-v645mRyTQHx9yJUZ9bZHjpl09G1AMO6zhv3bZYbxFAyByJTse81XtfP3pvBJ2ghkYvWNFts2YQp0XnqCj3IIrg==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.449.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-endpoint-discovery": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 - "@smithy/util-waiter": 2.0.12 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.449.0 + '@aws-sdk/core': 3.445.0 + '@aws-sdk/credential-provider-node': 3.449.0 + '@aws-sdk/middleware-endpoint-discovery': 3.449.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-signing': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 + '@smithy/util-waiter': 2.0.12 tslib: 2.6.2 uuid: 8.3.2 transitivePeerDependencies: @@ -1940,47 +1982,47 @@ packages: /@aws-sdk/client-elasticache@3.449.0: resolution: {integrity: sha512-DOyJKkysq8Kjy5yKbdPu6ZdG+ru2Smr+Drk48a862kDrO0sMH2jFTMjQbSkJhXS1sZAekkJjW6Vwkg9EKGdvtg==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.449.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 - "@smithy/util-waiter": 2.0.12 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.449.0 + '@aws-sdk/core': 3.445.0 + '@aws-sdk/credential-provider-node': 3.449.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-signing': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 + '@smithy/util-waiter': 2.0.12 fast-xml-parser: 4.2.5 tslib: 2.6.2 transitivePeerDependencies: @@ -1989,51 +2031,51 @@ packages: /@aws-sdk/client-lambda@3.449.0: resolution: {integrity: sha512-0gbOj7EhYUEJpQlmUH4t77wU1hgIUtsOlZoENopkREu914TS/Yz1qM8jgBRUZSKty3aBHFTr88pZ5zgEFjuHZA==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.449.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/eventstream-serde-browser": 2.0.12 - "@smithy/eventstream-serde-config-resolver": 2.0.12 - "@smithy/eventstream-serde-node": 2.0.12 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-stream": 2.0.17 - "@smithy/util-utf8": 2.0.0 - "@smithy/util-waiter": 2.0.12 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.449.0 + '@aws-sdk/core': 3.445.0 + '@aws-sdk/credential-provider-node': 3.449.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-signing': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/eventstream-serde-browser': 2.0.12 + '@smithy/eventstream-serde-config-resolver': 2.0.12 + '@smithy/eventstream-serde-node': 2.0.12 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-stream': 2.0.17 + '@smithy/util-utf8': 2.0.0 + '@smithy/util-waiter': 2.0.12 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2041,63 +2083,63 @@ packages: /@aws-sdk/client-s3@3.449.0: resolution: {integrity: sha512-+xRyzPc2pVR1sX5cGvOIjyxWroa2hQ1IgjA5t4OV5QfQe87uFrxP2zHTclUo8+1USzaB5fESwUs2jXZQ647Z0g==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha1-browser": 3.0.0 - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.449.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-bucket-endpoint": 3.449.0 - "@aws-sdk/middleware-expect-continue": 3.449.0 - "@aws-sdk/middleware-flexible-checksums": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-location-constraint": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-sdk-s3": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-ssec": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/signature-v4-multi-region": 3.449.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@aws-sdk/xml-builder": 3.310.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/eventstream-serde-browser": 2.0.12 - "@smithy/eventstream-serde-config-resolver": 2.0.12 - "@smithy/eventstream-serde-node": 2.0.12 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-blob-browser": 2.0.12 - "@smithy/hash-node": 2.0.12 - "@smithy/hash-stream-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/md5-js": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-stream": 2.0.17 - "@smithy/util-utf8": 2.0.0 - "@smithy/util-waiter": 2.0.12 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha1-browser': 3.0.0 + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.449.0 + '@aws-sdk/core': 3.445.0 + '@aws-sdk/credential-provider-node': 3.449.0 + '@aws-sdk/middleware-bucket-endpoint': 3.449.0 + '@aws-sdk/middleware-expect-continue': 3.449.0 + '@aws-sdk/middleware-flexible-checksums': 3.449.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-location-constraint': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-sdk-s3': 3.449.0 + '@aws-sdk/middleware-signing': 3.449.0 + '@aws-sdk/middleware-ssec': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/signature-v4-multi-region': 3.449.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@aws-sdk/xml-builder': 3.310.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/eventstream-serde-browser': 2.0.12 + '@smithy/eventstream-serde-config-resolver': 2.0.12 + '@smithy/eventstream-serde-node': 2.0.12 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-blob-browser': 2.0.12 + '@smithy/hash-node': 2.0.12 + '@smithy/hash-stream-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/md5-js': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-stream': 2.0.17 + '@smithy/util-utf8': 2.0.0 + '@smithy/util-waiter': 2.0.12 fast-xml-parser: 4.2.5 tslib: 2.6.2 transitivePeerDependencies: @@ -2106,46 +2148,46 @@ packages: /@aws-sdk/client-secrets-manager@3.449.0: resolution: {integrity: sha512-wIwxdAdbW2TZOvRkmOlZNI0V+JPAVYMsLJy9N5XscArelPA2aHVY0aSZAP85jsdPNmrMzwCIpTXHwpu+MFqI0w==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.449.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.449.0 + '@aws-sdk/core': 3.445.0 + '@aws-sdk/credential-provider-node': 3.449.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-signing': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 uuid: 8.3.2 transitivePeerDependencies: @@ -2154,46 +2196,46 @@ packages: /@aws-sdk/client-sns@3.449.0: resolution: {integrity: sha512-wkn9/KYTJkmJNVhyRzi5c8HsnEDaHHQl5F1mIDWIRZjoeTLX3OkqW8DqwDOfwLcDqtCVC6Gi+ZOn0GoC7QlOzw==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.449.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.449.0 + '@aws-sdk/core': 3.445.0 + '@aws-sdk/credential-provider-node': 3.449.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-signing': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 fast-xml-parser: 4.2.5 tslib: 2.6.2 transitivePeerDependencies: @@ -2202,48 +2244,48 @@ packages: /@aws-sdk/client-sqs@3.449.0: resolution: {integrity: sha512-moT+iLy61s1YmmDS3iOByRgueWCfvNT/nl+BALgktXN4sV92+1JE3epu6wSj4Xwk7SB3bLIt81bMfF32DBJ70w==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.449.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-sdk-sqs": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/md5-js": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.449.0 + '@aws-sdk/core': 3.445.0 + '@aws-sdk/credential-provider-node': 3.449.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-sdk-sqs': 3.449.0 + '@aws-sdk/middleware-signing': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/md5-js': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2251,40 +2293,40 @@ packages: /@aws-sdk/client-sso@3.405.0: resolution: {integrity: sha512-z1ssydU07bDhe0tNXQwVO+rWh/iSfK48JI8s8vgpBNwH+NejMzIJ9r3AkjCiJ+LSAwlBZItUsNWwR0veIfgBiw==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/middleware-host-header": 3.398.0 - "@aws-sdk/middleware-logger": 3.398.0 - "@aws-sdk/middleware-recursion-detection": 3.398.0 - "@aws-sdk/middleware-user-agent": 3.398.0 - "@aws-sdk/types": 3.398.0 - "@aws-sdk/util-endpoints": 3.398.0 - "@aws-sdk/util-user-agent-browser": 3.398.0 - "@aws-sdk/util-user-agent-node": 3.405.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 2.0.5 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/middleware-host-header': 3.398.0 + '@aws-sdk/middleware-logger': 3.398.0 + '@aws-sdk/middleware-recursion-detection': 3.398.0 + '@aws-sdk/middleware-user-agent': 3.398.0 + '@aws-sdk/types': 3.398.0 + '@aws-sdk/util-endpoints': 3.398.0 + '@aws-sdk/util-user-agent-browser': 3.398.0 + '@aws-sdk/util-user-agent-node': 3.405.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 2.0.5 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2292,43 +2334,43 @@ packages: /@aws-sdk/client-sso@3.449.0: resolution: {integrity: sha512-HFTlFbf9jwp5BJkXbMKlEwk6oGC7AVYaPEkaNk77kzZ8RGoqVSAqe0HL74DACcJUpMD/VWYX7pfWq/Wm+2B79g==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/core': 3.445.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2336,43 +2378,43 @@ packages: /@aws-sdk/client-sts@3.405.0: resolution: {integrity: sha512-asVEpda3zu5QUO5ZNNjbLBS0718IhxxyUDVrNmVTKZoOhK1pMNouGZf+l49v0Lb5cOPbUds8cxsNaInj2MvIKw==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/credential-provider-node": 3.405.0 - "@aws-sdk/middleware-host-header": 3.398.0 - "@aws-sdk/middleware-logger": 3.398.0 - "@aws-sdk/middleware-recursion-detection": 3.398.0 - "@aws-sdk/middleware-sdk-sts": 3.398.0 - "@aws-sdk/middleware-signing": 3.398.0 - "@aws-sdk/middleware-user-agent": 3.398.0 - "@aws-sdk/types": 3.398.0 - "@aws-sdk/util-endpoints": 3.398.0 - "@aws-sdk/util-user-agent-browser": 3.398.0 - "@aws-sdk/util-user-agent-node": 3.405.0 - "@smithy/config-resolver": 2.0.14 - "@smithy/fetch-http-handler": 2.2.2 - "@smithy/hash-node": 2.0.11 - "@smithy/invalid-dependency": 2.0.11 - "@smithy/middleware-content-length": 2.0.13 - "@smithy/middleware-endpoint": 2.0.11 - "@smithy/middleware-retry": 2.0.16 - "@smithy/middleware-serde": 2.0.11 - "@smithy/middleware-stack": 2.0.5 - "@smithy/node-config-provider": 2.1.1 - "@smithy/node-http-handler": 2.1.7 - "@smithy/protocol-http": 2.0.5 - "@smithy/smithy-client": 2.1.10 - "@smithy/types": 2.3.5 - "@smithy/url-parser": 2.0.11 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.14 - "@smithy/util-defaults-mode-node": 2.0.18 - "@smithy/util-retry": 2.0.4 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/credential-provider-node': 3.405.0 + '@aws-sdk/middleware-host-header': 3.398.0 + '@aws-sdk/middleware-logger': 3.398.0 + '@aws-sdk/middleware-recursion-detection': 3.398.0 + '@aws-sdk/middleware-sdk-sts': 3.398.0 + '@aws-sdk/middleware-signing': 3.398.0 + '@aws-sdk/middleware-user-agent': 3.398.0 + '@aws-sdk/types': 3.398.0 + '@aws-sdk/util-endpoints': 3.398.0 + '@aws-sdk/util-user-agent-browser': 3.398.0 + '@aws-sdk/util-user-agent-node': 3.405.0 + '@smithy/config-resolver': 2.0.14 + '@smithy/fetch-http-handler': 2.2.2 + '@smithy/hash-node': 2.0.11 + '@smithy/invalid-dependency': 2.0.11 + '@smithy/middleware-content-length': 2.0.13 + '@smithy/middleware-endpoint': 2.0.11 + '@smithy/middleware-retry': 2.0.16 + '@smithy/middleware-serde': 2.0.11 + '@smithy/middleware-stack': 2.0.5 + '@smithy/node-config-provider': 2.1.1 + '@smithy/node-http-handler': 2.1.7 + '@smithy/protocol-http': 2.0.5 + '@smithy/smithy-client': 2.1.10 + '@smithy/types': 2.3.5 + '@smithy/url-parser': 2.0.11 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.14 + '@smithy/util-defaults-mode-node': 2.0.18 + '@smithy/util-retry': 2.0.4 + '@smithy/util-utf8': 2.0.0 fast-xml-parser: 4.2.5 tslib: 2.6.2 transitivePeerDependencies: @@ -2381,46 +2423,46 @@ packages: /@aws-sdk/client-sts@3.449.0: resolution: {integrity: sha512-iKh5Es9tyY+Ch17bvMubW67ydW4X3Buy9vwTIqpmXlnXEfbvjZRwycjWK2MO/P1Su3wjA14zNBq2ifNWFxkwFA==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/core": 3.445.0 - "@aws-sdk/credential-provider-node": 3.449.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-sdk-sts": 3.449.0 - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/core': 3.445.0 + '@aws-sdk/credential-provider-node': 3.449.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-sdk-sts': 3.449.0 + '@aws-sdk/middleware-signing': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 fast-xml-parser: 4.2.5 tslib: 2.6.2 transitivePeerDependencies: @@ -2429,45 +2471,45 @@ packages: /@aws-sdk/core@3.445.0: resolution: {integrity: sha512-6GYLElUG1QTOdmXG8zXa+Ull9IUeSeItKDYHKzHYfIkbsagMfYlf7wm9XIYlatjtgodNfZ3gPHAJfRyPmwKrsg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/smithy-client": 2.1.12 + '@smithy/smithy-client': 2.1.12 tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-env@3.398.0: resolution: {integrity: sha512-Z8Yj5z7FroAsR6UVML+XUdlpoqEe9Dnle8c2h8/xWwIC2feTfIBhjLhRVxfbpbM1pLgBSNEcZ7U8fwq5l7ESVQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.398.0 - "@smithy/property-provider": 2.0.12 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.398.0 + '@smithy/property-provider': 2.0.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-env@3.449.0: resolution: {integrity: sha512-SwO9XQcBoyA0XrsSmgnMqCnR99wIyp+BjGhvzDU+Wetib7QPt++E2slJkLM/iCNc6YiqiHZtHsvXapSV7RzBJw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/property-provider": 2.0.13 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/property-provider': 2.0.13 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-ini@3.405.0: resolution: {integrity: sha512-b4TqVsM4WQM96GDVs+TYOhU2/0SnUWzz6NH55qY1y2xyF8/pZEhc0XXdpvZtQQBLGdROhXCbxhBVye8GmTpgcg==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-sdk/credential-provider-env": 3.398.0 - "@aws-sdk/credential-provider-process": 3.405.0 - "@aws-sdk/credential-provider-sso": 3.405.0 - "@aws-sdk/credential-provider-web-identity": 3.398.0 - "@aws-sdk/types": 3.398.0 - "@smithy/credential-provider-imds": 2.0.16 - "@smithy/property-provider": 2.0.12 - "@smithy/shared-ini-file-loader": 2.2.0 - "@smithy/types": 2.4.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-sdk/credential-provider-env': 3.398.0 + '@aws-sdk/credential-provider-process': 3.405.0 + '@aws-sdk/credential-provider-sso': 3.405.0 + '@aws-sdk/credential-provider-web-identity': 3.398.0 + '@aws-sdk/types': 3.398.0 + '@smithy/credential-provider-imds': 2.0.16 + '@smithy/property-provider': 2.0.12 + '@smithy/shared-ini-file-loader': 2.2.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2475,17 +2517,17 @@ packages: /@aws-sdk/credential-provider-ini@3.449.0: resolution: {integrity: sha512-C2pMYysIfbRBR4Q+Aj7J0cRsKY/X2cOnrggrWzsEUJK3EJ1aHwrzm3HI0VM5DttJyya5hE4tZ/H1VX3zNGUtKA==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-sdk/credential-provider-env": 3.449.0 - "@aws-sdk/credential-provider-process": 3.449.0 - "@aws-sdk/credential-provider-sso": 3.449.0 - "@aws-sdk/credential-provider-web-identity": 3.449.0 - "@aws-sdk/types": 3.449.0 - "@smithy/credential-provider-imds": 2.0.18 - "@smithy/property-provider": 2.0.13 - "@smithy/shared-ini-file-loader": 2.2.2 - "@smithy/types": 2.4.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-sdk/credential-provider-env': 3.449.0 + '@aws-sdk/credential-provider-process': 3.449.0 + '@aws-sdk/credential-provider-sso': 3.449.0 + '@aws-sdk/credential-provider-web-identity': 3.449.0 + '@aws-sdk/types': 3.449.0 + '@smithy/credential-provider-imds': 2.0.18 + '@smithy/property-provider': 2.0.13 + '@smithy/shared-ini-file-loader': 2.2.2 + '@smithy/types': 2.4.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2493,18 +2535,18 @@ packages: /@aws-sdk/credential-provider-node@3.405.0: resolution: {integrity: sha512-AMmRP09nwYsft0MXDlHIxMQe7IloWW8As0lbZmPrG7Y7mK5RDmCIwD2yMDz77Zqlv09FsYt+9+cOK2fTNhim+Q==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-sdk/credential-provider-env": 3.398.0 - "@aws-sdk/credential-provider-ini": 3.405.0 - "@aws-sdk/credential-provider-process": 3.405.0 - "@aws-sdk/credential-provider-sso": 3.405.0 - "@aws-sdk/credential-provider-web-identity": 3.398.0 - "@aws-sdk/types": 3.398.0 - "@smithy/credential-provider-imds": 2.0.16 - "@smithy/property-provider": 2.0.12 - "@smithy/shared-ini-file-loader": 2.2.0 - "@smithy/types": 2.3.5 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-sdk/credential-provider-env': 3.398.0 + '@aws-sdk/credential-provider-ini': 3.405.0 + '@aws-sdk/credential-provider-process': 3.405.0 + '@aws-sdk/credential-provider-sso': 3.405.0 + '@aws-sdk/credential-provider-web-identity': 3.398.0 + '@aws-sdk/types': 3.398.0 + '@smithy/credential-provider-imds': 2.0.16 + '@smithy/property-provider': 2.0.12 + '@smithy/shared-ini-file-loader': 2.2.0 + '@smithy/types': 2.3.5 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2512,18 +2554,18 @@ packages: /@aws-sdk/credential-provider-node@3.449.0: resolution: {integrity: sha512-cCsqMqL8vmHADwIHCmTWDB4vr5fCXb4PZn3njbA/PIA92xL4S7hRmYi/1ll0CMd+fks+t/h+s+PIhFGo54C7cA==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-sdk/credential-provider-env": 3.449.0 - "@aws-sdk/credential-provider-ini": 3.449.0 - "@aws-sdk/credential-provider-process": 3.449.0 - "@aws-sdk/credential-provider-sso": 3.449.0 - "@aws-sdk/credential-provider-web-identity": 3.449.0 - "@aws-sdk/types": 3.449.0 - "@smithy/credential-provider-imds": 2.0.18 - "@smithy/property-provider": 2.0.13 - "@smithy/shared-ini-file-loader": 2.2.2 - "@smithy/types": 2.4.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-sdk/credential-provider-env': 3.449.0 + '@aws-sdk/credential-provider-ini': 3.449.0 + '@aws-sdk/credential-provider-process': 3.449.0 + '@aws-sdk/credential-provider-sso': 3.449.0 + '@aws-sdk/credential-provider-web-identity': 3.449.0 + '@aws-sdk/types': 3.449.0 + '@smithy/credential-provider-imds': 2.0.18 + '@smithy/property-provider': 2.0.13 + '@smithy/shared-ini-file-loader': 2.2.2 + '@smithy/types': 2.4.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2531,36 +2573,36 @@ packages: /@aws-sdk/credential-provider-process@3.405.0: resolution: {integrity: sha512-EqAMcUVeZAICYHHL8x5Fi5CYPgCo9UCE7ScWmU5Sa2wAFY4XLyQ1mMxX3lKGYx9lBxWk3dqnhmvlcqdzN7AjyQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.398.0 - "@smithy/property-provider": 2.0.12 - "@smithy/shared-ini-file-loader": 2.2.0 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.398.0 + '@smithy/property-provider': 2.0.12 + '@smithy/shared-ini-file-loader': 2.2.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-process@3.449.0: resolution: {integrity: sha512-IofhAgpwdSnaEg9H0dhydac07GCQ55Mc5oRzdzp/tm0Rl0MqnGdIvN8wYsxAeVhEi9pBSNla4eRiTu3LY6Z5+A==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/property-provider": 2.0.13 - "@smithy/shared-ini-file-loader": 2.2.2 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/property-provider': 2.0.13 + '@smithy/shared-ini-file-loader': 2.2.2 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-sso@3.405.0: resolution: {integrity: sha512-fXqSgQHz7qcmIWMVguwSMSjqFkVfN2+XiNgiskcmeYiCS7mIGAgUnKABZc9Ds2+YW9ATYiY0BOD5aWxc8TX5fA==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-sdk/client-sso": 3.405.0 - "@aws-sdk/token-providers": 3.405.0 - "@aws-sdk/types": 3.398.0 - "@smithy/property-provider": 2.0.12 - "@smithy/shared-ini-file-loader": 2.2.0 - "@smithy/types": 2.4.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-sdk/client-sso': 3.405.0 + '@aws-sdk/token-providers': 3.405.0 + '@aws-sdk/types': 3.398.0 + '@smithy/property-provider': 2.0.12 + '@smithy/shared-ini-file-loader': 2.2.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2568,14 +2610,14 @@ packages: /@aws-sdk/credential-provider-sso@3.449.0: resolution: {integrity: sha512-Lfhh38rOjFAZBjZZJ2ehve+X048xxr+hTr+ntGOKady1GAH6W1U5UGNYuD9fr5vFaQQtAcNLKkUui+TnmJ4z/w==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-sdk/client-sso": 3.449.0 - "@aws-sdk/token-providers": 3.449.0 - "@aws-sdk/types": 3.449.0 - "@smithy/property-provider": 2.0.13 - "@smithy/shared-ini-file-loader": 2.2.2 - "@smithy/types": 2.4.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-sdk/client-sso': 3.449.0 + '@aws-sdk/token-providers': 3.449.0 + '@aws-sdk/types': 3.449.0 + '@smithy/property-provider': 2.0.13 + '@smithy/shared-ini-file-loader': 2.2.2 + '@smithy/types': 2.4.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2583,27 +2625,27 @@ packages: /@aws-sdk/credential-provider-web-identity@3.398.0: resolution: {integrity: sha512-iG3905Alv9pINbQ8/MIsshgqYMbWx+NDQWpxbIW3W0MkSH3iAqdVpSCteYidYX9G/jv2Um1nW3y360ib20bvNg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.398.0 - "@smithy/property-provider": 2.0.12 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.398.0 + '@smithy/property-provider': 2.0.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-web-identity@3.449.0: resolution: {integrity: sha512-BdqATzdqg39z2VXnEH7I6dzuX/Di6F/4C8FyiiJYx2+VciYdqt6GPprlpGdpngtWct/f8pA/LxQysNBVuwU/RA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/property-provider": 2.0.13 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/property-provider': 2.0.13 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/endpoint-cache@3.310.0: resolution: {integrity: sha512-y3wipforet41EDTI0vnzxILqwAGll1KfI5qcdX9pXF/WF1f+3frcOtPiWtQEZQpy4czRogKm3BHo70QBYAZxlQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: mnemonist: 0.38.3 tslib: 2.6.2 @@ -2611,305 +2653,305 @@ packages: /@aws-sdk/middleware-bucket-endpoint@3.449.0: resolution: {integrity: sha512-gH+IEdDfhzTmQLdWwfc23A40EhvvAhk8taXUu3DX/lXl+2lBqd4qCoGk8vfUtwh9y1kbRDnhLq04XM2DPvvj2w==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-arn-parser": 3.310.0 - "@smithy/node-config-provider": 2.1.3 - "@smithy/protocol-http": 3.0.8 - "@smithy/types": 2.4.0 - "@smithy/util-config-provider": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-arn-parser': 3.310.0 + '@smithy/node-config-provider': 2.1.3 + '@smithy/protocol-http': 3.0.8 + '@smithy/types': 2.4.0 + '@smithy/util-config-provider': 2.0.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-endpoint-discovery@3.405.0: resolution: {integrity: sha512-6Q4quuNjXEkX61eI6/UJOh16SGBZzGykJu/SYrALftHpn8D+hgeaOpc2wAkpObT8KSItoRSE/uXWTnN7XNmJLA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/endpoint-cache": 3.310.0 - "@aws-sdk/types": 3.398.0 - "@smithy/protocol-http": 2.0.5 - "@smithy/types": 2.3.5 + '@aws-sdk/endpoint-cache': 3.310.0 + '@aws-sdk/types': 3.398.0 + '@smithy/protocol-http': 2.0.5 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@aws-sdk/middleware-endpoint-discovery@3.449.0: resolution: {integrity: sha512-rzse3aAhC59Lr4kgtGk5kGdEnAx/eAG16V8nOKwhNDO1N7LucocXwWabn+TT/5CtUFAARtUTUy0YkSUANRYddg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/endpoint-cache": 3.310.0 - "@aws-sdk/types": 3.449.0 - "@smithy/node-config-provider": 2.1.3 - "@smithy/protocol-http": 3.0.8 - "@smithy/types": 2.4.0 + '@aws-sdk/endpoint-cache': 3.310.0 + '@aws-sdk/types': 3.449.0 + '@smithy/node-config-provider': 2.1.3 + '@smithy/protocol-http': 3.0.8 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-expect-continue@3.449.0: resolution: {integrity: sha512-OOR78JoTbCo/42HViuA+F2Uy/cNWo31mN0YZJRbnY5oAMgLRrY7d2+NlJpvHlS4XPdUZ6UHeUecJ9BAWuVuWAQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/protocol-http": 3.0.8 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/protocol-http': 3.0.8 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-flexible-checksums@3.449.0: resolution: {integrity: sha512-pKBgmwqA6jdiWZrYX0uaPOGdRldRiG2ArA7ufS5B7iz9X1JJP8ESZcO2wD+AbrLBtkZtVG31974qpqfNU6n4dQ==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/crc32": 3.0.0 - "@aws-crypto/crc32c": 3.0.0 - "@aws-sdk/types": 3.449.0 - "@smithy/is-array-buffer": 2.0.0 - "@smithy/protocol-http": 3.0.8 - "@smithy/types": 2.4.0 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/crc32': 3.0.0 + '@aws-crypto/crc32c': 3.0.0 + '@aws-sdk/types': 3.449.0 + '@smithy/is-array-buffer': 2.0.0 + '@smithy/protocol-http': 3.0.8 + '@smithy/types': 2.4.0 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-host-header@3.398.0: resolution: {integrity: sha512-m+5laWdBaxIZK2ko0OwcCHJZJ5V1MgEIt8QVQ3k4/kOkN9ICjevOYmba751pHoTnbOYB7zQd6D2OT3EYEEsUcA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.398.0 - "@smithy/protocol-http": 2.0.5 - "@smithy/types": 2.3.5 + '@aws-sdk/types': 3.398.0 + '@smithy/protocol-http': 2.0.5 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@aws-sdk/middleware-host-header@3.449.0: resolution: {integrity: sha512-uO7ao5eFhqEEPk8uqkhNhYqqJPPv/+i2aLchvSYrviDcmcbz9HURc8j+Q9WkmIj3jf0hjAJ9UVMQggBUfoLEgg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/protocol-http": 3.0.8 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/protocol-http': 3.0.8 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-location-constraint@3.449.0: resolution: {integrity: sha512-MPCFKOpgke/ZV6WSxZZ/y9X4mn0ywLC2HVcaPJvDSKA0gsRtJLEQjWs2+I2QYTzEM0iwgoW9UOSgbFZYXF0Pow==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-logger@3.398.0: resolution: {integrity: sha512-CiJjW+FL12elS6Pn7/UVjVK8HWHhXMfvHZvOwx/Qkpy340sIhkuzOO6fZEruECDTZhl2Wqn81XdJ1ZQ4pRKpCg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.398.0 - "@smithy/types": 2.3.5 + '@aws-sdk/types': 3.398.0 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@aws-sdk/middleware-logger@3.449.0: resolution: {integrity: sha512-YwmPLuSx5Zjdnloxr7bArT2KgF+VvlSe5+p5T/woZWEQgINRaCLdvDB37p7x/LlHrxxZRmk20MaFwSKlJU85qQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-recursion-detection@3.398.0: resolution: {integrity: sha512-7QpOqPQAZNXDXv6vsRex4R8dLniL0E/80OPK4PPFsrCh9btEyhN9Begh4i1T+5lL28hmYkztLOkTQ2N5J3hgRQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.398.0 - "@smithy/protocol-http": 2.0.5 - "@smithy/types": 2.3.5 + '@aws-sdk/types': 3.398.0 + '@smithy/protocol-http': 2.0.5 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@aws-sdk/middleware-recursion-detection@3.449.0: resolution: {integrity: sha512-8kWxxpPBHwFUADf8JaZsUbJ+FtS3K9MGQpMx0AZhh3P9xLaoh602CL0y0+UEEdb2uh6FJJjQiIk4eQXEolhG6Q==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/protocol-http": 3.0.8 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/protocol-http': 3.0.8 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-sdk-s3@3.449.0: resolution: {integrity: sha512-HbgWdv0txBdV9+9aJSGtGWXnQlVvpIXS6gqmJ5ESHKwZMiRHXswwptccZkvSrLjCQr5uuN37yIz3219MRrvrmw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-arn-parser": 3.310.0 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-arn-parser': 3.310.0 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-sdk-sqs@3.449.0: resolution: {integrity: sha512-Z4IuH+OKkvVN78oUyotaefsL5/CvwXTVnMp0+9lfgkC+YnRvFJHwDglL4YU0gVsNV3ChWjFvwX6nI1eIw2cXpQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/types": 2.4.0 - "@smithy/util-hex-encoding": 2.0.0 - "@smithy/util-utf8": 2.0.0 + '@aws-sdk/types': 3.449.0 + '@smithy/types': 2.4.0 + '@smithy/util-hex-encoding': 2.0.0 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-sdk-sts@3.398.0: resolution: {integrity: sha512-+JH76XHEgfVihkY+GurohOQ5Z83zVN1nYcQzwCFnCDTh4dG4KwhnZKG+WPw6XJECocY0R+H0ivofeALHvVWJtQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/middleware-signing": 3.398.0 - "@aws-sdk/types": 3.398.0 - "@smithy/types": 2.4.0 + '@aws-sdk/middleware-signing': 3.398.0 + '@aws-sdk/types': 3.398.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-sdk-sts@3.449.0: resolution: {integrity: sha512-a+mknJkS9jDiDoHg2sFW24B0f6MgT2zs/oF6zMFvVmImvUHjbhSgBzYStE+Phl/uM1zwp1lJfbuO+I+5tVwZEw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/middleware-signing": 3.449.0 - "@aws-sdk/types": 3.449.0 - "@smithy/types": 2.4.0 + '@aws-sdk/middleware-signing': 3.449.0 + '@aws-sdk/types': 3.449.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-signing@3.398.0: resolution: {integrity: sha512-O0KqXAix1TcvZBFt1qoFkHMUNJOSgjJTYS7lFTRKSwgsD27bdW2TM2r9R8DAccWFt5Amjkdt+eOwQMIXPGTm8w==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-sdk/types": 3.398.0 - "@smithy/property-provider": 2.0.12 - "@smithy/protocol-http": 2.0.5 - "@smithy/signature-v4": 2.0.11 - "@smithy/types": 2.3.5 - "@smithy/util-middleware": 2.0.4 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-sdk/types': 3.398.0 + '@smithy/property-provider': 2.0.12 + '@smithy/protocol-http': 2.0.5 + '@smithy/signature-v4': 2.0.11 + '@smithy/types': 2.3.5 + '@smithy/util-middleware': 2.0.4 tslib: 2.6.2 dev: false /@aws-sdk/middleware-signing@3.449.0: resolution: {integrity: sha512-L33efrgdDDY3myjLwraeS2tzUlebaZL6WS7ooACsOwkB9mRs6UQRpSpT90HbcSAjwLaa+xGqaxTA0biAuRjT5A==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/property-provider": 2.0.13 - "@smithy/protocol-http": 3.0.8 - "@smithy/signature-v4": 2.0.11 - "@smithy/types": 2.4.0 - "@smithy/util-middleware": 2.0.5 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-sdk/types': 3.449.0 + '@smithy/property-provider': 2.0.13 + '@smithy/protocol-http': 3.0.8 + '@smithy/signature-v4': 2.0.11 + '@smithy/types': 2.4.0 + '@smithy/util-middleware': 2.0.5 tslib: 2.6.2 dev: false /@aws-sdk/middleware-ssec@3.449.0: resolution: {integrity: sha512-NY7jt1/ukqXCUqnaK2rlm5yGFyj9sOJBqK6X8Gpu5qQaYAvIP892U1UMj6VTPC7yBLPYhW2/YCfDvxOClbqKEg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/middleware-user-agent@3.398.0: resolution: {integrity: sha512-nF1jg0L+18b5HvTcYzwyFgfZQQMELJINFqI0mi4yRKaX7T5a3aGp5RVLGGju/6tAGTuFbfBoEhkhU3kkxexPYQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.398.0 - "@aws-sdk/util-endpoints": 3.398.0 - "@smithy/protocol-http": 2.0.5 - "@smithy/types": 2.3.5 + '@aws-sdk/types': 3.398.0 + '@aws-sdk/util-endpoints': 3.398.0 + '@smithy/protocol-http': 2.0.5 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@aws-sdk/middleware-user-agent@3.449.0: resolution: {integrity: sha512-0cRptIhIthxUYadrgb5FmcTgGhPIeXnFATBILaa2gA/ivfVY/CiqMAvOvLHxtBAYNK8/VXM9DFL5TfOt8mF2UQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@smithy/protocol-http": 3.0.8 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@smithy/protocol-http': 3.0.8 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/region-config-resolver@3.433.0: resolution: {integrity: sha512-xpjRjCZW+CDFdcMmmhIYg81ST5UAnJh61IHziQEk0FXONrg4kjyYPZAOjEdzXQ+HxJQuGQLKPhRdzxmQnbX7pg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/node-config-provider": 2.1.3 - "@smithy/types": 2.4.0 - "@smithy/util-config-provider": 2.0.0 - "@smithy/util-middleware": 2.0.5 + '@smithy/node-config-provider': 2.1.3 + '@smithy/types': 2.4.0 + '@smithy/util-config-provider': 2.0.0 + '@smithy/util-middleware': 2.0.5 tslib: 2.6.2 dev: false /@aws-sdk/s3-request-presigner@3.449.0: resolution: {integrity: sha512-Rt4ys/Jt3deLCdLDyn8aEDMbpkbQaKKAitF2N2awGS/3pGGoz/V7BftMLi96yUARWo4cUWqnzfz/rEyVZFkNPg==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-sdk/signature-v4-multi-region": 3.449.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-format-url": 3.449.0 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/protocol-http": 3.0.8 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-sdk/signature-v4-multi-region': 3.449.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-format-url': 3.449.0 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/protocol-http': 3.0.8 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/signature-v4-multi-region@3.449.0: resolution: {integrity: sha512-Ne8dF3R2Cj6JJBw0Utm7INtoJ2PdqGNgDpeTOFTnFGSGWnsumACbcVp4ikcZzgABTCQgKx88wPdXUHUZtaBqcg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/protocol-http": 3.0.8 - "@smithy/signature-v4": 2.0.11 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/protocol-http': 3.0.8 + '@smithy/signature-v4': 2.0.11 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/token-providers@3.405.0: resolution: {integrity: sha512-rVzC7ptf7TlV84M9w+Ds9isio1EY7bs1MRFv/6lmYstsyTri+DaZG10TwXSGfzIMwB0yVh11niCxO9wSjQ36zg==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/middleware-host-header": 3.398.0 - "@aws-sdk/middleware-logger": 3.398.0 - "@aws-sdk/middleware-recursion-detection": 3.398.0 - "@aws-sdk/middleware-user-agent": 3.398.0 - "@aws-sdk/types": 3.398.0 - "@aws-sdk/util-endpoints": 3.398.0 - "@aws-sdk/util-user-agent-browser": 3.398.0 - "@aws-sdk/util-user-agent-node": 3.405.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/property-provider": 2.0.12 - "@smithy/protocol-http": 2.0.5 - "@smithy/shared-ini-file-loader": 2.2.0 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/middleware-host-header': 3.398.0 + '@aws-sdk/middleware-logger': 3.398.0 + '@aws-sdk/middleware-recursion-detection': 3.398.0 + '@aws-sdk/middleware-user-agent': 3.398.0 + '@aws-sdk/types': 3.398.0 + '@aws-sdk/util-endpoints': 3.398.0 + '@aws-sdk/util-user-agent-browser': 3.398.0 + '@aws-sdk/util-user-agent-node': 3.405.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/property-provider': 2.0.12 + '@smithy/protocol-http': 2.0.5 + '@smithy/shared-ini-file-loader': 2.2.0 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2917,44 +2959,44 @@ packages: /@aws-sdk/token-providers@3.449.0: resolution: {integrity: sha512-Tgu6Z/l75uFuNQpKIidbn1gc5bI7OKmGdH5+E/ZAc58XYvxYs9N77HjhrhAGvYQEnXY6gRm26/WSeHAAh5wlgQ==} - engines: {node: ">=14.0.0"} - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/middleware-host-header": 3.449.0 - "@aws-sdk/middleware-logger": 3.449.0 - "@aws-sdk/middleware-recursion-detection": 3.449.0 - "@aws-sdk/middleware-user-agent": 3.449.0 - "@aws-sdk/region-config-resolver": 3.433.0 - "@aws-sdk/types": 3.449.0 - "@aws-sdk/util-endpoints": 3.449.0 - "@aws-sdk/util-user-agent-browser": 3.449.0 - "@aws-sdk/util-user-agent-node": 3.449.0 - "@smithy/config-resolver": 2.0.16 - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/hash-node": 2.0.12 - "@smithy/invalid-dependency": 2.0.12 - "@smithy/middleware-content-length": 2.0.14 - "@smithy/middleware-endpoint": 2.1.3 - "@smithy/middleware-retry": 2.0.18 - "@smithy/middleware-serde": 2.0.12 - "@smithy/middleware-stack": 2.0.6 - "@smithy/node-config-provider": 2.1.3 - "@smithy/node-http-handler": 2.1.8 - "@smithy/property-provider": 2.0.13 - "@smithy/protocol-http": 3.0.8 - "@smithy/shared-ini-file-loader": 2.2.2 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-base64": 2.0.0 - "@smithy/util-body-length-browser": 2.0.0 - "@smithy/util-body-length-node": 2.1.0 - "@smithy/util-defaults-mode-browser": 2.0.16 - "@smithy/util-defaults-mode-node": 2.0.21 - "@smithy/util-endpoints": 1.0.2 - "@smithy/util-retry": 2.0.5 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/middleware-host-header': 3.449.0 + '@aws-sdk/middleware-logger': 3.449.0 + '@aws-sdk/middleware-recursion-detection': 3.449.0 + '@aws-sdk/middleware-user-agent': 3.449.0 + '@aws-sdk/region-config-resolver': 3.433.0 + '@aws-sdk/types': 3.449.0 + '@aws-sdk/util-endpoints': 3.449.0 + '@aws-sdk/util-user-agent-browser': 3.449.0 + '@aws-sdk/util-user-agent-node': 3.449.0 + '@smithy/config-resolver': 2.0.16 + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/hash-node': 2.0.12 + '@smithy/invalid-dependency': 2.0.12 + '@smithy/middleware-content-length': 2.0.14 + '@smithy/middleware-endpoint': 2.1.3 + '@smithy/middleware-retry': 2.0.18 + '@smithy/middleware-serde': 2.0.12 + '@smithy/middleware-stack': 2.0.6 + '@smithy/node-config-provider': 2.1.3 + '@smithy/node-http-handler': 2.1.8 + '@smithy/property-provider': 2.0.13 + '@smithy/protocol-http': 3.0.8 + '@smithy/shared-ini-file-loader': 2.2.2 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-base64': 2.0.0 + '@smithy/util-body-length-browser': 2.0.0 + '@smithy/util-body-length-node': 2.1.0 + '@smithy/util-defaults-mode-browser': 2.0.16 + '@smithy/util-defaults-mode-node': 2.0.21 + '@smithy/util-endpoints': 1.0.2 + '@smithy/util-retry': 2.0.5 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt @@ -2962,67 +3004,67 @@ packages: /@aws-sdk/types@3.398.0: resolution: {integrity: sha512-r44fkS+vsEgKCuEuTV+TIk0t0m5ZlXHNjSDYEUvzLStbbfUFiNus/YG4UCa0wOk9R7VuQI67badsvvPeVPCGDQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.3.5 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@aws-sdk/types@3.449.0: resolution: {integrity: sha512-tSQPAvknheB6XnRoc+AuEgdzn2KhY447hddeVW0Mbg8Yl9es4u4TKVINloKDEyUrCKhB/1f93Hb5uJkPe/e/Ww==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/util-arn-parser@3.310.0: resolution: {integrity: sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false /@aws-sdk/util-dynamodb@3.449.0(@aws-sdk/client-dynamodb@3.449.0): resolution: {integrity: sha512-3Y0ZMcMTcwP8EM/twMVcA0mr7rnarcmRchLM+Lxgt4172K9YJ5Iy895Xy03g0aOgiAwAE8ogkzum0hwbv6RClg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} peerDependencies: - "@aws-sdk/client-dynamodb": ^3.0.0 + '@aws-sdk/client-dynamodb': ^3.0.0 dependencies: - "@aws-sdk/client-dynamodb": 3.449.0 + '@aws-sdk/client-dynamodb': 3.449.0 tslib: 2.6.2 dev: false /@aws-sdk/util-endpoints@3.398.0: resolution: {integrity: sha512-Fy0gLYAei/Rd6BrXG4baspCnWTUSd0NdokU1pZh4KlfEAEN1i8SPPgfiO5hLk7+2inqtCmqxVJlfqbMVe9k4bw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.398.0 + '@aws-sdk/types': 3.398.0 tslib: 2.6.2 dev: false /@aws-sdk/util-endpoints@3.449.0: resolution: {integrity: sha512-hWGM/e+BnbCExXLaIEa6gRb0JW3+XGfcHgRqWkAxsKCaxQuXVIPUA3HyifimxTZDKmTbGZcyWfxCnKGS7I19rw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/util-endpoints": 1.0.2 + '@aws-sdk/types': 3.449.0 + '@smithy/util-endpoints': 1.0.2 tslib: 2.6.2 dev: false /@aws-sdk/util-format-url@3.449.0: resolution: {integrity: sha512-ZZR2clVM1U5NH7CQ2YQfTy/JsQlLbt/p0MjvlTIPWIm9ZLFUPww7yPR0+Ps/bCAOqKYs5xj+/WjgzvRnDk4Vyg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/querystring-builder": 2.0.12 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/querystring-builder': 2.0.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@aws-sdk/util-locate-window@3.310.0: resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false @@ -3030,8 +3072,8 @@ packages: /@aws-sdk/util-user-agent-browser@3.398.0: resolution: {integrity: sha512-A3Tzx1tkDHlBT+IgxmsMCHbV8LM7SwwCozq2ZjJRx0nqw3MCrrcxQFXldHeX/gdUMO+0Oocb7HGSnVODTq+0EA==} dependencies: - "@aws-sdk/types": 3.398.0 - "@smithy/types": 2.3.5 + '@aws-sdk/types': 3.398.0 + '@smithy/types': 2.3.5 bowser: 2.11.0 tslib: 2.6.2 dev: false @@ -3039,39 +3081,39 @@ packages: /@aws-sdk/util-user-agent-browser@3.449.0: resolution: {integrity: sha512-MUQ8YIVZNZZso5w1qlatHu9c1JKYvdjlAugzKhj7npgV4U8D9RBOJUd2Ct8meXPaH4DTfW1qohPlZu/fWWqNVQ==} dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/types': 2.4.0 bowser: 2.11.0 tslib: 2.6.2 dev: false /@aws-sdk/util-user-agent-node@3.405.0: resolution: {integrity: sha512-6Ssld7aalKCnW6lSGfiiWpqwo2L+AmYq2oV3P9yYAo9ZL+Q78dXquabwj3uq3plJ4l2xE4Gfcf2FJ/1PZpqDvQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} peerDependencies: - aws-crt: ">=1.0.0" + aws-crt: '>=1.0.0' peerDependenciesMeta: aws-crt: optional: true dependencies: - "@aws-sdk/types": 3.398.0 - "@smithy/node-config-provider": 2.1.1 - "@smithy/types": 2.3.5 + '@aws-sdk/types': 3.398.0 + '@smithy/node-config-provider': 2.1.1 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@aws-sdk/util-user-agent-node@3.449.0: resolution: {integrity: sha512-PFMnFMSQTdhMAS63anMFFkzz56kWKcjGscgl0bBheEaxo8zgfLf1AAdFuBM+Ob2KYXeMezUbxYu9zOC/0S2hvw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} peerDependencies: - aws-crt: ">=1.0.0" + aws-crt: '>=1.0.0' peerDependenciesMeta: aws-crt: optional: true dependencies: - "@aws-sdk/types": 3.449.0 - "@smithy/node-config-provider": 2.1.3 - "@smithy/types": 2.4.0 + '@aws-sdk/types': 3.449.0 + '@smithy/node-config-provider': 2.1.3 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false @@ -3083,37 +3125,37 @@ packages: /@aws-sdk/xml-builder@3.310.0: resolution: {integrity: sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false /@azure/abort-controller@1.1.0: resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} dependencies: tslib: 2.6.2 dev: false /@azure/core-auth@1.5.0: resolution: {integrity: sha512-udzoBuYG1VBoHVohDTrvKjyzel34zt77Bhp7dQntVGGD0ehVq48owENbBG8fIgkHRNUBQH5k1r0hpoMu5L8+kw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@azure/abort-controller": 1.1.0 - "@azure/core-util": 1.5.0 + '@azure/abort-controller': 1.1.0 + '@azure/core-util': 1.5.0 tslib: 2.6.2 dev: false /@azure/core-client@1.7.3: resolution: {integrity: sha512-kleJ1iUTxcO32Y06dH9Pfi9K4U+Tlb111WXEnbt7R/ne+NLRwppZiTGJuTD5VVoxTMK5NTbEtm5t2vcdNCFe2g==} - engines: {node: ">=14.0.0"} - dependencies: - "@azure/abort-controller": 1.1.0 - "@azure/core-auth": 1.5.0 - "@azure/core-rest-pipeline": 1.12.1 - "@azure/core-tracing": 1.0.1 - "@azure/core-util": 1.5.0 - "@azure/logger": 1.0.4 + engines: {node: '>=14.0.0'} + dependencies: + '@azure/abort-controller': 1.1.0 + '@azure/core-auth': 1.5.0 + '@azure/core-rest-pipeline': 1.12.1 + '@azure/core-tracing': 1.0.1 + '@azure/core-util': 1.5.0 + '@azure/logger': 1.0.4 tslib: 2.6.2 transitivePeerDependencies: - supports-color @@ -3121,15 +3163,15 @@ packages: /@azure/core-http@3.0.3: resolution: {integrity: sha512-QMib3wXotJMFhHgmJBPUF9YsyErw34H0XDFQd9CauH7TPB+RGcyl9Ayy7iURtJB04ngXhE6YwrQsWDXlSLrilg==} - engines: {node: ">=14.0.0"} - dependencies: - "@azure/abort-controller": 1.1.0 - "@azure/core-auth": 1.5.0 - "@azure/core-tracing": 1.0.0-preview.13 - "@azure/core-util": 1.5.0 - "@azure/logger": 1.0.4 - "@types/node-fetch": 2.6.6 - "@types/tunnel": 0.0.3 + engines: {node: '>=14.0.0'} + dependencies: + '@azure/abort-controller': 1.1.0 + '@azure/core-auth': 1.5.0 + '@azure/core-tracing': 1.0.0-preview.13 + '@azure/core-util': 1.5.0 + '@azure/logger': 1.0.4 + '@types/node-fetch': 2.6.6 + '@types/tunnel': 0.0.3 form-data: 4.0.0 node-fetch: 2.7.0 process: 0.11.10 @@ -3143,30 +3185,30 @@ packages: /@azure/core-lro@2.5.4: resolution: {integrity: sha512-3GJiMVH7/10bulzOKGrrLeG/uCBH/9VtxqaMcB9lIqAeamI/xYQSHJL/KcsLDuH+yTjYpro/u6D/MuRe4dN70Q==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@azure/abort-controller": 1.1.0 - "@azure/core-util": 1.5.0 - "@azure/logger": 1.0.4 + '@azure/abort-controller': 1.1.0 + '@azure/core-util': 1.5.0 + '@azure/logger': 1.0.4 tslib: 2.6.2 dev: false /@azure/core-paging@1.5.0: resolution: {integrity: sha512-zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false /@azure/core-rest-pipeline@1.12.1: resolution: {integrity: sha512-SsyWQ+T5MFQRX+M8H/66AlaI6HyCbQStGfFngx2fuiW+vKI2DkhtOvbYodPyf9fOe/ARLWWc3ohX54lQ5Kmaog==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@azure/abort-controller": 1.1.0 - "@azure/core-auth": 1.5.0 - "@azure/core-tracing": 1.0.1 - "@azure/core-util": 1.5.0 - "@azure/logger": 1.0.4 + '@azure/abort-controller': 1.1.0 + '@azure/core-auth': 1.5.0 + '@azure/core-tracing': 1.0.1 + '@azure/core-util': 1.5.0 + '@azure/logger': 1.0.4 form-data: 4.0.0 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 @@ -3177,41 +3219,41 @@ packages: /@azure/core-tracing@1.0.0-preview.13: resolution: {integrity: sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} dependencies: - "@opentelemetry/api": 1.6.0 + '@opentelemetry/api': 1.6.0 tslib: 2.6.2 dev: false /@azure/core-tracing@1.0.1: resolution: {integrity: sha512-I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} dependencies: tslib: 2.6.2 dev: false /@azure/core-util@1.5.0: resolution: {integrity: sha512-GZBpVFDtQ/15hW1OgBcRdT4Bl7AEpcEZqLfbAvOtm1CQUncKWiYapFHVD588hmlV27NbOOtSm3cnLF3lvoHi4g==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@azure/abort-controller": 1.1.0 + '@azure/abort-controller': 1.1.0 tslib: 2.6.2 dev: false /@azure/identity@3.1.3: resolution: {integrity: sha512-y0jFjSfHsVPwXSwi3KaSPtOZtJZqhiqAhWUXfFYBUd/+twUBovZRXspBwLrF5rJe0r5NyvmScpQjL+TYDTQVvw==} - engines: {node: ">=14.0.0"} - dependencies: - "@azure/abort-controller": 1.1.0 - "@azure/core-auth": 1.5.0 - "@azure/core-client": 1.7.3 - "@azure/core-rest-pipeline": 1.12.1 - "@azure/core-tracing": 1.0.1 - "@azure/core-util": 1.5.0 - "@azure/logger": 1.0.4 - "@azure/msal-browser": 2.38.2 - "@azure/msal-common": 9.1.1 - "@azure/msal-node": 1.18.3 + engines: {node: '>=14.0.0'} + dependencies: + '@azure/abort-controller': 1.1.0 + '@azure/core-auth': 1.5.0 + '@azure/core-client': 1.7.3 + '@azure/core-rest-pipeline': 1.12.1 + '@azure/core-tracing': 1.0.1 + '@azure/core-util': 1.5.0 + '@azure/logger': 1.0.4 + '@azure/msal-browser': 2.38.2 + '@azure/msal-common': 9.1.1 + '@azure/msal-node': 1.18.3 events: 3.3.0 jws: 4.0.0 open: 8.4.2 @@ -3224,47 +3266,47 @@ packages: /@azure/logger@1.0.4: resolution: {integrity: sha512-ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false /@azure/msal-browser@2.38.2: resolution: {integrity: sha512-71BeIn2we6LIgMplwCSaMq5zAwmalyJR3jFcVOZxNVfQ1saBRwOD+P77nLs5vrRCedVKTq8RMFhIOdpMLNno0A==} - engines: {node: ">=0.8.0"} + engines: {node: '>=0.8.0'} dependencies: - "@azure/msal-common": 13.3.0 + '@azure/msal-common': 13.3.0 dev: false /@azure/msal-common@13.3.0: resolution: {integrity: sha512-/VFWTicjcJbrGp3yQP7A24xU95NiDMe23vxIU1U6qdRPFsprMDNUohMudclnd+WSHE4/McqkZs/nUU3sAKkVjg==} - engines: {node: ">=0.8.0"} + engines: {node: '>=0.8.0'} dev: false /@azure/msal-common@9.1.1: resolution: {integrity: sha512-we9xR8lvu47fF0h+J8KyXoRy9+G/fPzm3QEa2TrdR3jaVS3LKAyE2qyMuUkNdbVkvzl8Zr9f7l+IUSP22HeqXw==} - engines: {node: ">=0.8.0"} + engines: {node: '>=0.8.0'} dev: false /@azure/msal-node@1.18.3: resolution: {integrity: sha512-lI1OsxNbS/gxRD4548Wyj22Dk8kS7eGMwD9GlBZvQmFV8FJUXoXySL1BiNzDsHUE96/DS/DHmA+F73p1Dkcktg==} engines: {node: 10 || 12 || 14 || 16 || 18} dependencies: - "@azure/msal-common": 13.3.0 + '@azure/msal-common': 13.3.0 jsonwebtoken: 9.0.2 uuid: 8.3.2 dev: false /@azure/storage-blob@12.14.0: resolution: {integrity: sha512-g8GNUDpMisGXzBeD+sKphhH5yLwesB4JkHr1U6be/X3F+cAMcyGLPD1P89g2M7wbEtUJWoikry1rlr83nNRBzg==} - engines: {node: ">=14.0.0"} - dependencies: - "@azure/abort-controller": 1.1.0 - "@azure/core-http": 3.0.3 - "@azure/core-lro": 2.5.4 - "@azure/core-paging": 1.5.0 - "@azure/core-tracing": 1.0.0-preview.13 - "@azure/logger": 1.0.4 + engines: {node: '>=14.0.0'} + dependencies: + '@azure/abort-controller': 1.1.0 + '@azure/core-http': 3.0.3 + '@azure/core-lro': 2.5.4 + '@azure/core-paging': 1.5.0 + '@azure/core-tracing': 1.0.0-preview.13 + '@azure/logger': 1.0.4 events: 3.3.0 tslib: 2.6.2 transitivePeerDependencies: @@ -3273,30 +3315,30 @@ packages: /@babel/code-frame@7.22.13: resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/highlight": 7.22.20 + '@babel/highlight': 7.22.20 chalk: 2.4.2 /@babel/compat-data@7.22.20: resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dev: true /@babel/core@7.23.0: resolution: {integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==} - engines: {node: ">=6.9.0"} - dependencies: - "@ampproject/remapping": 2.2.1 - "@babel/code-frame": 7.22.13 - "@babel/generator": 7.23.0 - "@babel/helper-compilation-targets": 7.22.15 - "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.0) - "@babel/helpers": 7.23.1 - "@babel/parser": 7.23.0 - "@babel/template": 7.22.15 - "@babel/traverse": 7.23.0 - "@babel/types": 7.23.0 + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/helpers': 7.23.1 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -3308,18 +3350,18 @@ packages: /@babel/core@7.23.3: resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==} - engines: {node: ">=6.9.0"} - dependencies: - "@ampproject/remapping": 2.2.1 - "@babel/code-frame": 7.22.13 - "@babel/generator": 7.23.3 - "@babel/helper-compilation-targets": 7.22.15 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.3) - "@babel/helpers": 7.23.2 - "@babel/parser": 7.23.3 - "@babel/template": 7.22.15 - "@babel/traverse": 7.23.3 - "@babel/types": 7.23.3 + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.3 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.3 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -3331,44 +3373,44 @@ packages: /@babel/generator@7.23.0: resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.0 - "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.19 + '@babel/types': 7.23.0 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 dev: true /@babel/generator@7.23.3: resolution: {integrity: sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.3 - "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.20 + '@babel/types': 7.23.3 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.20 jsesc: 2.5.2 dev: true /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/helper-compilation-targets@7.22.15: resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/compat-data": 7.22.20 - "@babel/helper-validator-option": 7.22.15 + '@babel/compat-data': 7.22.20 + '@babel/helper-validator-option': 7.22.15 browserslist: 4.22.1 lru-cache: 5.1.1 semver: 6.3.1 @@ -3376,30 +3418,30 @@ packages: /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.23.0 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-member-expression-to-functions": 7.23.0 - "@babel/helper-optimise-call-expression": 7.22.5 - "@babel/helper-replace-supers": 7.22.20(@babel/core@7.23.0) - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.0 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-annotate-as-pure": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 dev: true @@ -3407,11 +3449,11 @@ packages: /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.23.0): resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-compilation-targets": 7.22.15 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.6 @@ -3421,1126 +3463,1126 @@ packages: /@babel/helper-environment-visitor@7.22.20: resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dev: true /@babel/helper-function-name@7.23.0: resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/template": 7.22.15 - "@babel/types": 7.23.0 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 dev: true /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/helper-member-expression-to-functions@7.23.0: resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/helper-module-imports@7.22.15: resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0): resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-module-imports": 7.22.15 - "@babel/helper-simple-access": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/helper-validator-identifier": 7.22.20 + '@babel/core': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 dev: true /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.3): resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.3 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-module-imports": 7.22.15 - "@babel/helper-simple-access": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/helper-validator-identifier": 7.22.20 + '@babel/core': 7.23.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 dev: true /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/helper-plugin-utils@7.22.5: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dev: true /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.0): resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-wrap-function": 7.22.20 + '@babel/core': 7.23.0 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 dev: true /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.0): resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-member-expression-to-functions": 7.23.0 - "@babel/helper-optimise-call-expression": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 dev: true /@babel/helper-simple-access@7.22.5: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/helper-skip-transparent-expression-wrappers@7.22.5: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/helper-string-parser@7.22.5: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dev: true /@babel/helper-validator-identifier@7.22.20: resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} /@babel/helper-validator-option@7.22.15: resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dev: true /@babel/helper-wrap-function@7.22.20: resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/helper-function-name": 7.23.0 - "@babel/template": 7.22.15 - "@babel/types": 7.23.0 + '@babel/helper-function-name': 7.23.0 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 dev: true /@babel/helpers@7.23.1: resolution: {integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/template": 7.22.15 - "@babel/traverse": 7.23.0 - "@babel/types": 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 transitivePeerDependencies: - supports-color dev: true /@babel/helpers@7.23.2: resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/template": 7.22.15 - "@babel/traverse": 7.23.3 - "@babel/types": 7.23.3 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 transitivePeerDependencies: - supports-color dev: true /@babel/highlight@7.22.20: resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/helper-validator-identifier": 7.22.20 + '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 /@babel/parser@7.23.0: resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} - engines: {node: ">=6.0.0"} + engines: {node: '>=6.0.0'} hasBin: true dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/parser@7.23.3: resolution: {integrity: sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==} - engines: {node: ">=6.0.0"} + engines: {node: '>=6.0.0'} hasBin: true dependencies: - "@babel/types": 7.23.3 + '@babel/types': 7.23.3 dev: true /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.13.0 + '@babel/core': ^7.13.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-transform-optional-chaining": 7.23.0(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.0) dev: true /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) dev: true /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.0): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) dev: true /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 + '@babel/core': 7.23.0 dev: true /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.0): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.0): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.0): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.0): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.0): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.0): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.0): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.0): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.23.0) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) dev: true /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-module-imports": 7.22.15 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.0) dev: true /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.0): resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.12.0 + '@babel/core': ^7.12.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0) dev: true /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.23.0 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-compilation-targets": 7.22.15 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-optimise-call-expression": 7.22.5 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-replace-supers": 7.22.20(@babel/core@7.23.0) - "@babel/helper-split-export-declaration": 7.22.6 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.0 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) + '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/template": 7.22.15 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 dev: true /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.0): resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0) dev: true /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.15 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0) dev: true /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-flow": 7.22.5(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.0) dev: true /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-compilation-targets": 7.22.15 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0) dev: true /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0) dev: true /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.0): resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.0): resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-simple-access": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 dev: true /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.0): resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-identifier": 7.22.20 + '@babel/core': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) dev: true /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) dev: true /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/compat-data": 7.22.20 - "@babel/core": 7.23.0 - "@babel/helper-compilation-targets": 7.22.15 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-transform-parameters": 7.22.15(@babel/core@7.23.0) + '@babel/compat-data': 7.22.20 + '@babel/core': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0) dev: true /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-replace-supers": 7.22.20(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) dev: true /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) dev: true /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.0): resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) dev: true /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0) dev: true /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.0): resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 dev: true /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-typescript": 7.22.5(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0) dev: true /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.0): resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.0) - "@babel/helper-plugin-utils": 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/preset-env@7.22.20(@babel/core@7.23.0): resolution: {integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==} - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.22.20 - "@babel/core": 7.23.0 - "@babel/helper-compilation-targets": 7.22.15 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-option": 7.22.15 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.22.15(@babel/core@7.23.0) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.22.15(@babel/core@7.23.0) - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.23.0) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.23.0) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.23.0) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-import-assertions": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-syntax-import-attributes": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.23.0) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.23.0) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.23.0) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.23.0) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.23.0) - "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.23.0) - "@babel/plugin-transform-arrow-functions": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-async-generator-functions": 7.22.15(@babel/core@7.23.0) - "@babel/plugin-transform-async-to-generator": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-block-scoped-functions": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-block-scoping": 7.23.0(@babel/core@7.23.0) - "@babel/plugin-transform-class-properties": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-class-static-block": 7.22.11(@babel/core@7.23.0) - "@babel/plugin-transform-classes": 7.22.15(@babel/core@7.23.0) - "@babel/plugin-transform-computed-properties": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-destructuring": 7.23.0(@babel/core@7.23.0) - "@babel/plugin-transform-dotall-regex": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-duplicate-keys": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-dynamic-import": 7.22.11(@babel/core@7.23.0) - "@babel/plugin-transform-exponentiation-operator": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-export-namespace-from": 7.22.11(@babel/core@7.23.0) - "@babel/plugin-transform-for-of": 7.22.15(@babel/core@7.23.0) - "@babel/plugin-transform-function-name": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-json-strings": 7.22.11(@babel/core@7.23.0) - "@babel/plugin-transform-literals": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-logical-assignment-operators": 7.22.11(@babel/core@7.23.0) - "@babel/plugin-transform-member-expression-literals": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-modules-amd": 7.23.0(@babel/core@7.23.0) - "@babel/plugin-transform-modules-commonjs": 7.23.0(@babel/core@7.23.0) - "@babel/plugin-transform-modules-systemjs": 7.23.0(@babel/core@7.23.0) - "@babel/plugin-transform-modules-umd": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-new-target": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-nullish-coalescing-operator": 7.22.11(@babel/core@7.23.0) - "@babel/plugin-transform-numeric-separator": 7.22.11(@babel/core@7.23.0) - "@babel/plugin-transform-object-rest-spread": 7.22.15(@babel/core@7.23.0) - "@babel/plugin-transform-object-super": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-optional-catch-binding": 7.22.11(@babel/core@7.23.0) - "@babel/plugin-transform-optional-chaining": 7.23.0(@babel/core@7.23.0) - "@babel/plugin-transform-parameters": 7.22.15(@babel/core@7.23.0) - "@babel/plugin-transform-private-methods": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-private-property-in-object": 7.22.11(@babel/core@7.23.0) - "@babel/plugin-transform-property-literals": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-regenerator": 7.22.10(@babel/core@7.23.0) - "@babel/plugin-transform-reserved-words": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-shorthand-properties": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-spread": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-sticky-regex": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-template-literals": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-typeof-symbol": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-unicode-escapes": 7.22.10(@babel/core@7.23.0) - "@babel/plugin-transform-unicode-property-regex": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-unicode-regex": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-unicode-sets-regex": 7.22.5(@babel/core@7.23.0) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.23.0) - "@babel/types": 7.23.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.20 + '@babel/core': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.0) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-async-generator-functions': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.0) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.0) + '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.0) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.0) + '@babel/types': 7.23.0 babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.0) babel-plugin-polyfill-corejs3: 0.8.4(@babel/core@7.23.0) babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.0) @@ -4552,48 +4594,48 @@ packages: /@babel/preset-flow@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-option": 7.22.15 - "@babel/plugin-transform-flow-strip-types": 7.22.5(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.0) dev: true /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.0): resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: - "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/types": 7.23.0 + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/types': 7.23.0 esutils: 2.0.3 dev: true /@babel/preset-typescript@7.23.0(@babel/core@7.23.0): resolution: {integrity: sha512-6P6VVa/NM/VlAYj5s2Aq/gdVg8FSENCg3wlZ6Qau9AcPaoF5LbN1nyGlR9DTRIw9PpxI94e+ReydsJHcjwAweg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-option": 7.22.15 - "@babel/plugin-syntax-jsx": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-modules-commonjs": 7.23.0(@babel/core@7.23.0) - "@babel/plugin-transform-typescript": 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.0) dev: true /@babel/register@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 + '@babel/core': 7.23.0 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -4607,31 +4649,31 @@ packages: /@babel/runtime@7.23.1: resolution: {integrity: sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.0 /@babel/template@7.22.15: resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/code-frame": 7.22.13 - "@babel/parser": 7.23.0 - "@babel/types": 7.23.0 + '@babel/code-frame': 7.22.13 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 dev: true /@babel/traverse@7.23.0: resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==} - engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.22.13 - "@babel/generator": 7.23.0 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/parser": 7.23.0 - "@babel/types": 7.23.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -4640,16 +4682,16 @@ packages: /@babel/traverse@7.23.3: resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==} - engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.22.13 - "@babel/generator": 7.23.3 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/parser": 7.23.3 - "@babel/types": 7.23.3 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -4658,19 +4700,19 @@ packages: /@babel/types@7.23.0: resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/helper-string-parser": 7.22.5 - "@babel/helper-validator-identifier": 7.22.20 + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 dev: true /@babel/types@7.23.3: resolution: {integrity: sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dependencies: - "@babel/helper-string-parser": 7.22.5 - "@babel/helper-validator-identifier": 7.22.20 + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 dev: true @@ -4689,11 +4731,11 @@ packages: /@cdktf/cli-core@0.17.0(react@17.0.2): resolution: {integrity: sha512-SW84rbcnvUsROC5FOIw6AXBGq2cBAdM278ar7j3PPTaun5tjYZaImIN70YFI5aV2A8PDm8yoilZADem8/2rUUA==} dependencies: - "@cdktf/commons": 0.17.0 - "@cdktf/hcl2cdk": 0.17.0 - "@cdktf/hcl2json": 0.17.0 - "@cdktf/node-pty-prebuilt-multiarch": 0.10.1-pre.10 - "@sentry/node": 6.19.7 + '@cdktf/commons': 0.17.0 + '@cdktf/hcl2cdk': 0.17.0 + '@cdktf/hcl2json': 0.17.0 + '@cdktf/node-pty-prebuilt-multiarch': 0.10.1-pre.10 + '@sentry/node': 6.19.7 archiver: 5.3.2 cdktf: 0.17.0(constructs@10.2.70) chalk: 4.1.2 @@ -4737,7 +4779,7 @@ packages: yoga-layout-prebuilt: 1.10.0 zod: 1.11.17 transitivePeerDependencies: - - "@types/react" + - '@types/react' - bufferutil - debug - encoding @@ -4749,8 +4791,8 @@ packages: /@cdktf/commons@0.17.0: resolution: {integrity: sha512-zXWuaU/5HpIrg+IJPcCIp+yJHsn34Z0tmB6OusCofjhK677TLDt+jE5KKhgThM+NJLBYW5iSd8dMqn9e5KZong==} dependencies: - "@npmcli/ci-detect": 1.4.0 - "@sentry/node": 6.19.7 + '@npmcli/ci-detect': 1.4.0 + '@sentry/node': 6.19.7 cdktf: 0.17.0(constructs@10.2.70) codemaker: 1.90.0 constructs: 10.2.70 @@ -4768,12 +4810,12 @@ packages: /@cdktf/hcl2cdk@0.17.0: resolution: {integrity: sha512-RkBTWlK15YjO5wqlgmLyPBy2nsoeIFZRI5EhaPeYhqjBr8qHH+Zhg4/jSSfW/trrdZazIortQzdfdbShvZYhhw==} dependencies: - "@babel/generator": 7.23.0 - "@babel/template": 7.22.15 - "@babel/types": 7.23.0 - "@cdktf/commons": 0.17.0 - "@cdktf/hcl2json": 0.17.0 - "@cdktf/provider-generator": 0.17.0 + '@babel/generator': 7.23.0 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 + '@cdktf/commons': 0.17.0 + '@cdktf/hcl2json': 0.17.0 + '@cdktf/provider-generator': 0.17.0 camelcase: 6.3.0 deep-equal: 2.2.2 glob: 10.3.10 @@ -4804,7 +4846,7 @@ packages: /@cdktf/provider-aws@15.0.0(cdktf@0.17.0)(constructs@10.2.70): resolution: {integrity: sha512-GeXpsU8+TsXhFFowjos+7bYv2CDAMHjOlKxXTx6aaqEO7BTlyqXBM/Qetw6y/6MxwIcyEf5siduBeT6T3lg3Dg==} - engines: {node: ">= 16.14.0"} + engines: {node: '>= 16.14.0'} peerDependencies: cdktf: ^0.17.0 constructs: ^10.0.0 @@ -4815,9 +4857,9 @@ packages: /@cdktf/provider-generator@0.17.0: resolution: {integrity: sha512-/Ei9uVuLT6xjJIn6hvGepmS7tOjOAYsUplpc3J2jS1US85aO7oMASgjjgISvDC7saddLqhYCfysSWrYU5zUp0g==} dependencies: - "@cdktf/commons": 0.17.0 - "@cdktf/hcl2json": 0.17.0 - "@types/node": 16.18.23 + '@cdktf/commons': 0.17.0 + '@cdktf/hcl2json': 0.17.0 + '@types/node': 16.18.23 codemaker: 1.90.0 deepmerge: 4.3.1 fs-extra: 8.1.0 @@ -4829,7 +4871,7 @@ packages: /@cloudy-ts/eslint-plugin@0.0.260(eslint@8.51.0): resolution: {integrity: sha512-4mOL06xDWMyUz6OB0chNOwb3zhmDrXpHL7e7ZkCp5ysUQ2EEG4ms1Qg0vKBatKTN3LkYBeVqEqJRVGGg7/icSQ==} - engines: {node: ">= 14.18.0"} + engines: {node: '>= 14.18.0'} peerDependencies: eslint: ^8.36.0 dependencies: @@ -4838,29 +4880,29 @@ packages: /@colors/colors@1.5.0: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: ">=0.1.90"} + engines: {node: '>=0.1.90'} requiresBuild: true optional: true /@colors/colors@1.6.0: resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} - engines: {node: ">=0.1.90"} + engines: {node: '>=0.1.90'} requiresBuild: true dev: false optional: true /@cowasm/memfs@3.5.1: resolution: {integrity: sha512-TSz00K+BdLxAYFQvwHmKgM/eAK6h9OYSQhPTcv/9XSyOF0Q90EtMkJvtwirwAXunfTsZw8R9YMu1UU213ooVKw==} - engines: {node: ">= 4.0.0"} + engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.5 dev: false /@cspotcode/source-map-support@0.8.1: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: - "@jridgewell/trace-mapping": 0.3.9 + '@jridgewell/trace-mapping': 0.3.9 dev: true /@dabh/diagnostics@2.0.3: @@ -4875,14 +4917,14 @@ packages: /@discoveryjs/json-ext@0.5.7: resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} - engines: {node: ">=10.0.0"} + engines: {node: '>=10.0.0'} dev: true /@emotion/is-prop-valid@0.8.8: resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} requiresBuild: true dependencies: - "@emotion/memoize": 0.7.4 + '@emotion/memoize': 0.7.4 dev: false optional: true @@ -4895,14 +4937,14 @@ packages: /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0): resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} peerDependencies: - react: ">=16.8.0" + react: '>=16.8.0' dependencies: react: 18.2.0 dev: true /@esbuild/android-arm64@0.17.19: resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true @@ -4911,15 +4953,24 @@ packages: /@esbuild/android-arm64@0.18.20: resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true optional: true + /@esbuild/android-arm64@0.19.9: + resolution: {integrity: sha512-q4cR+6ZD0938R19MyEW3jEsMzbb/1rulLXiNAJQADD/XYp7pT+rOS5JGxvpRW8dFDEfjW4wLgC/3FXIw4zYglQ==} + 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"} + engines: {node: '>=12'} cpu: [arm] os: [android] requiresBuild: true @@ -4928,7 +4979,7 @@ packages: /@esbuild/android-arm@0.17.19: resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm] os: [android] requiresBuild: true @@ -4937,15 +4988,24 @@ packages: /@esbuild/android-arm@0.18.20: resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm] os: [android] requiresBuild: true optional: true + /@esbuild/android-arm@0.19.9: + resolution: {integrity: sha512-jkYjjq7SdsWuNI6b5quymW0oC83NN5FdRPuCbs9HZ02mfVdAP8B8eeqLSYU3gb6OJEaY5CQabtTFbqBf26H3GA==} + 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"} + engines: {node: '>=12'} cpu: [x64] os: [android] requiresBuild: true @@ -4954,15 +5014,24 @@ packages: /@esbuild/android-x64@0.18.20: resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: ">=12"} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + optional: true + + /@esbuild/android-x64@0.19.9: + resolution: {integrity: sha512-KOqoPntWAH6ZxDwx1D6mRntIgZh9KodzgNOy5Ebt9ghzffOk9X2c1sPwtM9P+0eXbefnDhqYfkh5PLP5ULtWFA==} + 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"} + engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true @@ -4971,15 +5040,24 @@ packages: /@esbuild/darwin-arm64@0.18.20: resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true + /@esbuild/darwin-arm64@0.19.9: + resolution: {integrity: sha512-KBJ9S0AFyLVx2E5D8W0vExqRW01WqRtczUZ8NRu+Pi+87opZn5tL4Y0xT0mA4FtHctd0ZgwNoN639fUUGlNIWw==} + 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"} + engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true @@ -4988,15 +5066,24 @@ packages: /@esbuild/darwin-x64@0.18.20: resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true optional: true + /@esbuild/darwin-x64@0.19.9: + resolution: {integrity: sha512-vE0VotmNTQaTdX0Q9dOHmMTao6ObjyPm58CHZr1UK7qpNleQyxlFlNCaHsHx6Uqv86VgPmR4o2wdNq3dP1qyDQ==} + 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"} + engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true @@ -5005,15 +5092,24 @@ packages: /@esbuild/freebsd-arm64@0.18.20: resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true optional: true + /@esbuild/freebsd-arm64@0.19.9: + resolution: {integrity: sha512-uFQyd/o1IjiEk3rUHSwUKkqZwqdvuD8GevWF065eqgYfexcVkxh+IJgwTaGZVu59XczZGcN/YMh9uF1fWD8j1g==} + 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"} + engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true @@ -5022,15 +5118,24 @@ packages: /@esbuild/freebsd-x64@0.18.20: resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true optional: true + /@esbuild/freebsd-x64@0.19.9: + resolution: {integrity: sha512-WMLgWAtkdTbTu1AWacY7uoj/YtHthgqrqhf1OaEWnZb7PQgpt8eaA/F3LkV0E6K/Lc0cUr/uaVP/49iE4M4asA==} + 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"} + engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true @@ -5039,15 +5144,24 @@ packages: /@esbuild/linux-arm64@0.18.20: resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: ">=12"} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-arm64@0.19.9: + resolution: {integrity: sha512-PiPblfe1BjK7WDAKR1Cr9O7VVPqVNpwFcPWgfn4xu0eMemzRp442hXyzF/fSwgrufI66FpHOEJk0yYdPInsmyQ==} + 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"} + engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true @@ -5056,15 +5170,24 @@ packages: /@esbuild/linux-arm@0.18.20: resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true optional: true + /@esbuild/linux-arm@0.19.9: + resolution: {integrity: sha512-C/ChPohUYoyUaqn1h17m/6yt6OB14hbXvT8EgM1ZWaiiTYz7nWZR0SYmMnB5BzQA4GXl3BgBO1l8MYqL/He3qw==} + 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"} + engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true @@ -5073,15 +5196,24 @@ packages: /@esbuild/linux-ia32@0.18.20: resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: ">=12"} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-ia32@0.19.9: + resolution: {integrity: sha512-f37i/0zE0MjDxijkPSQw1CO/7C27Eojqb+r3BbHVxMLkj8GCa78TrBZzvPyA/FNLUMzP3eyHCVkAopkKVja+6Q==} + engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true + dev: true optional: true /@esbuild/linux-loong64@0.15.18: resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [loong64] os: [linux] requiresBuild: true @@ -5090,7 +5222,7 @@ packages: /@esbuild/linux-loong64@0.17.19: resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [loong64] os: [linux] requiresBuild: true @@ -5099,15 +5231,24 @@ packages: /@esbuild/linux-loong64@0.18.20: resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [loong64] os: [linux] requiresBuild: true optional: true + /@esbuild/linux-loong64@0.19.9: + resolution: {integrity: sha512-t6mN147pUIf3t6wUt3FeumoOTPfmv9Cc6DQlsVBpB7eCpLOqQDyWBP1ymXn1lDw4fNUSb/gBcKAmvTP49oIkaA==} + 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"} + engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true @@ -5116,15 +5257,24 @@ packages: /@esbuild/linux-mips64el@0.18.20: resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-mips64el@0.19.9: + resolution: {integrity: sha512-jg9fujJTNTQBuDXdmAg1eeJUL4Jds7BklOTkkH80ZgQIoCTdQrDaHYgbFZyeTq8zbY+axgptncko3v9p5hLZtw==} + 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"} + engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true @@ -5133,15 +5283,24 @@ packages: /@esbuild/linux-ppc64@0.18.20: resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true optional: true + /@esbuild/linux-ppc64@0.19.9: + resolution: {integrity: sha512-tkV0xUX0pUUgY4ha7z5BbDS85uI7ABw3V1d0RNTii7E9lbmV8Z37Pup2tsLV46SQWzjOeyDi1Q7Wx2+QM8WaCQ==} + 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"} + engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true @@ -5150,15 +5309,24 @@ packages: /@esbuild/linux-riscv64@0.18.20: resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} - engines: {node: ">=12"} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + optional: true + + /@esbuild/linux-riscv64@0.19.9: + resolution: {integrity: sha512-DfLp8dj91cufgPZDXr9p3FoR++m3ZJ6uIXsXrIvJdOjXVREtXuQCjfMfvmc3LScAVmLjcfloyVtpn43D56JFHg==} + 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"} + engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true @@ -5167,15 +5335,24 @@ packages: /@esbuild/linux-s390x@0.18.20: resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true optional: true + /@esbuild/linux-s390x@0.19.9: + resolution: {integrity: sha512-zHbglfEdC88KMgCWpOl/zc6dDYJvWGLiUtmPRsr1OgCViu3z5GncvNVdf+6/56O2Ca8jUU+t1BW261V6kp8qdw==} + 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"} + engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true @@ -5184,15 +5361,24 @@ packages: /@esbuild/linux-x64@0.18.20: resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true optional: true + /@esbuild/linux-x64@0.19.9: + resolution: {integrity: sha512-JUjpystGFFmNrEHQnIVG8hKwvA2DN5o7RqiO1CVX8EN/F/gkCjkUMgVn6hzScpwnJtl2mPR6I9XV1oW8k9O+0A==} + 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"} + engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true @@ -5201,15 +5387,24 @@ packages: /@esbuild/netbsd-x64@0.18.20: resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} - engines: {node: ">=12"} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + optional: true + + /@esbuild/netbsd-x64@0.19.9: + resolution: {integrity: sha512-GThgZPAwOBOsheA2RUlW5UeroRfESwMq/guy8uEe3wJlAOjpOXuSevLRd70NZ37ZrpO6RHGHgEHvPg1h3S1Jug==} + 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"} + engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true @@ -5218,15 +5413,24 @@ packages: /@esbuild/openbsd-x64@0.18.20: resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true optional: true + /@esbuild/openbsd-x64@0.19.9: + resolution: {integrity: sha512-Ki6PlzppaFVbLnD8PtlVQfsYw4S9n3eQl87cqgeIw+O3sRr9IghpfSKY62mggdt1yCSZ8QWvTZ9jo9fjDSg9uw==} + 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"} + engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true @@ -5235,15 +5439,24 @@ packages: /@esbuild/sunos-x64@0.18.20: resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true optional: true + /@esbuild/sunos-x64@0.19.9: + resolution: {integrity: sha512-MLHj7k9hWh4y1ddkBpvRj2b9NCBhfgBt3VpWbHQnXRedVun/hC7sIyTGDGTfsGuXo4ebik2+3ShjcPbhtFwWDw==} + 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"} + engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true @@ -5252,15 +5465,24 @@ packages: /@esbuild/win32-arm64@0.18.20: resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true optional: true + /@esbuild/win32-arm64@0.19.9: + resolution: {integrity: sha512-GQoa6OrQ8G08guMFgeXPH7yE/8Dt0IfOGWJSfSH4uafwdC7rWwrfE6P9N8AtPGIjUzdo2+7bN8Xo3qC578olhg==} + 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"} + engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true @@ -5269,15 +5491,24 @@ packages: /@esbuild/win32-ia32@0.18.20: resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true optional: true + /@esbuild/win32-ia32@0.19.9: + resolution: {integrity: sha512-UOozV7Ntykvr5tSOlGCrqU3NBr3d8JqPes0QWN2WOXfvkWVGRajC+Ym0/Wj88fUgecUCLDdJPDF0Nna2UK3Qtg==} + 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"} + engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true @@ -5286,10 +5517,19 @@ packages: /@esbuild/win32-x64@0.18.20: resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + optional: true + + /@esbuild/win32-x64@0.19.9: + resolution: {integrity: sha512-oxoQgglOP7RH6iasDrhY+R/3cHrfwIDvRlT4CGChflq6twk8iENeVvMJjmvBb94Ik1Z+93iGO27err7w6l54GQ==} + engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true + dev: true optional: true /@eslint-community/eslint-utils@4.4.0(eslint@8.51.0): @@ -5331,29 +5571,29 @@ packages: /@fastify/busboy@2.0.0: resolution: {integrity: sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==} - engines: {node: ">=14"} + engines: {node: '>=14'} dev: false /@floating-ui/core@1.5.0: resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==} dependencies: - "@floating-ui/utils": 0.1.6 + '@floating-ui/utils': 0.1.6 dev: true /@floating-ui/dom@1.5.3: resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==} dependencies: - "@floating-ui/core": 1.5.0 - "@floating-ui/utils": 0.1.6 + '@floating-ui/core': 1.5.0 + '@floating-ui/utils': 0.1.6 dev: true /@floating-ui/react-dom@2.0.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==} peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" + react: '>=16.8.0' + react-dom: '>=16.8.0' dependencies: - "@floating-ui/dom": 1.5.3 + '@floating-ui/dom': 1.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -5364,7 +5604,7 @@ packages: /@google-cloud/paginator@3.0.7: resolution: {integrity: sha512-jJNutk0arIQhmpUUQJPJErsojqo834KcyB6X7a1mxuic8i1tKXxde8E69IZxNZawRIlZdIK2QY4WALvlK5MzYQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: arrify: 2.0.1 extend: 3.0.2 @@ -5372,21 +5612,21 @@ packages: /@google-cloud/projectify@3.0.0: resolution: {integrity: sha512-HRkZsNmjScY6Li8/kb70wjGlDDyLkVk3KvoEo9uIoxSjYLJasGiCch9+PqRVDOCGUFvEIqyogl+BeqILL4OJHA==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} dev: false /@google-cloud/promisify@3.0.1: resolution: {integrity: sha512-z1CjRjtQyBOYL+5Qr9DdYIfrdLBe746jRTYfaYU6MeXkqp7UfYs/jX16lFFVzZ7PGEJvqZNqYUEtb1mvDww4pA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: false /@google-cloud/storage@6.9.5: resolution: {integrity: sha512-fcLsDA8YKcGuqvhk0XTjJGVpG9dzs5Em8IcUjSjspYvERuHYqMy9CMChWapSjv3Lyw//exa3mv4nUxPlV93BnA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: - "@google-cloud/paginator": 3.0.7 - "@google-cloud/projectify": 3.0.0 - "@google-cloud/promisify": 3.0.1 + '@google-cloud/paginator': 3.0.7 + '@google-cloud/projectify': 3.0.0 + '@google-cloud/promisify': 3.0.1 abort-controller: 3.0.0 async-retry: 1.3.3 compressible: 2.0.18 @@ -5408,12 +5648,12 @@ packages: /@gwhitney/detect-indent@7.0.1: resolution: {integrity: sha512-7bQW+gkKa2kKZPeJf6+c6gFK9ARxQfn+FKy9ScTBppyKRWH2KzsmweXUoklqeEiHiNVWaeP5csIdsNq6w7QhzA==} - engines: {node: ">=12.20"} + engines: {node: '>=12.20'} dev: false /@headlessui/react@1.7.17(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 @@ -5426,16 +5666,16 @@ packages: /@heroicons/react@2.0.18(react@18.2.0): resolution: {integrity: sha512-7TyMjRrZZMBPa+/5Y8lN0iyvUU/01PeMGX2+RE7cQWpEUIcb4QotzUObFkJDejj/HUH4qjP/eQ0gzzKs2f+6Yw==} peerDependencies: - react: ">= 16" + react: '>= 16' dependencies: react: 18.2.0 dev: false /@humanwhocodes/config-array@0.11.11: resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} - engines: {node: ">=10.10.0"} + engines: {node: '>=10.10.0'} dependencies: - "@humanwhocodes/object-schema": 1.2.1 + '@humanwhocodes/object-schema': 1.2.1 debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: @@ -5443,14 +5683,14 @@ packages: /@humanwhocodes/module-importer@1.0.1: resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: ">=12.22"} + engines: {node: '>=12.22'} /@humanwhocodes/object-schema@1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} /@hutson/parse-repository-url@3.0.2: resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dev: true /@iarna/toml@2.2.5: @@ -5462,10 +5702,10 @@ packages: /@inquirer/checkbox@1.4.0: resolution: {integrity: sha512-7YcekwCvMTjrgjUursrH6AGZUSPw7gKPMvp0VhM3iq9mL46a7AeCfOTQTW0UPeiIfWmZK8wHyAD6wIhfDyLHpw==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/core": 5.1.0 - "@inquirer/type": 1.1.5 + '@inquirer/core': 5.1.0 + '@inquirer/type': 1.1.5 ansi-escapes: 4.3.2 chalk: 4.1.2 figures: 3.2.0 @@ -5473,21 +5713,21 @@ packages: /@inquirer/confirm@2.0.14: resolution: {integrity: sha512-Elzo5VX5lO1q9xy8CChDtDQNVLaucufdZBAM12qdfX1L3NQ+TypnZytGmWDXHBTpBTwuhEuwxNvUw7B0HCURkw==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/core": 5.1.0 - "@inquirer/type": 1.1.5 + '@inquirer/core': 5.1.0 + '@inquirer/type': 1.1.5 chalk: 4.1.2 dev: true /@inquirer/core@2.3.1: resolution: {integrity: sha512-faYAYnIfdEuns3jGKykaog5oUqFiEVbCx9nXGZfUhyEEpKcHt5bpJfZTb3eOBQKo8I/v4sJkZeBHmFlSZQuBCw==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/type": 1.1.5 - "@types/mute-stream": 0.0.1 - "@types/node": 20.8.3 - "@types/wrap-ansi": 3.0.0 + '@inquirer/type': 1.1.5 + '@types/mute-stream': 0.0.1 + '@types/node': 20.8.3 + '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 chalk: 4.1.2 cli-spinners: 2.9.1 @@ -5502,12 +5742,12 @@ packages: /@inquirer/core@5.1.0: resolution: {integrity: sha512-EVnific72BhMOMo8mElvrYhGFWJZ73X6j0I+fITIPTsdAz6Z9A3w3csKy+XaH87/5QAEIQHR7RSCVXvQpIqNdQ==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/type": 1.1.5 - "@types/mute-stream": 0.0.2 - "@types/node": 20.8.3 - "@types/wrap-ansi": 3.0.0 + '@inquirer/type': 1.1.5 + '@types/mute-stream': 0.0.2 + '@types/node': 20.8.3 + '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 chalk: 4.1.2 cli-spinners: 2.9.1 @@ -5522,73 +5762,73 @@ packages: /@inquirer/editor@1.2.12: resolution: {integrity: sha512-Y7zXQqcglPbbPkx0DPwx6HQFstJR5uex4hoQprjpdxSj8+Bf04+Og6mK/FNxoQbPvoNecegtmMGxDC+hVcMJZA==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/core": 5.1.0 - "@inquirer/type": 1.1.5 + '@inquirer/core': 5.1.0 + '@inquirer/type': 1.1.5 chalk: 4.1.2 external-editor: 3.1.0 dev: true /@inquirer/expand@1.1.13: resolution: {integrity: sha512-/+7CGCa7iyJIpli0NtukEAjSI7+wGgjYzsByLVSSAk3U696ZlCCP6iPtsWx6d1qfmaMmCzejcjylOj6OAeu4bA==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/core": 5.1.0 - "@inquirer/type": 1.1.5 + '@inquirer/core': 5.1.0 + '@inquirer/type': 1.1.5 chalk: 4.1.2 figures: 3.2.0 dev: true /@inquirer/input@1.2.13: resolution: {integrity: sha512-gALuvSpZRYfqygPjlYWodMZ4TXwALvw7Pk4tRFhE1oMN79rLVlg88Z/X6JCUh+uV2qLaxxgbeP+cgPWTvuWsCg==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/core": 5.1.0 - "@inquirer/type": 1.1.5 + '@inquirer/core': 5.1.0 + '@inquirer/type': 1.1.5 chalk: 4.1.2 dev: true /@inquirer/password@1.1.13: resolution: {integrity: sha512-6STGbL4Vm6ohE2yDBOSENCpCeywnvPux5psZVpvblGDop1oPiZkdsVI+NhsA0c4BE6YT0fNVK8Oqxf5Dgt5k7g==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/input": 1.2.13 - "@inquirer/type": 1.1.5 + '@inquirer/input': 1.2.13 + '@inquirer/type': 1.1.5 ansi-escapes: 4.3.2 chalk: 4.1.2 dev: true /@inquirer/prompts@2.3.1: resolution: {integrity: sha512-YQeBFzIE+6fcec5N/U2mSz+IcKEG4wtGDwF7MBLIDgITWzB3o723JpKJ1rxWqdCvTXkYE+gDXK/seSN6omo3DQ==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/checkbox": 1.4.0 - "@inquirer/confirm": 2.0.14 - "@inquirer/core": 2.3.1 - "@inquirer/editor": 1.2.12 - "@inquirer/expand": 1.1.13 - "@inquirer/input": 1.2.13 - "@inquirer/password": 1.1.13 - "@inquirer/rawlist": 1.2.13 - "@inquirer/select": 1.3.0 + '@inquirer/checkbox': 1.4.0 + '@inquirer/confirm': 2.0.14 + '@inquirer/core': 2.3.1 + '@inquirer/editor': 1.2.12 + '@inquirer/expand': 1.1.13 + '@inquirer/input': 1.2.13 + '@inquirer/password': 1.1.13 + '@inquirer/rawlist': 1.2.13 + '@inquirer/select': 1.3.0 dev: true /@inquirer/rawlist@1.2.13: resolution: {integrity: sha512-f+bASrCY2x2F90MrBYX7nUSetL6FsVLfskhGWEyVwj6VIXzc9T878z3v7KU3V10D1trWrCVHOdeqEcbnO68yhg==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/core": 5.1.0 - "@inquirer/type": 1.1.5 + '@inquirer/core': 5.1.0 + '@inquirer/type': 1.1.5 chalk: 4.1.2 dev: true /@inquirer/select@1.3.0: resolution: {integrity: sha512-3sL5odCDYI+i+piAFqFa5ULDUKEpc0U1zEY4Wm6gjP6nMAHWM8r1UzMlpQXCyHny91Tz+oeSLeKinAde0z6R7w==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dependencies: - "@inquirer/core": 5.1.0 - "@inquirer/type": 1.1.5 + '@inquirer/core': 5.1.0 + '@inquirer/type': 1.1.5 ansi-escapes: 4.3.2 chalk: 4.1.2 figures: 3.2.0 @@ -5596,7 +5836,7 @@ packages: /@inquirer/type@1.1.5: resolution: {integrity: sha512-wmwHvHozpPo4IZkkNtbYenem/0wnfI6hvOcGKmPEa0DwuaH5XUQzFqy6OpEpjEegZMhYIk8HDYITI16BPLtrRA==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} dev: true /@ioredis/commands@1.2.0: @@ -5605,7 +5845,7 @@ packages: /@isaacs/cliui@8.0.2: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: string-width: 5.1.2 string-width-cjs: /string-width@4.2.3 @@ -5620,7 +5860,7 @@ packages: /@istanbuljs/load-nyc-config@1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: camelcase: 5.3.1 find-up: 4.1.0 @@ -5631,15 +5871,15 @@ packages: /@istanbuljs/schema@0.1.3: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /@jest/console@27.5.1: resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -5650,8 +5890,8 @@ packages: resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 @@ -5667,12 +5907,12 @@ packages: node-notifier: optional: true dependencies: - "@jest/console": 27.5.1 - "@jest/reporters": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/console': 27.5.1 + '@jest/reporters': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -5712,12 +5952,12 @@ packages: node-notifier: optional: true dependencies: - "@jest/console": 29.7.0 - "@jest/reporters": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -5750,9 +5990,9 @@ packages: resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/fake-timers": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/fake-timers': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 jest-mock: 27.5.1 dev: true @@ -5760,9 +6000,9 @@ packages: resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/fake-timers": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 jest-mock: 29.7.0 dev: true @@ -5794,9 +6034,9 @@ packages: resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 - "@sinonjs/fake-timers": 8.1.0 - "@types/node": 18.18.4 + '@jest/types': 27.5.1 + '@sinonjs/fake-timers': 8.1.0 + '@types/node': 18.18.4 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -5806,9 +6046,9 @@ packages: resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 - "@sinonjs/fake-timers": 10.3.0 - "@types/node": 18.18.4 + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 18.18.4 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -5818,8 +6058,8 @@ packages: resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/environment": 27.5.1 - "@jest/types": 27.5.1 + '@jest/environment': 27.5.1 + '@jest/types': 27.5.1 expect: 27.5.1 dev: true @@ -5827,9 +6067,9 @@ packages: resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/environment": 29.7.0 - "@jest/expect": 29.7.0 - "@jest/types": 29.6.3 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 jest-mock: 29.7.0 transitivePeerDependencies: - supports-color @@ -5844,12 +6084,12 @@ packages: node-notifier: optional: true dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -5882,13 +6122,13 @@ packages: node-notifier: optional: true dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.19 - "@types/node": 18.18.4 + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.19 + '@types/node': 18.18.4 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -5914,14 +6154,14 @@ packages: resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - "@sinclair/typebox": 0.24.51 + '@sinclair/typebox': 0.24.51 dev: true /@jest/schemas@29.6.3: resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@sinclair/typebox": 0.27.8 + '@sinclair/typebox': 0.27.8 dev: true /@jest/source-map@27.5.1: @@ -5937,7 +6177,7 @@ packages: resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jridgewell/trace-mapping": 0.3.19 + '@jridgewell/trace-mapping': 0.3.19 callsites: 3.1.0 graceful-fs: 4.2.11 dev: true @@ -5946,9 +6186,9 @@ packages: resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/console": 27.5.1 - "@jest/types": 27.5.1 - "@types/istanbul-lib-coverage": 2.0.4 + '@jest/console': 27.5.1 + '@jest/types': 27.5.1 + '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.2 dev: true @@ -5956,9 +6196,9 @@ packages: resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/console": 29.7.0 - "@jest/types": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.4 + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.2 dev: true @@ -5966,7 +6206,7 @@ packages: resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/test-result": 27.5.1 + '@jest/test-result': 27.5.1 graceful-fs: 4.2.11 jest-haste-map: 27.5.1 jest-runtime: 27.5.1 @@ -5978,7 +6218,7 @@ packages: resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/test-result": 29.7.0 + '@jest/test-result': 29.7.0 graceful-fs: 4.2.11 jest-haste-map: 29.7.0 slash: 3.0.0 @@ -5988,8 +6228,8 @@ packages: resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@babel/core": 7.23.0 - "@jest/types": 27.5.1 + '@babel/core': 7.23.0 + '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 1.9.0 @@ -6011,9 +6251,9 @@ packages: resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/core": 7.23.0 - "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.19 + '@babel/core': 7.23.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.19 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -6034,10 +6274,10 @@ packages: resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@types/istanbul-lib-coverage": 2.0.4 - "@types/istanbul-reports": 3.0.2 - "@types/node": 18.18.4 - "@types/yargs": 16.0.6 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.2 + '@types/node': 18.18.4 + '@types/yargs': 16.0.6 chalk: 4.1.2 dev: true @@ -6045,11 +6285,11 @@ packages: resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - "@jest/schemas": 28.1.3 - "@types/istanbul-lib-coverage": 2.0.4 - "@types/istanbul-reports": 3.0.2 - "@types/node": 18.18.4 - "@types/yargs": 17.0.28 + '@jest/schemas': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.2 + '@types/node': 18.18.4 + '@types/yargs': 17.0.28 chalk: 4.1.2 dev: true @@ -6057,18 +6297,18 @@ packages: resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/schemas": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.4 - "@types/istanbul-reports": 3.0.2 - "@types/node": 18.18.4 - "@types/yargs": 17.0.28 + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.2 + '@types/node': 18.18.4 + '@types/yargs': 17.0.28 chalk: 4.1.2 dev: true /@joshwooding/vite-plugin-react-docgen-typescript@0.2.1(typescript@5.2.2)(vite@4.4.11): resolution: {integrity: sha512-ou4ZJSXMMWHqGS4g8uNRbC5TiTWxAgQZiVucoUrOCWuPrTbkpJbmVyIi9jU72SBry7gQtuMEDp4YR8EEXAg7VQ==} peerDependencies: - typescript: ">= 4.3.x" + typescript: '>= 4.3.x' vite: ^3.0.0 || ^4.0.0 peerDependenciesMeta: typescript: @@ -6084,25 +6324,25 @@ packages: /@jridgewell/gen-mapping@0.3.3: resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: ">=6.0.0"} + engines: {node: '>=6.0.0'} dependencies: - "@jridgewell/set-array": 1.1.2 - "@jridgewell/sourcemap-codec": 1.4.15 - "@jridgewell/trace-mapping": 0.3.19 + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.19 /@jridgewell/resolve-uri@3.1.1: resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: ">=6.0.0"} + engines: {node: '>=6.0.0'} /@jridgewell/set-array@1.1.2: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: ">=6.0.0"} + engines: {node: '>=6.0.0'} /@jridgewell/source-map@0.3.5: resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} dependencies: - "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.19 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.19 dev: true /@jridgewell/sourcemap-codec@1.4.15: @@ -6111,26 +6351,26 @@ packages: /@jridgewell/trace-mapping@0.3.19: resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} dependencies: - "@jridgewell/resolve-uri": 3.1.1 - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 /@jridgewell/trace-mapping@0.3.20: resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} dependencies: - "@jridgewell/resolve-uri": 3.1.1 - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 dev: true /@jridgewell/trace-mapping@0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: - "@jridgewell/resolve-uri": 3.1.1 - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 dev: true /@jsii/check-node@1.84.0: resolution: {integrity: sha512-gLa+N1WKksCjTXaK8VMjTbEXf58QlrDOovoTOEzhGNgTFyAUX8woIRAUmk+X70ssDzBvgh3E98mIsDKoWOp6zA==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} dependencies: chalk: 4.1.2 semver: 7.5.4 @@ -6138,7 +6378,7 @@ packages: /@jsii/check-node@1.88.0: resolution: {integrity: sha512-AveFyqkJIb8qZvGk5nZal/8mEJB6lWhwqvAQLodHmqE3WzpmZD5+h+aspBVt0El5cEFRJ1k1mrQqhAnJCVpvxg==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} dependencies: chalk: 4.1.2 semver: 7.5.4 @@ -6146,14 +6386,14 @@ packages: /@jsii/check-node@1.90.0: resolution: {integrity: sha512-bHrSs/X0mX6rVgBySk6JB/VYiqIV0HkznthZ4lpLabrgTEistwBYXxTf1kgNzfmUbIt0EeETwxdLAY0sqHE/+A==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} dependencies: chalk: 4.1.2 semver: 7.5.4 /@jsii/check-node@1.91.0: resolution: {integrity: sha512-K9UFkRe4uJNVp1O2o4OBM/3usba6Vw3XF1Mq3TVBAYl1EzpAiA62DojGp30+3zwFlb1lkavVj1hKlCrIWIuJhw==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} dependencies: chalk: 4.1.2 semver: 7.5.4 @@ -6161,13 +6401,13 @@ packages: /@jsii/spec@1.90.0: resolution: {integrity: sha512-Uajku7MWhkfxd8Ux8+8lOzT6Oa/Td8HzmBYZb9kd9v04qEGBQH/tQkUr80Md7dvq6SbRUKevDenYNQ8qiHHxpg==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} dependencies: ajv: 8.12.0 /@jsii/spec@1.91.0: resolution: {integrity: sha512-Ir01bk5CwIFAApRJjRC+JG/f9db5dACEYFSxsHyvXRMu+J/LIANdwD4OPSelWrhbRiQdY6U16BKsRO63uaNRqg==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} dependencies: ajv: 8.12.0 dev: true @@ -6178,23 +6418,23 @@ packages: /@lukeed/csprng@1.1.0: resolution: {integrity: sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: false /@lukeed/uuid@2.0.1: resolution: {integrity: sha512-qC72D4+CDdjGqJvkFMMEAtancHUQ7/d/tAiHf64z8MopFDmcrtbcJuerDtFceuAfQJ2pDSfCKCtbqoGBNnwg0w==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: - "@lukeed/csprng": 1.1.0 + '@lukeed/csprng': 1.1.0 dev: false /@mdx-js/react@2.3.0(react@18.2.0): resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} peerDependencies: - react: ">=16" + react: '>=16' dependencies: - "@types/mdx": 2.0.8 - "@types/react": 18.2.25 + '@types/mdx': 2.0.8 + '@types/react': 18.2.25 react: 18.2.0 dev: true @@ -6208,20 +6448,20 @@ packages: /@nodelib/fs.scandir@2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dependencies: - "@nodelib/fs.stat": 2.0.5 + '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 /@nodelib/fs.stat@2.0.5: resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} /@nodelib/fs.walk@1.2.8: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dependencies: - "@nodelib/fs.scandir": 2.1.5 + '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 /@npm/types@1.0.2: @@ -6246,16 +6486,16 @@ packages: engines: {node: ^16.14.0 || >=18.0.0} hasBin: true dependencies: - "@isaacs/string-locale-compare": 1.1.0 - "@npmcli/fs": 3.1.0 - "@npmcli/installed-package-contents": 2.0.2 - "@npmcli/map-workspaces": 3.0.4 - "@npmcli/metavuln-calculator": 7.0.0 - "@npmcli/name-from-folder": 2.0.0 - "@npmcli/node-gyp": 3.0.0 - "@npmcli/package-json": 5.0.0 - "@npmcli/query": 3.0.1 - "@npmcli/run-script": 7.0.1 + '@isaacs/string-locale-compare': 1.1.0 + '@npmcli/fs': 3.1.0 + '@npmcli/installed-package-contents': 2.0.2 + '@npmcli/map-workspaces': 3.0.4 + '@npmcli/metavuln-calculator': 7.0.0 + '@npmcli/name-from-folder': 2.0.0 + '@npmcli/node-gyp': 3.0.0 + '@npmcli/package-json': 5.0.0 + '@npmcli/query': 3.0.1 + '@npmcli/run-script': 7.0.1 bin-links: 4.0.2 cacache: 18.0.0 common-ancestor-path: 1.0.1 @@ -6299,7 +6539,7 @@ packages: resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - "@npmcli/promise-spawn": 6.0.2 + '@npmcli/promise-spawn': 6.0.2 lru-cache: 7.18.3 npm-pick-manifest: 8.0.2 proc-log: 3.0.0 @@ -6315,7 +6555,7 @@ packages: resolution: {integrity: sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@npmcli/promise-spawn": 7.0.0 + '@npmcli/promise-spawn': 7.0.0 lru-cache: 10.0.1 npm-pick-manifest: 9.0.0 proc-log: 3.0.0 @@ -6339,7 +6579,7 @@ packages: resolution: {integrity: sha512-Z0TbvXkRbacjFFLpVpV0e2mheCh+WzQpcqL+4xp49uNJOxOnIAPZyXtUxZ5Qn3QBTGKA11Exjd9a5411rBrhDg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - "@npmcli/name-from-folder": 2.0.0 + '@npmcli/name-from-folder': 2.0.0 glob: 10.3.10 minimatch: 9.0.3 read-package-json-fast: 3.0.2 @@ -6371,7 +6611,7 @@ packages: resolution: {integrity: sha512-OI2zdYBLhQ7kpNPaJxiflofYIpkNLi+lnGdzqUOfRmCF3r2l1nadcjtCYMJKv/Utm/ZtlffaUuTiAktPHbc17g==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@npmcli/git": 5.0.3 + '@npmcli/git': 5.0.3 glob: 10.3.10 hosted-git-info: 7.0.1 json-parse-even-better-errors: 3.0.0 @@ -6407,8 +6647,8 @@ packages: resolution: {integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - "@npmcli/node-gyp": 3.0.0 - "@npmcli/promise-spawn": 6.0.2 + '@npmcli/node-gyp': 3.0.0 + '@npmcli/promise-spawn': 6.0.2 node-gyp: 9.4.0 read-package-json-fast: 3.0.2 which: 3.0.1 @@ -6420,8 +6660,8 @@ packages: resolution: {integrity: sha512-Od/JMrgkjZ8alyBE0IzeqZDiF1jgMez9Gkc/OYrCkHHiXNwM0wc6s7+h+xM7kYDZkS0tAoOLr9VvygyE5+2F7g==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@npmcli/node-gyp": 3.0.0 - "@npmcli/promise-spawn": 7.0.0 + '@npmcli/node-gyp': 3.0.0 + '@npmcli/promise-spawn': 7.0.0 node-gyp: 9.4.0 read-package-json-fast: 3.0.2 which: 4.0.0 @@ -6431,26 +6671,26 @@ packages: /@octokit/app@14.0.1: resolution: {integrity: sha512-4opdXcWBVhzd6FOxlaxDKXXqi9Vz2hsDSWQGNo49HbYFAX11UqMpksMjEdfvHy0x19Pse8Nvn+R6inNb/V398w==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/auth-app": 6.0.1 - "@octokit/auth-unauthenticated": 5.0.1 - "@octokit/core": 5.0.1 - "@octokit/oauth-app": 6.0.0 - "@octokit/plugin-paginate-rest": 9.0.0(@octokit/core@5.0.1) - "@octokit/types": 12.0.0 - "@octokit/webhooks": 12.0.3 + '@octokit/auth-app': 6.0.1 + '@octokit/auth-unauthenticated': 5.0.1 + '@octokit/core': 5.0.1 + '@octokit/oauth-app': 6.0.0 + '@octokit/plugin-paginate-rest': 9.0.0(@octokit/core@5.0.1) + '@octokit/types': 12.0.0 + '@octokit/webhooks': 12.0.3 dev: true /@octokit/auth-app@6.0.1: resolution: {integrity: sha512-tjCD4nzQNZgmLH62+PSnTF6eGerisFgV4v6euhqJik6yWV96e1ZiiGj+NXIqbgnpjLmtnBqVUrNyGKu3DoGEGA==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/auth-oauth-app": 7.0.1 - "@octokit/auth-oauth-user": 4.0.1 - "@octokit/request": 8.1.3 - "@octokit/request-error": 5.0.1 - "@octokit/types": 12.0.0 + '@octokit/auth-oauth-app': 7.0.1 + '@octokit/auth-oauth-user': 4.0.1 + '@octokit/request': 8.1.3 + '@octokit/request-error': 5.0.1 + '@octokit/types': 12.0.0 deprecation: 2.3.1 lru-cache: 10.0.1 universal-github-app-jwt: 1.1.1 @@ -6459,35 +6699,35 @@ packages: /@octokit/auth-oauth-app@7.0.1: resolution: {integrity: sha512-RE0KK0DCjCHXHlQBoubwlLijXEKfhMhKm9gO56xYvFmP1QTMb+vvwRPmQLLx0V+5AvV9N9I3lr1WyTzwL3rMDg==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/auth-oauth-device": 6.0.1 - "@octokit/auth-oauth-user": 4.0.1 - "@octokit/request": 8.1.3 - "@octokit/types": 12.0.0 - "@types/btoa-lite": 1.0.0 + '@octokit/auth-oauth-device': 6.0.1 + '@octokit/auth-oauth-user': 4.0.1 + '@octokit/request': 8.1.3 + '@octokit/types': 12.0.0 + '@types/btoa-lite': 1.0.0 btoa-lite: 1.0.0 universal-user-agent: 6.0.0 dev: true /@octokit/auth-oauth-device@6.0.1: resolution: {integrity: sha512-yxU0rkL65QkjbqQedgVx3gmW7YM5fF+r5uaSj9tM/cQGVqloXcqP2xK90eTyYvl29arFVCW8Vz4H/t47mL0ELw==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/oauth-methods": 4.0.0 - "@octokit/request": 8.1.3 - "@octokit/types": 12.0.0 + '@octokit/oauth-methods': 4.0.0 + '@octokit/request': 8.1.3 + '@octokit/types': 12.0.0 universal-user-agent: 6.0.0 dev: true /@octokit/auth-oauth-user@4.0.1: resolution: {integrity: sha512-N94wWW09d0hleCnrO5wt5MxekatqEJ4zf+1vSe8MKMrhZ7gAXKFOKrDEZW2INltvBWJCyDUELgGRv8gfErH1Iw==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/auth-oauth-device": 6.0.1 - "@octokit/oauth-methods": 4.0.0 - "@octokit/request": 8.1.3 - "@octokit/types": 12.0.0 + '@octokit/auth-oauth-device': 6.0.1 + '@octokit/oauth-methods': 4.0.0 + '@octokit/request': 8.1.3 + '@octokit/types': 12.0.0 btoa-lite: 1.0.0 universal-user-agent: 6.0.0 dev: true @@ -6496,32 +6736,32 @@ packages: resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} requiresBuild: true dependencies: - "@octokit/types": 6.41.0 + '@octokit/types': 6.41.0 dev: false optional: true /@octokit/auth-token@4.0.0: resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dev: true /@octokit/auth-unauthenticated@5.0.1: resolution: {integrity: sha512-oxeWzmBFxWd+XolxKTc4zr+h3mt+yofn4r7OfoIkR/Cj/o70eEGmPsFbueyJE2iBAGpjgTnEOKM3pnuEGVmiqg==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/request-error": 5.0.1 - "@octokit/types": 12.0.0 + '@octokit/request-error': 5.0.1 + '@octokit/types': 12.0.0 dev: true /@octokit/core@3.6.0: resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==} requiresBuild: true dependencies: - "@octokit/auth-token": 2.5.0 - "@octokit/graphql": 4.8.0 - "@octokit/request": 5.6.3 - "@octokit/request-error": 2.1.0 - "@octokit/types": 6.41.0 + '@octokit/auth-token': 2.5.0 + '@octokit/graphql': 4.8.0 + '@octokit/request': 5.6.3 + '@octokit/request-error': 2.1.0 + '@octokit/types': 6.41.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.0 transitivePeerDependencies: @@ -6531,13 +6771,13 @@ packages: /@octokit/core@5.0.1: resolution: {integrity: sha512-lyeeeZyESFo+ffI801SaBKmCfsvarO+dgV8/0gD8u1d87clbEdWsP5yC+dSj3zLhb2eIf5SJrn6vDz9AheETHw==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/auth-token": 4.0.0 - "@octokit/graphql": 7.0.2 - "@octokit/request": 8.1.3 - "@octokit/request-error": 5.0.1 - "@octokit/types": 12.0.0 + '@octokit/auth-token': 4.0.0 + '@octokit/graphql': 7.0.2 + '@octokit/request': 8.1.3 + '@octokit/request-error': 5.0.1 + '@octokit/types': 12.0.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.0 dev: true @@ -6546,7 +6786,7 @@ packages: resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} requiresBuild: true dependencies: - "@octokit/types": 6.41.0 + '@octokit/types': 6.41.0 is-plain-object: 5.0.0 universal-user-agent: 6.0.0 dev: false @@ -6554,9 +6794,9 @@ packages: /@octokit/endpoint@9.0.1: resolution: {integrity: sha512-hRlOKAovtINHQPYHZlfyFwaM8OyetxeoC81lAkBy34uLb8exrZB50SQdeW3EROqiY9G9yxQTpp5OHTV54QD+vA==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/types": 12.0.0 + '@octokit/types': 12.0.0 is-plain-object: 5.0.0 universal-user-agent: 6.0.0 dev: true @@ -6565,8 +6805,8 @@ packages: resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} requiresBuild: true dependencies: - "@octokit/request": 5.6.3 - "@octokit/types": 6.41.0 + '@octokit/request': 5.6.3 + '@octokit/types': 6.41.0 universal-user-agent: 6.0.0 transitivePeerDependencies: - encoding @@ -6575,40 +6815,40 @@ packages: /@octokit/graphql@7.0.2: resolution: {integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/request": 8.1.3 - "@octokit/types": 12.0.0 + '@octokit/request': 8.1.3 + '@octokit/types': 12.0.0 universal-user-agent: 6.0.0 dev: true /@octokit/oauth-app@6.0.0: resolution: {integrity: sha512-bNMkS+vJ6oz2hCyraT9ZfTpAQ8dZNqJJQVNaKjPLx4ue5RZiFdU1YWXguOPR8AaSHS+lKe+lR3abn2siGd+zow==} - engines: {node: ">= 18"} - dependencies: - "@octokit/auth-oauth-app": 7.0.1 - "@octokit/auth-oauth-user": 4.0.1 - "@octokit/auth-unauthenticated": 5.0.1 - "@octokit/core": 5.0.1 - "@octokit/oauth-authorization-url": 6.0.2 - "@octokit/oauth-methods": 4.0.0 - "@types/aws-lambda": 8.10.124 + engines: {node: '>= 18'} + dependencies: + '@octokit/auth-oauth-app': 7.0.1 + '@octokit/auth-oauth-user': 4.0.1 + '@octokit/auth-unauthenticated': 5.0.1 + '@octokit/core': 5.0.1 + '@octokit/oauth-authorization-url': 6.0.2 + '@octokit/oauth-methods': 4.0.0 + '@types/aws-lambda': 8.10.124 universal-user-agent: 6.0.0 dev: true /@octokit/oauth-authorization-url@6.0.2: resolution: {integrity: sha512-CdoJukjXXxqLNK4y/VOiVzQVjibqoj/xHgInekviUJV73y/BSIcwvJ/4aNHPBPKcPWFnd4/lO9uqRV65jXhcLA==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dev: true /@octokit/oauth-methods@4.0.0: resolution: {integrity: sha512-dqy7BZLfLbi3/8X8xPKUKZclMEK9vN3fK5WF3ortRvtplQTszFvdAGbTo71gGLO+4ZxspNiLjnqdd64Chklf7w==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/oauth-authorization-url": 6.0.2 - "@octokit/request": 8.1.3 - "@octokit/request-error": 5.0.1 - "@octokit/types": 11.1.0 + '@octokit/oauth-authorization-url': 6.0.2 + '@octokit/request': 8.1.3 + '@octokit/request-error': 5.0.1 + '@octokit/types': 11.1.0 btoa-lite: 1.0.0 dev: true @@ -6628,86 +6868,86 @@ packages: /@octokit/plugin-paginate-graphql@4.0.0(@octokit/core@5.0.1): resolution: {integrity: sha512-7HcYW5tP7/Z6AETAPU14gp5H5KmCPT3hmJrS/5tO7HIgbwenYmgw4OY9Ma54FDySuxMwD+wsJlxtuGWwuZuItA==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} peerDependencies: - "@octokit/core": ">=5" + '@octokit/core': '>=5' dependencies: - "@octokit/core": 5.0.1 + '@octokit/core': 5.0.1 dev: true /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0): resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==} requiresBuild: true peerDependencies: - "@octokit/core": ">=2" + '@octokit/core': '>=2' dependencies: - "@octokit/core": 3.6.0 - "@octokit/types": 6.41.0 + '@octokit/core': 3.6.0 + '@octokit/types': 6.41.0 dev: false optional: true /@octokit/plugin-paginate-rest@9.0.0(@octokit/core@5.0.1): resolution: {integrity: sha512-oIJzCpttmBTlEhBmRvb+b9rlnGpmFgDtZ0bB6nq39qIod6A5DP+7RkVLMOixIgRCYSHDTeayWqmiJ2SZ6xgfdw==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} peerDependencies: - "@octokit/core": ">=5" + '@octokit/core': '>=5' dependencies: - "@octokit/core": 5.0.1 - "@octokit/types": 12.0.0 + '@octokit/core': 5.0.1 + '@octokit/types': 12.0.0 dev: true /@octokit/plugin-request-log@1.0.4(@octokit/core@3.6.0): resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} requiresBuild: true peerDependencies: - "@octokit/core": ">=3" + '@octokit/core': '>=3' dependencies: - "@octokit/core": 3.6.0 + '@octokit/core': 3.6.0 dev: false optional: true /@octokit/plugin-rest-endpoint-methods@10.0.0(@octokit/core@5.0.1): resolution: {integrity: sha512-16VkwE2v6rXU+/gBsYC62M8lKWOphY5Lg4wpjYnVE9Zbu0J6IwiT5kILoj1YOB53XLmcJR+Nqp8DmifOPY4H3g==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} peerDependencies: - "@octokit/core": ">=5" + '@octokit/core': '>=5' dependencies: - "@octokit/core": 5.0.1 - "@octokit/types": 12.0.0 + '@octokit/core': 5.0.1 + '@octokit/types': 12.0.0 dev: true /@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0): resolution: {integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==} requiresBuild: true peerDependencies: - "@octokit/core": ">=3" + '@octokit/core': '>=3' dependencies: - "@octokit/core": 3.6.0 - "@octokit/types": 6.41.0 + '@octokit/core': 3.6.0 + '@octokit/types': 6.41.0 deprecation: 2.3.1 dev: false optional: true /@octokit/plugin-retry@6.0.1(@octokit/core@5.0.1): resolution: {integrity: sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} peerDependencies: - "@octokit/core": ">=5" + '@octokit/core': '>=5' dependencies: - "@octokit/core": 5.0.1 - "@octokit/request-error": 5.0.1 - "@octokit/types": 12.0.0 + '@octokit/core': 5.0.1 + '@octokit/request-error': 5.0.1 + '@octokit/types': 12.0.0 bottleneck: 2.19.5 dev: true /@octokit/plugin-throttling@8.0.0(@octokit/core@5.0.1): resolution: {integrity: sha512-OkMbHYUidj81q92YRkPzWmwXkEtsI3KOcSkNm763aqUOh9IEplyX05XjKAdZFANAvaYH0Q4JBZwu4h2VnPVXZA==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} peerDependencies: - "@octokit/core": ^5.0.0 + '@octokit/core': ^5.0.0 dependencies: - "@octokit/core": 5.0.1 - "@octokit/types": 12.0.0 + '@octokit/core': 5.0.1 + '@octokit/types': 12.0.0 bottleneck: 2.19.5 dev: true @@ -6715,7 +6955,7 @@ packages: resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} requiresBuild: true dependencies: - "@octokit/types": 6.41.0 + '@octokit/types': 6.41.0 deprecation: 2.3.1 once: 1.4.0 dev: false @@ -6723,9 +6963,9 @@ packages: /@octokit/request-error@5.0.1: resolution: {integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/types": 12.0.0 + '@octokit/types': 12.0.0 deprecation: 2.3.1 once: 1.4.0 dev: true @@ -6734,9 +6974,9 @@ packages: resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==} requiresBuild: true dependencies: - "@octokit/endpoint": 6.0.12 - "@octokit/request-error": 2.1.0 - "@octokit/types": 6.41.0 + '@octokit/endpoint': 6.0.12 + '@octokit/request-error': 2.1.0 + '@octokit/types': 6.41.0 is-plain-object: 5.0.0 node-fetch: 2.7.0 universal-user-agent: 6.0.0 @@ -6747,11 +6987,11 @@ packages: /@octokit/request@8.1.3: resolution: {integrity: sha512-iUvXP4QmysS8kyE/a4AGwR0A+tHDVxgW6TmPd2ci8/Xc8KjlBtTKSDpZlUT5Y4S4Nu+eM8LvbOYjVAp/sz3Gpg==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/endpoint": 9.0.1 - "@octokit/request-error": 5.0.1 - "@octokit/types": 12.0.0 + '@octokit/endpoint': 9.0.1 + '@octokit/request-error': 5.0.1 + '@octokit/types': 12.0.0 is-plain-object: 5.0.0 universal-user-agent: 6.0.0 dev: true @@ -6760,10 +7000,10 @@ packages: resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==} requiresBuild: true dependencies: - "@octokit/core": 3.6.0 - "@octokit/plugin-paginate-rest": 2.21.3(@octokit/core@3.6.0) - "@octokit/plugin-request-log": 1.0.4(@octokit/core@3.6.0) - "@octokit/plugin-rest-endpoint-methods": 5.16.2(@octokit/core@3.6.0) + '@octokit/core': 3.6.0 + '@octokit/plugin-paginate-rest': 2.21.3(@octokit/core@3.6.0) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@3.6.0) + '@octokit/plugin-rest-endpoint-methods': 5.16.2(@octokit/core@3.6.0) transitivePeerDependencies: - encoding dev: false @@ -6772,26 +7012,26 @@ packages: /@octokit/types@11.1.0: resolution: {integrity: sha512-Fz0+7GyLm/bHt8fwEqgvRBWwIV1S6wRRyq+V6exRKLVWaKGsuy6H9QFYeBVDV7rK6fO3XwHgQOPxv+cLj2zpXQ==} dependencies: - "@octokit/openapi-types": 18.1.1 + '@octokit/openapi-types': 18.1.1 dev: true /@octokit/types@12.0.0: resolution: {integrity: sha512-EzD434aHTFifGudYAygnFlS1Tl6KhbTynEWELQXIbTY8Msvb5nEqTZIm7sbPEt4mQYLZwu3zPKVdeIrw0g7ovg==} dependencies: - "@octokit/openapi-types": 19.0.0 + '@octokit/openapi-types': 19.0.0 dev: true /@octokit/types@6.41.0: resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} requiresBuild: true dependencies: - "@octokit/openapi-types": 12.11.0 + '@octokit/openapi-types': 12.11.0 dev: false optional: true /@octokit/webhooks-methods@4.0.0: resolution: {integrity: sha512-M8mwmTXp+VeolOS/kfRvsDdW+IO0qJ8kYodM/sAysk093q6ApgmBXwK1ZlUvAwXVrp/YVHp6aArj4auAxUAOFw==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dev: true /@octokit/webhooks-types@7.1.0: @@ -6800,53 +7040,53 @@ packages: /@octokit/webhooks@12.0.3: resolution: {integrity: sha512-8iG+/yza7hwz1RrQ7i7uGpK2/tuItZxZq1aTmeg2TNp2xTUB8F8lZF/FcZvyyAxT8tpDMF74TjFGCDACkf1kAQ==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/request-error": 5.0.1 - "@octokit/webhooks-methods": 4.0.0 - "@octokit/webhooks-types": 7.1.0 + '@octokit/request-error': 5.0.1 + '@octokit/webhooks-methods': 4.0.0 + '@octokit/webhooks-types': 7.1.0 aggregate-error: 3.1.0 dev: true /@oozcitak/dom@1.15.10: resolution: {integrity: sha512-0JT29/LaxVgRcGKvHmSrUTEvZ8BXvZhGl2LASRUgHqDTC1M5g1pLmVv56IYNyt3bG2CUjDkc67wnyZC14pbQrQ==} - engines: {node: ">=8.0"} + engines: {node: '>=8.0'} dependencies: - "@oozcitak/infra": 1.0.8 - "@oozcitak/url": 1.0.4 - "@oozcitak/util": 8.3.8 + '@oozcitak/infra': 1.0.8 + '@oozcitak/url': 1.0.4 + '@oozcitak/util': 8.3.8 /@oozcitak/infra@1.0.8: resolution: {integrity: sha512-JRAUc9VR6IGHOL7OGF+yrvs0LO8SlqGnPAMqyzOuFZPSZSXI7Xf2O9+awQPSMXgIWGtgUf/dA6Hs6X6ySEaWTg==} - engines: {node: ">=6.0"} + engines: {node: '>=6.0'} dependencies: - "@oozcitak/util": 8.3.8 + '@oozcitak/util': 8.3.8 /@oozcitak/url@1.0.4: resolution: {integrity: sha512-kDcD8y+y3FCSOvnBI6HJgl00viO/nGbQoCINmQ0h98OhnGITrWR3bOGfwYCthgcrV8AnTJz8MzslTQbC3SOAmw==} - engines: {node: ">=8.0"} + engines: {node: '>=8.0'} dependencies: - "@oozcitak/infra": 1.0.8 - "@oozcitak/util": 8.3.8 + '@oozcitak/infra': 1.0.8 + '@oozcitak/util': 8.3.8 /@oozcitak/util@8.3.8: resolution: {integrity: sha512-T8TbSnGsxo6TDBJx/Sgv/BlVJL3tshxZP7Aq5R1mSnM5OcHY2dQaxLMu2+E8u3gN0MLOzdjurqN4ZRVuzQycOQ==} - engines: {node: ">=8.0"} + engines: {node: '>=8.0'} /@opentelemetry/api@1.6.0: resolution: {integrity: sha512-OWlrQAnWn9577PhVgqjUvMr1pg57Bc4jv0iL4w0PRuOSRvq67rvHW9Ie/dZVMvCzhSCB+UxhcY/PmCmFj33Q+g==} - engines: {node: ">=8.0.0"} + engines: {node: '>=8.0.0'} dev: false /@pkgjs/parseargs@0.11.0: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: ">=14"} + engines: {node: '>=14'} requiresBuild: true optional: true /@playwright/test@1.38.1: resolution: {integrity: sha512-NqRp8XMwj3AK+zKLbZShl0r/9wKgzqI/527bkptKXomtuo+dOjU9NdMASQ8DNC9z9zLOMbG53T4eihYr3XR+BQ==} - engines: {node: ">=16"} + engines: {node: '>=16'} hasBin: true dependencies: playwright: 1.38.1 @@ -6854,48 +7094,48 @@ packages: /@pnpm/cli-meta@5.0.3: resolution: {integrity: sha512-Pbx63/wc9LkDZ4QKvKFrgSI/c0LEOWUbXHi+R8vs9npfM5zeD4IdqSrDArpEzX5NQIs+8NLItSTeEOKX0C2EEQ==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/types": 9.3.0 + '@pnpm/types': 9.3.0 load-json-file: 6.2.0 dev: false /@pnpm/cli-utils@2.0.23(@pnpm/logger@5.0.0): resolution: {integrity: sha512-Om1G0haOQFXopTihC6uakz9OJySaHXoVjUMLrkbCSHz6cATfL0URx7Ym8RTgs11yWta7jtdhbPepsAsr26UCvg==} - engines: {node: ">=16.14"} - peerDependencies: - "@pnpm/logger": ^5.0.0 - dependencies: - "@pnpm/cli-meta": 5.0.3 - "@pnpm/config": 19.2.1(@pnpm/logger@5.0.0) - "@pnpm/default-reporter": 12.4.2(@pnpm/logger@5.0.0) - "@pnpm/error": 5.0.2 - "@pnpm/logger": 5.0.0 - "@pnpm/manifest-utils": 5.0.4(@pnpm/logger@5.0.0) - "@pnpm/package-is-installable": 8.0.5(@pnpm/logger@5.0.0) - "@pnpm/read-project-manifest": 5.0.7 - "@pnpm/types": 9.3.0 + engines: {node: '>=16.14'} + peerDependencies: + '@pnpm/logger': ^5.0.0 + dependencies: + '@pnpm/cli-meta': 5.0.3 + '@pnpm/config': 19.2.1(@pnpm/logger@5.0.0) + '@pnpm/default-reporter': 12.4.2(@pnpm/logger@5.0.0) + '@pnpm/error': 5.0.2 + '@pnpm/logger': 5.0.0 + '@pnpm/manifest-utils': 5.0.4(@pnpm/logger@5.0.0) + '@pnpm/package-is-installable': 8.0.5(@pnpm/logger@5.0.0) + '@pnpm/read-project-manifest': 5.0.7 + '@pnpm/types': 9.3.0 chalk: 4.1.2 load-json-file: 6.2.0 dev: false /@pnpm/config.env-replace@1.1.0: resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} - engines: {node: ">=12.22.0"} + engines: {node: '>=12.22.0'} /@pnpm/config@19.2.1(@pnpm/logger@5.0.0): resolution: {integrity: sha512-FISlC9B9bejhAXNINg5yUFQ1MlmvLLPYdVd1EJAzyDavIAiNdFj4tiF6W5BdOx36S7EbWX3gDsdFYhfgqqQliw==} - engines: {node: ">=16.14"} - dependencies: - "@pnpm/config.env-replace": 1.1.0 - "@pnpm/constants": 7.1.1 - "@pnpm/error": 5.0.2 - "@pnpm/git-utils": 1.0.0 - "@pnpm/matcher": 5.0.0 - "@pnpm/npm-conf": 2.2.2 - "@pnpm/pnpmfile": 5.0.14(@pnpm/logger@5.0.0) - "@pnpm/read-project-manifest": 5.0.7 - "@pnpm/types": 9.3.0 + engines: {node: '>=16.14'} + dependencies: + '@pnpm/config.env-replace': 1.1.0 + '@pnpm/constants': 7.1.1 + '@pnpm/error': 5.0.2 + '@pnpm/git-utils': 1.0.0 + '@pnpm/matcher': 5.0.0 + '@pnpm/npm-conf': 2.2.2 + '@pnpm/pnpmfile': 5.0.14(@pnpm/logger@5.0.0) + '@pnpm/read-project-manifest': 5.0.7 + '@pnpm/types': 9.3.0 better-path-resolve: 1.0.0 camelcase: 6.3.0 camelcase-keys: 6.2.2 @@ -6910,59 +7150,59 @@ packages: realpath-missing: 1.1.0 which: 3.0.1 transitivePeerDependencies: - - "@pnpm/logger" + - '@pnpm/logger' dev: false /@pnpm/constants@7.1.1: resolution: {integrity: sha512-31pZqMtjwV+Vaq7MaPrT1EoDFSYwye3dp6BiHIGRJmVThCQwySRKM7hCvqqI94epNkqFAAYoWrNynWoRYosGdw==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dev: false /@pnpm/core-loggers@9.0.3(@pnpm/logger@5.0.0): resolution: {integrity: sha512-qjy8tkqfN3FQtLSh4qN3Qvll+T1lav1K6hgdGiy3R0Zv5rMORc60yaeBzLDq/dvb/DvY7tdwDcMX9e5odAhrNw==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} peerDependencies: - "@pnpm/logger": ^5.0.0 + '@pnpm/logger': ^5.0.0 dependencies: - "@pnpm/logger": 5.0.0 - "@pnpm/types": 9.3.0 + '@pnpm/logger': 5.0.0 + '@pnpm/types': 9.3.0 dev: false /@pnpm/crypto.base32-hash@2.0.0: resolution: {integrity: sha512-3ttOeHBpmWRbgJrpDQ8Nwd3W8s8iuiP5YZM0JRyKWaMtX8lu9d7/AKyxPmhYsMJuN+q/1dwHa7QFeDZJ53b0oA==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: rfc4648: 1.5.2 dev: false /@pnpm/dedupe.issues-renderer@1.0.0: resolution: {integrity: sha512-vlo2t1ERLH3vsL1PtlCue6qfpWofN2Pt2bvGIPtN6Y4siCZVwjy9GU3yXJk1wS2+a7qj9plPiobebadJgV/VHw==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/dedupe.types": 1.0.0 + '@pnpm/dedupe.types': 1.0.0 archy: 1.0.0 chalk: 4.1.2 dev: false /@pnpm/dedupe.types@1.0.0: resolution: {integrity: sha512-WGZ5E7aMPwaM+WMFYszTCP3Sms/gE0nLgI37gFnNbaKgAh5R7GojSHCxLgXqjiz0Jwx+Qi9BmdDgN1cJs5XBsg==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dev: false /@pnpm/default-reporter@12.4.2(@pnpm/logger@5.0.0): resolution: {integrity: sha512-9GK3ol+PQx9WEx3uetb+M9lhP/uK/vAm+PCaeOH/DVadbYQyy7fhKOgYBuOMshHNLqwGcdfnLeyY3b2lQdrEIg==} - engines: {node: ">=16.14"} - peerDependencies: - "@pnpm/logger": ^5.0.0 - dependencies: - "@pnpm/config": 19.2.1(@pnpm/logger@5.0.0) - "@pnpm/core-loggers": 9.0.3(@pnpm/logger@5.0.0) - "@pnpm/dedupe.issues-renderer": 1.0.0 - "@pnpm/dedupe.types": 1.0.0 - "@pnpm/error": 5.0.2 - "@pnpm/logger": 5.0.0 - "@pnpm/render-peer-issues": 4.0.3 - "@pnpm/types": 9.3.0 + engines: {node: '>=16.14'} + peerDependencies: + '@pnpm/logger': ^5.0.0 + dependencies: + '@pnpm/config': 19.2.1(@pnpm/logger@5.0.0) + '@pnpm/core-loggers': 9.0.3(@pnpm/logger@5.0.0) + '@pnpm/dedupe.issues-renderer': 1.0.0 + '@pnpm/dedupe.types': 1.0.0 + '@pnpm/error': 5.0.2 + '@pnpm/logger': 5.0.0 + '@pnpm/render-peer-issues': 4.0.3 + '@pnpm/types': 9.3.0 ansi-diff: 1.1.1 boxen: 5.1.2 chalk: 4.1.2 @@ -6980,87 +7220,87 @@ packages: /@pnpm/dependency-path@2.1.4: resolution: {integrity: sha512-QdT1Q3A2tx2TnGJZjso6W/LkJE+hnvcj3O6eN9NT46ckVmYEI2/6cYmRJY8PGrem/X222b7BeE4I8bnLDWZaWQ==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/crypto.base32-hash": 2.0.0 - "@pnpm/types": 9.3.0 + '@pnpm/crypto.base32-hash': 2.0.0 + '@pnpm/types': 9.3.0 encode-registry: 3.0.1 semver: 7.5.4 dev: false /@pnpm/error@5.0.2: resolution: {integrity: sha512-0TEm+tWNYm+9uh6DSKyRbv8pv/6b4NL0PastLvMxIoqZbBZ5Zj1cYi332R9xsSUi31ZOsu2wpgn/bC7DA9hrjg==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/constants": 7.1.1 + '@pnpm/constants': 7.1.1 dev: false /@pnpm/fetcher-base@15.0.2: resolution: {integrity: sha512-a+vy3k24dRZZ2iY9N22PNOxwEthxBG46pw1YmlXL96ioizVVbFeFAEdsZiiD0t8Th+mmKFAvk7tzdg3Vpo1d0g==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/resolver-base": 10.0.3 - "@pnpm/types": 9.3.0 - "@types/ssri": 7.1.2 + '@pnpm/resolver-base': 10.0.3 + '@pnpm/types': 9.3.0 + '@types/ssri': 7.1.2 dev: false /@pnpm/find-workspace-dir@6.0.2: resolution: {integrity: sha512-JSrpQUFCs4vY1D5tOmj7qBb+oE2j/lO6341giEdUpvYf3FijY8CY13l8rPjfHV2y3m//utzl0An+q+qx14S6Nw==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/error": 5.0.2 + '@pnpm/error': 5.0.2 find-up: 5.0.0 dev: false /@pnpm/fs.find-packages@2.0.7: resolution: {integrity: sha512-0X3UblPT+p9zWw4Qkg1M8YBIv0Bz41p4V8iQPDKVgUBajMlNAlG0fkL45BkLDGGO+JYfMJl/uinVKqNjE7nf+Q==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/read-project-manifest": 5.0.7 - "@pnpm/types": 9.3.0 - "@pnpm/util.lex-comparator": 1.0.0 + '@pnpm/read-project-manifest': 5.0.7 + '@pnpm/types': 9.3.0 + '@pnpm/util.lex-comparator': 1.0.0 fast-glob: 3.3.1 p-filter: 2.1.0 dev: false /@pnpm/git-utils@1.0.0: resolution: {integrity: sha512-lUI+XrzOJN4zdPGOGnFUrmtXAXpXi8wD8OI0nWOZmlh+raqbLzC3VkXu1zgaduOK6YonOcnQW88O+ojav1rAdA==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: execa: /safe-execa@0.1.2 dev: false /@pnpm/graceful-fs@3.2.0: resolution: {integrity: sha512-vRoXJxscDpHak7YE9SqCkzfrayn+Lw+YueOeHIPEqkgokrHeYgYeONoc2kGh0ObHaRtNSsonozVfJ456kxLNvA==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: graceful-fs: 4.2.11 dev: false /@pnpm/hooks.types@1.0.3: resolution: {integrity: sha512-MGPDi2t/Rg9qfmYvml+bV7aB2LeKv2flGWLguu8Gqwgfu4/mQKVX6u9NU8IdV2dmVoPBCO+bTqigYkaXYexjQg==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/lockfile-types": 5.1.2 - "@pnpm/types": 9.3.0 + '@pnpm/lockfile-types': 5.1.2 + '@pnpm/types': 9.3.0 dev: false /@pnpm/lockfile-file@8.1.3(@pnpm/logger@5.0.0): resolution: {integrity: sha512-t1qzYJcm/JAfKW1MdLhswM0+fSvy9/pRSXNQhxADCGor29zvBxieb/8xhDweIW5acH0T0TbS3Hgo0Iu/Ui2JuQ==} - engines: {node: ">=16.14"} - peerDependencies: - "@pnpm/logger": ^5.0.0 - dependencies: - "@pnpm/constants": 7.1.1 - "@pnpm/dependency-path": 2.1.4 - "@pnpm/error": 5.0.2 - "@pnpm/git-utils": 1.0.0 - "@pnpm/lockfile-types": 5.1.2 - "@pnpm/logger": 5.0.0 - "@pnpm/merge-lockfile-changes": 5.0.4 - "@pnpm/types": 9.3.0 - "@pnpm/util.lex-comparator": 1.0.0 - "@zkochan/rimraf": 2.1.3 + engines: {node: '>=16.14'} + peerDependencies: + '@pnpm/logger': ^5.0.0 + dependencies: + '@pnpm/constants': 7.1.1 + '@pnpm/dependency-path': 2.1.4 + '@pnpm/error': 5.0.2 + '@pnpm/git-utils': 1.0.0 + '@pnpm/lockfile-types': 5.1.2 + '@pnpm/logger': 5.0.0 + '@pnpm/merge-lockfile-changes': 5.0.4 + '@pnpm/types': 9.3.0 + '@pnpm/util.lex-comparator': 1.0.0 + '@zkochan/rimraf': 2.1.3 comver-to-semver: 1.0.0 js-yaml: /@zkochan/js-yaml@0.0.6 normalize-path: 3.0.0 @@ -7073,27 +7313,27 @@ packages: /@pnpm/lockfile-types@5.1.2: resolution: {integrity: sha512-yPghe5atvPxn9xrltX+BOLnJF4mFzYN2SsCUq8otn7F7NekNrxwkedTKRIMcaOg0cAzxka7+fPWaB3svRtPk5g==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/types": 9.3.0 + '@pnpm/types': 9.3.0 dev: false /@pnpm/lockfile-utils@8.0.6: resolution: {integrity: sha512-JauinxV3H+bmR6Mh6so4nn2r5RgTgH70w9GPZZrbandaJwBQsBEsR59MCJXmvEJzcJthbjLiZH1ndWuQmJinUw==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/dependency-path": 2.1.4 - "@pnpm/lockfile-types": 5.1.2 - "@pnpm/pick-fetcher": 2.0.1 - "@pnpm/resolver-base": 10.0.3 - "@pnpm/types": 9.3.0 + '@pnpm/dependency-path': 2.1.4 + '@pnpm/lockfile-types': 5.1.2 + '@pnpm/pick-fetcher': 2.0.1 + '@pnpm/resolver-base': 10.0.3 + '@pnpm/types': 9.3.0 get-npm-tarball-url: 2.0.3 ramda: /@pnpm/ramda@0.28.1 dev: false /@pnpm/logger@5.0.0: resolution: {integrity: sha512-YfcB2QrX+Wx1o6LD1G2Y2fhDhOix/bAY/oAnMpHoNLsKkWIRbt1oKLkIFvxBMzLwAEPqnYWguJrYC+J6i4ywbw==} - engines: {node: ">=12.17"} + engines: {node: '>=12.17'} dependencies: bole: 5.0.9 ndjson: 2.0.0 @@ -7101,27 +7341,27 @@ packages: /@pnpm/manifest-utils@5.0.4(@pnpm/logger@5.0.0): resolution: {integrity: sha512-RW7wPx4k1BFZ8jA1Hk818K22V9AqFq4JlhCWlkGTPf37jsKNQL4ZrEOuM4s5lsHPFiOzT5f4VOnOxhp+PXLV6g==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/core-loggers": 9.0.3(@pnpm/logger@5.0.0) - "@pnpm/error": 5.0.2 - "@pnpm/types": 9.3.0 + '@pnpm/core-loggers': 9.0.3(@pnpm/logger@5.0.0) + '@pnpm/error': 5.0.2 + '@pnpm/types': 9.3.0 transitivePeerDependencies: - - "@pnpm/logger" + - '@pnpm/logger' dev: false /@pnpm/matcher@5.0.0: resolution: {integrity: sha512-uh+JBmW8XHGwz9x0K0Ok+TtMiu3ghEaqHHm7dqIubitBP8y9Y0LLP6D2fxWblogjpVzSlH3DpDR1Vicuhw9/cQ==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: escape-string-regexp: 4.0.0 dev: false /@pnpm/merge-lockfile-changes@5.0.4: resolution: {integrity: sha512-hM95tVX8sGF6zmVB1xVmSYINqnqrRvy1UZSTFWgGgf20wyfLsoHsSYsl4l0/vhkK00D0jMH4ZjlbzF/DEC72aQ==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/lockfile-types": 5.1.2 + '@pnpm/lockfile-types': 5.1.2 comver-to-semver: 1.0.0 ramda: /@pnpm/ramda@0.28.1 semver: 7.5.4 @@ -7129,9 +7369,9 @@ packages: /@pnpm/modules-yaml@12.1.3: resolution: {integrity: sha512-XXyUZdd578rml7nnoUv3You5Ns4ReUXDieP4VNglNLBIYs1RrbMIZGdqxnxii7cjLmIYauzlE1QMbFjTr/5pkA==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/types": 9.3.0 + '@pnpm/types': 9.3.0 is-windows: 1.0.2 ramda: /@pnpm/ramda@0.28.1 read-yaml-file: 2.1.0 @@ -7140,30 +7380,30 @@ packages: /@pnpm/network.ca-file@1.0.2: resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} - engines: {node: ">=12.22.0"} + engines: {node: '>=12.22.0'} dependencies: graceful-fs: 4.2.10 /@pnpm/normalize-registries@5.0.3: resolution: {integrity: sha512-llPtT/fQDT9Al3DAOmaFetfnwJKRQXrrsN9nRiRSqZzYSmiLTPM3upQ+uWHEZVv4DJI6ZEZfZT039HDKdkYanQ==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/types": 9.3.0 + '@pnpm/types': 9.3.0 normalize-registry-url: 2.0.0 ramda: /@pnpm/ramda@0.28.1 dev: false /@pnpm/npm-conf@2.2.2: resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: - "@pnpm/config.env-replace": 1.1.0 - "@pnpm/network.ca-file": 1.0.2 + '@pnpm/config.env-replace': 1.1.0 + '@pnpm/network.ca-file': 1.0.2 config-chain: 1.1.13 /@pnpm/npm-package-arg@1.0.0: resolution: {integrity: sha512-oQYP08exi6mOPdAZZWcNIGS+KKPsnNwUBzSuAEGWuCcqwMAt3k/WVCqVIXzBxhO5sP2b43og69VHmPj6IroKqw==} - engines: {node: ">=14.6"} + engines: {node: '>=14.6'} dependencies: hosted-git-info: 4.1.0 semver: 7.5.4 @@ -7172,14 +7412,14 @@ packages: /@pnpm/package-is-installable@8.0.5(@pnpm/logger@5.0.0): resolution: {integrity: sha512-FNcjvgoYzLVQ73yG9mhuzXqxhjTdaP0QkiBFetCqY/JniGHtqYOzuzZq3KuRnfJoN7UWqQLzLWV1VRwqefmYiw==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} peerDependencies: - "@pnpm/logger": ^5.0.0 + '@pnpm/logger': ^5.0.0 dependencies: - "@pnpm/core-loggers": 9.0.3(@pnpm/logger@5.0.0) - "@pnpm/error": 5.0.2 - "@pnpm/logger": 5.0.0 - "@pnpm/types": 9.3.0 + '@pnpm/core-loggers': 9.0.3(@pnpm/logger@5.0.0) + '@pnpm/error': 5.0.2 + '@pnpm/logger': 5.0.0 + '@pnpm/types': 9.3.0 detect-libc: 2.0.2 execa: /safe-execa@0.1.2 mem: 8.1.1 @@ -7188,22 +7428,22 @@ packages: /@pnpm/pick-fetcher@2.0.1: resolution: {integrity: sha512-rW9IqroTLSdrFgCRfxDOyL845e3ju0Lt8HmfljgJLIR8mIoCE6PUR7+JouoSUcauAx28mSMbYbbRYXKlxacdiA==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dev: false /@pnpm/pnpmfile@5.0.14(@pnpm/logger@5.0.0): resolution: {integrity: sha512-ZzgXwaJuWCOBylA58YpzppIhRzPgxPH9at8Pab1xsbKj0UZP15pHxilINuihnVoS/KP39ysprjqeJ5qApErQfw==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} peerDependencies: - "@pnpm/logger": ^5.0.0 + '@pnpm/logger': ^5.0.0 dependencies: - "@pnpm/core-loggers": 9.0.3(@pnpm/logger@5.0.0) - "@pnpm/error": 5.0.2 - "@pnpm/hooks.types": 1.0.3 - "@pnpm/lockfile-types": 5.1.2 - "@pnpm/logger": 5.0.0 - "@pnpm/store-controller-types": 17.0.1 - "@pnpm/types": 9.3.0 + '@pnpm/core-loggers': 9.0.3(@pnpm/logger@5.0.0) + '@pnpm/error': 5.0.2 + '@pnpm/hooks.types': 1.0.3 + '@pnpm/lockfile-types': 5.1.2 + '@pnpm/logger': 5.0.0 + '@pnpm/store-controller-types': 17.0.1 + '@pnpm/types': 9.3.0 chalk: 4.1.2 path-absolute: 1.0.1 dev: false @@ -7214,31 +7454,31 @@ packages: /@pnpm/read-modules-dir@6.0.1: resolution: {integrity: sha512-/h+3VB1j+hhUlEYkE+dAH5WbhR/qYDDvliqWQxN/AA0CYAFwMud5z4FOKzYHgY6RD+KVVgEelLquxCi7fKvT8A==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: graceful-fs: 4.2.11 dev: false /@pnpm/read-package-json@8.0.4: resolution: {integrity: sha512-qvFNjXV153PYXYvp5jNPboSC/XTNly4h3NVy0L2YbUUQr8TGYuMAOf30yW5xdsmzxjEim8S0qnZ2j57tKVrUag==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/error": 5.0.2 - "@pnpm/types": 9.3.0 + '@pnpm/error': 5.0.2 + '@pnpm/types': 9.3.0 load-json-file: 6.2.0 normalize-package-data: 5.0.0 dev: false /@pnpm/read-project-manifest@5.0.7: resolution: {integrity: sha512-zq9XlZCbWmpjeNaU6faV51ehD4Rk6nTMv+jWkOGPSAwIG8uBh1NBxOYKx4R9Ixu7x8zNUUdfxOo89c6Ds5cY1w==} - engines: {node: ">=16.14"} - dependencies: - "@gwhitney/detect-indent": 7.0.1 - "@pnpm/error": 5.0.2 - "@pnpm/graceful-fs": 3.2.0 - "@pnpm/text.comments-parser": 2.0.0 - "@pnpm/types": 9.3.0 - "@pnpm/write-project-manifest": 5.0.3 + engines: {node: '>=16.14'} + dependencies: + '@gwhitney/detect-indent': 7.0.1 + '@pnpm/error': 5.0.2 + '@pnpm/graceful-fs': 3.2.0 + '@pnpm/text.comments-parser': 2.0.0 + '@pnpm/types': 9.3.0 + '@pnpm/write-project-manifest': 5.0.3 fast-deep-equal: 3.1.3 is-windows: 1.0.2 json5: 2.2.3 @@ -7251,9 +7491,9 @@ packages: /@pnpm/render-peer-issues@4.0.3: resolution: {integrity: sha512-TsUTr3PxTSkITYWMQE/qyQF9wbumleGWb82yC6aG4Cv2mk6B+zeG72auflek9mljV8DI+7yS25uvrENabJ53Bw==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/types": 9.3.0 + '@pnpm/types': 9.3.0 archy: 1.0.0 chalk: 4.1.2 cli-columns: 4.0.0 @@ -7261,80 +7501,80 @@ packages: /@pnpm/resolver-base@10.0.3: resolution: {integrity: sha512-7cwt7DxIbvp5vlJgOYS3AN9QmOaKWfSSl9tH5lQ8QOU3bUTmYV5gPxJduY87Avwhs3Qll7V2oyyLeqegMFDbXA==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/types": 9.3.0 + '@pnpm/types': 9.3.0 dev: false /@pnpm/reviewing.dependencies-hierarchy@2.1.1(@pnpm/logger@5.0.0): resolution: {integrity: sha512-2FmnQgsywwWgqZkZPojqP4umTjLRZeBx19kiF7rDqp/XTLIGwHgU1RY/Hf08OWjxIECdZ7zkQrxBScCcJpnoeA==} - engines: {node: ">=16.14"} - dependencies: - "@pnpm/dependency-path": 2.1.4 - "@pnpm/lockfile-file": 8.1.3(@pnpm/logger@5.0.0) - "@pnpm/lockfile-utils": 8.0.6 - "@pnpm/matcher": 5.0.0 - "@pnpm/modules-yaml": 12.1.3 - "@pnpm/normalize-registries": 5.0.3 - "@pnpm/npm-package-arg": 1.0.0 - "@pnpm/read-modules-dir": 6.0.1 - "@pnpm/read-package-json": 8.0.4 - "@pnpm/types": 9.3.0 + engines: {node: '>=16.14'} + dependencies: + '@pnpm/dependency-path': 2.1.4 + '@pnpm/lockfile-file': 8.1.3(@pnpm/logger@5.0.0) + '@pnpm/lockfile-utils': 8.0.6 + '@pnpm/matcher': 5.0.0 + '@pnpm/modules-yaml': 12.1.3 + '@pnpm/normalize-registries': 5.0.3 + '@pnpm/npm-package-arg': 1.0.0 + '@pnpm/read-modules-dir': 6.0.1 + '@pnpm/read-package-json': 8.0.4 + '@pnpm/types': 9.3.0 normalize-path: 3.0.0 realpath-missing: 1.1.0 resolve-link-target: 2.0.0 semver: 7.5.4 transitivePeerDependencies: - - "@pnpm/logger" + - '@pnpm/logger' dev: false /@pnpm/store-controller-types@17.0.1: resolution: {integrity: sha512-1GSzM3mLt7nTTG+TH5h+NESNkjmooriwJSlPiE88mLk79Y4cvXRJxafSn86kMkKVVj0QBNZK8LECKrnSQ6MrDg==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/fetcher-base": 15.0.2 - "@pnpm/resolver-base": 10.0.3 - "@pnpm/types": 9.3.0 + '@pnpm/fetcher-base': 15.0.2 + '@pnpm/resolver-base': 10.0.3 + '@pnpm/types': 9.3.0 dev: false /@pnpm/text.comments-parser@2.0.0: resolution: {integrity: sha512-DRWtTmmxQQtuWHf1xPt9bqzCSq8d0MQF5x1kdpCDMLd7xk3nP4To2/OGkPrb8MKbrWsgCNDwXyKCFlEKrAg7fg==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: strip-comments-strings: 1.2.0 dev: false /@pnpm/types@9.3.0: resolution: {integrity: sha512-BUm6KWNyiQ575D+zi4OkGWImHv0gM6LQYUY/qK/7j9uxmZ66topXQlZSoFX8rR/FcpIRUTrT325iqFqMHoJnww==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dev: false /@pnpm/util.lex-comparator@1.0.0: resolution: {integrity: sha512-3aBQPHntVgk5AweBWZn+1I/fqZ9krK/w01197aYVkAJQGftb+BVWgEepxY5GChjSW12j52XX+CmfynYZ/p0DFQ==} - engines: {node: ">=12.22.0"} + engines: {node: '>=12.22.0'} dev: false /@pnpm/workspace.find-packages@1.0.13(@pnpm/logger@5.0.0): resolution: {integrity: sha512-xjzVIx9XP9QoMAvqJaXxxE5b72VXS9rJbEN2//iJL8+5cim7RjkQgBfLgk2+CVM8DkcjVQZVf3tdAM78wYph/g==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} peerDependencies: - "@pnpm/logger": ^5.0.0 + '@pnpm/logger': ^5.0.0 dependencies: - "@pnpm/cli-utils": 2.0.23(@pnpm/logger@5.0.0) - "@pnpm/constants": 7.1.1 - "@pnpm/fs.find-packages": 2.0.7 - "@pnpm/logger": 5.0.0 - "@pnpm/types": 9.3.0 - "@pnpm/util.lex-comparator": 1.0.0 + '@pnpm/cli-utils': 2.0.23(@pnpm/logger@5.0.0) + '@pnpm/constants': 7.1.1 + '@pnpm/fs.find-packages': 2.0.7 + '@pnpm/logger': 5.0.0 + '@pnpm/types': 9.3.0 + '@pnpm/util.lex-comparator': 1.0.0 read-yaml-file: 2.1.0 dev: false /@pnpm/write-project-manifest@5.0.3: resolution: {integrity: sha512-B2tH3v0ecp8H3Wg52R3/0hHvsvAdYfmoXn/gMAEjmXhIR8yIAOe9R/YWSMUBDXs8WUH119wB6H3BEJyX8bpznQ==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: - "@pnpm/text.comments-parser": 2.0.0 - "@pnpm/types": 9.3.0 + '@pnpm/text.comments-parser': 2.0.0 + '@pnpm/types': 9.3.0 json5: 2.2.3 write-file-atomic: 5.0.1 write-yaml-file: 5.0.0 @@ -7347,31 +7587,31 @@ packages: /@radix-ui/number@1.0.1: resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} dependencies: - "@babel/runtime": 7.23.1 + '@babel/runtime': 7.23.1 dev: true /@radix-ui/primitive@1.0.1: resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} dependencies: - "@babel/runtime": 7.23.1 + '@babel/runtime': 7.23.1 dev: true /@radix-ui/react-arrow@1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7379,22 +7619,22 @@ packages: /@radix-ui/react-collection@1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7402,65 +7642,65 @@ packages: /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-context@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-direction@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-dismissable-layer@1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7468,35 +7708,35 @@ packages: /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-focus-scope@1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7504,43 +7744,43 @@ packages: /@radix-ui/react-id@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-popper@1.1.2(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@floating-ui/react-dom": 2.0.2(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-arrow": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/rect": 1.0.1 - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-arrow': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/rect': 1.0.1 + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7548,19 +7788,19 @@ packages: /@radix-ui/react-portal@1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7568,19 +7808,19 @@ packages: /@radix-ui/react-primitive@1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7588,27 +7828,27 @@ packages: /@radix-ui/react-roving-focus@1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7616,37 +7856,37 @@ packages: /@radix-ui/react-select@1.2.2(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/number": 1.0.1 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-popper": 1.1.2(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-use-previous": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-visually-hidden": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-popper': 1.1.2(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.25 aria-hidden: 1.2.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -7656,19 +7896,19 @@ packages: /@radix-ui/react-separator@1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7676,40 +7916,40 @@ packages: /@radix-ui/react-slot@1.0.2(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-toggle-group@1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-toggle": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-toggle': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7717,21 +7957,21 @@ packages: /@radix-ui/react-toggle@1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7739,25 +7979,25 @@ packages: /@radix-ui/react-toolbar@1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-separator": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-toggle-group": 1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-separator': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-toggle-group': 1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7765,121 +8005,121 @@ packages: /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/rect": 1.0.1 - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/rect': 1.0.1 + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-use-size@1.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.25)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.25)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 dev: true /@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true dependencies: - "@babel/runtime": 7.23.1 - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.25 + '@babel/runtime': 7.23.1 + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -7887,20 +8127,20 @@ packages: /@radix-ui/rect@1.0.1: resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} dependencies: - "@babel/runtime": 7.23.1 + '@babel/runtime': 7.23.1 dev: true /@redis/bloom@1.2.0(@redis/client@1.5.11): resolution: {integrity: sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==} peerDependencies: - "@redis/client": ^1.0.0 + '@redis/client': ^1.0.0 dependencies: - "@redis/client": 1.5.11 + '@redis/client': 1.5.11 dev: true /@redis/client@1.5.11: resolution: {integrity: sha512-cV7yHcOAtNQ5x/yQl7Yw1xf53kO0FNDTdDU6bFIMbW6ljB7U7ns0YRM+QIkpoqTAt6zK5k9Fq0QWlUbLcq9AvA==} - engines: {node: ">=14"} + engines: {node: '>=14'} dependencies: cluster-key-slot: 1.1.2 generic-pool: 3.9.0 @@ -7910,63 +8150,167 @@ packages: /@redis/graph@1.1.0(@redis/client@1.5.11): resolution: {integrity: sha512-16yZWngxyXPd+MJxeSr0dqh2AIOi8j9yXKcKCwVaKDbH3HTuETpDVPcLujhFYVPtYrngSco31BUcSa9TH31Gqg==} peerDependencies: - "@redis/client": ^1.0.0 + '@redis/client': ^1.0.0 dependencies: - "@redis/client": 1.5.11 + '@redis/client': 1.5.11 dev: true /@redis/json@1.0.6(@redis/client@1.5.11): resolution: {integrity: sha512-rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw==} peerDependencies: - "@redis/client": ^1.0.0 + '@redis/client': ^1.0.0 dependencies: - "@redis/client": 1.5.11 + '@redis/client': 1.5.11 dev: true /@redis/search@1.1.5(@redis/client@1.5.11): resolution: {integrity: sha512-hPP8w7GfGsbtYEJdn4n7nXa6xt6hVZnnDktKW4ArMaFQ/m/aR7eFvsLQmG/mn1Upq99btPJk+F27IQ2dYpCoUg==} peerDependencies: - "@redis/client": ^1.0.0 + '@redis/client': ^1.0.0 dependencies: - "@redis/client": 1.5.11 + '@redis/client': 1.5.11 dev: true /@redis/time-series@1.0.5(@redis/client@1.5.11): resolution: {integrity: sha512-IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg==} peerDependencies: - "@redis/client": ^1.0.0 + '@redis/client': ^1.0.0 dependencies: - "@redis/client": 1.5.11 + '@redis/client': 1.5.11 dev: true /@rollup/pluginutils@5.0.5: resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true dependencies: - "@types/estree": 1.0.2 + '@types/estree': 1.0.2 estree-walker: 2.0.2 picomatch: 2.3.1 dev: true + /@rollup/rollup-android-arm-eabi@4.9.1: + resolution: {integrity: sha512-6vMdBZqtq1dVQ4CWdhFwhKZL6E4L1dV6jUjuBvsavvNJSppzi6dLBbuV+3+IyUREaj9ZFvQefnQm28v4OCXlig==} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-android-arm64@4.9.1: + resolution: {integrity: sha512-Jto9Fl3YQ9OLsTDWtLFPtaIMSL2kwGyGoVCmPC8Gxvym9TCZm4Sie+cVeblPO66YZsYH8MhBKDMGZ2NDxuk/XQ==} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-darwin-arm64@4.9.1: + resolution: {integrity: sha512-LtYcLNM+bhsaKAIGwVkh5IOWhaZhjTfNOkGzGqdHvhiCUVuJDalvDxEdSnhFzAn+g23wgsycmZk1vbnaibZwwA==} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-darwin-x64@4.9.1: + resolution: {integrity: sha512-KyP/byeXu9V+etKO6Lw3E4tW4QdcnzDG/ake031mg42lob5tN+5qfr+lkcT/SGZaH2PdW4Z1NX9GHEkZ8xV7og==} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm-gnueabihf@4.9.1: + resolution: {integrity: sha512-Yqz/Doumf3QTKplwGNrCHe/B2p9xqDghBZSlAY0/hU6ikuDVQuOUIpDP/YcmoT+447tsZTmirmjgG3znvSCR0Q==} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm64-gnu@4.9.1: + resolution: {integrity: sha512-u3XkZVvxcvlAOlQJ3UsD1rFvLWqu4Ef/Ggl40WAVCuogf4S1nJPHh5RTgqYFpCOvuGJ7H5yGHabjFKEZGExk5Q==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm64-musl@4.9.1: + resolution: {integrity: sha512-0XSYN/rfWShW+i+qjZ0phc6vZ7UWI8XWNz4E/l+6edFt+FxoEghrJHjX1EY/kcUGCnZzYYRCl31SNdfOi450Aw==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-riscv64-gnu@4.9.1: + resolution: {integrity: sha512-LmYIO65oZVfFt9t6cpYkbC4d5lKHLYv5B4CSHRpnANq0VZUQXGcCPXHzbCXCz4RQnx7jvlYB1ISVNCE/omz5cw==} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-gnu@4.9.1: + resolution: {integrity: sha512-kr8rEPQ6ns/Lmr/hiw8sEVj9aa07gh1/tQF2Y5HrNCCEPiCBGnBUt9tVusrcBBiJfIt1yNaXN6r1CCmpbFEDpg==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-musl@4.9.1: + resolution: {integrity: sha512-t4QSR7gN+OEZLG0MiCgPqMWZGwmeHhsM4AkegJ0Kiy6TnJ9vZ8dEIwHw1LcZKhbHxTY32hp9eVCMdR3/I8MGRw==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-arm64-msvc@4.9.1: + resolution: {integrity: sha512-7XI4ZCBN34cb+BH557FJPmh0kmNz2c25SCQeT9OiFWEgf8+dL6ZwJ8f9RnUIit+j01u07Yvrsuu1rZGxJCc51g==} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-ia32-msvc@4.9.1: + resolution: {integrity: sha512-yE5c2j1lSWOH5jp+Q0qNL3Mdhr8WuqCNVjc6BxbVfS5cAS6zRmdiw7ktb8GNpDCEUJphILY6KACoFoRtKoqNQg==} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-x64-msvc@4.9.1: + resolution: {integrity: sha512-PyJsSsafjmIhVgaI1Zdj7m8BB8mMckFah/xbpplObyHfiXzKcI5UOUXRyOdHW7nz4DpMCuzLnF7v5IWHenCwYA==} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@segment/analytics-core@1.3.1: resolution: {integrity: sha512-KGblJ8WQNC4t0j31zeyYBm2thHWuPULNAoP7waU5ts7Asz9ipvGoHqFSLG6warqvcnBdkiRbNam242zmxX53oA==} dependencies: - "@lukeed/uuid": 2.0.1 + '@lukeed/uuid': 2.0.1 dset: 3.1.2 tslib: 2.6.2 dev: false /@segment/analytics-node@1.1.1: resolution: {integrity: sha512-YNn32SfD8KrxIBowLz3MVav0GzhGIbBRgAtjW4Kv57oHwgaJNSLEp/z/ypnu7vAqUjm9jAwAW9Wfc24ssZI49g==} - engines: {node: ">=14"} + engines: {node: '>=14'} dependencies: - "@lukeed/uuid": 2.0.1 - "@segment/analytics-core": 1.3.1 + '@lukeed/uuid': 2.0.1 + '@segment/analytics-core': 1.3.1 buffer: 6.0.3 node-fetch: 2.7.0 tslib: 2.6.2 @@ -7976,41 +8320,41 @@ packages: /@sentry/core@6.19.7: resolution: {integrity: sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: - "@sentry/hub": 6.19.7 - "@sentry/minimal": 6.19.7 - "@sentry/types": 6.19.7 - "@sentry/utils": 6.19.7 + '@sentry/hub': 6.19.7 + '@sentry/minimal': 6.19.7 + '@sentry/types': 6.19.7 + '@sentry/utils': 6.19.7 tslib: 1.14.1 dev: true /@sentry/hub@6.19.7: resolution: {integrity: sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: - "@sentry/types": 6.19.7 - "@sentry/utils": 6.19.7 + '@sentry/types': 6.19.7 + '@sentry/utils': 6.19.7 tslib: 1.14.1 dev: true /@sentry/minimal@6.19.7: resolution: {integrity: sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: - "@sentry/hub": 6.19.7 - "@sentry/types": 6.19.7 + '@sentry/hub': 6.19.7 + '@sentry/types': 6.19.7 tslib: 1.14.1 dev: true /@sentry/node@6.19.7: resolution: {integrity: sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: - "@sentry/core": 6.19.7 - "@sentry/hub": 6.19.7 - "@sentry/types": 6.19.7 - "@sentry/utils": 6.19.7 + '@sentry/core': 6.19.7 + '@sentry/hub': 6.19.7 + '@sentry/types': 6.19.7 + '@sentry/utils': 6.19.7 cookie: 0.4.2 https-proxy-agent: 5.0.1 lru_map: 0.3.3 @@ -8021,14 +8365,14 @@ packages: /@sentry/types@6.19.7: resolution: {integrity: sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /@sentry/utils@6.19.7: resolution: {integrity: sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: - "@sentry/types": 6.19.7 + '@sentry/types': 6.19.7 tslib: 1.14.1 dev: true @@ -8036,14 +8380,14 @@ packages: resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - "@sigstore/protobuf-specs": 0.2.1 + '@sigstore/protobuf-specs': 0.2.1 dev: true /@sigstore/bundle@2.1.0: resolution: {integrity: sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@sigstore/protobuf-specs": 0.2.1 + '@sigstore/protobuf-specs': 0.2.1 dev: false /@sigstore/protobuf-specs@0.2.1: @@ -8054,8 +8398,8 @@ packages: resolution: {integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - "@sigstore/bundle": 1.1.0 - "@sigstore/protobuf-specs": 0.2.1 + '@sigstore/bundle': 1.1.0 + '@sigstore/protobuf-specs': 0.2.1 make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color @@ -8065,8 +8409,8 @@ packages: resolution: {integrity: sha512-4VRpfJxs+8eLqzLVrZngVNExVA/zAhVbi4UT4zmtLi4xRd7vz5qie834OgkrGsLlLB1B2nz/3wUxT1XAUBe8gw==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@sigstore/bundle": 2.1.0 - "@sigstore/protobuf-specs": 0.2.1 + '@sigstore/bundle': 2.1.0 + '@sigstore/protobuf-specs': 0.2.1 make-fetch-happen: 13.0.0 transitivePeerDependencies: - supports-color @@ -8076,7 +8420,7 @@ packages: resolution: {integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - "@sigstore/protobuf-specs": 0.2.1 + '@sigstore/protobuf-specs': 0.2.1 tuf-js: 1.1.7 transitivePeerDependencies: - supports-color @@ -8086,7 +8430,7 @@ packages: resolution: {integrity: sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@sigstore/protobuf-specs": 0.2.1 + '@sigstore/protobuf-specs': 0.2.1 tuf-js: 2.1.0 transitivePeerDependencies: - supports-color @@ -8102,7 +8446,7 @@ packages: /@sindresorhus/is@5.6.0: resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dev: true /@sinonjs/commons@1.8.6: @@ -8126,25 +8470,25 @@ packages: /@sinonjs/fake-timers@10.3.0: resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} dependencies: - "@sinonjs/commons": 3.0.0 + '@sinonjs/commons': 3.0.0 dev: true /@sinonjs/fake-timers@8.1.0: resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==} dependencies: - "@sinonjs/commons": 1.8.6 + '@sinonjs/commons': 1.8.6 dev: true /@sinonjs/fake-timers@9.1.2: resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} dependencies: - "@sinonjs/commons": 1.8.6 + '@sinonjs/commons': 1.8.6 dev: true /@sinonjs/samsam@7.0.1: resolution: {integrity: sha512-zsAk2Jkiq89mhZovB2LLOdTCxJF4hqqTToGP0ASWlhp4I1hqOjcfmZGafXntCN7MDC6yySH0mFHrYtHceOeLmw==} dependencies: - "@sinonjs/commons": 2.0.0 + '@sinonjs/commons': 2.0.0 lodash.get: 4.4.2 type-detect: 4.0.8 dev: true @@ -8155,24 +8499,24 @@ packages: /@smithy/abort-controller@2.0.11: resolution: {integrity: sha512-MSzE1qR2JNyb7ot3blIOT3O3H0Jn06iNDEgHRaqZUwBgx5EG+VIx24Y21tlKofzYryIOcWpIohLrIIyocD6LMA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/abort-controller@2.0.12: resolution: {integrity: sha512-YIJyefe1mi3GxKdZxEBEuzYOeQ9xpYfqnFmWzojCssRAuR7ycxwpoRQgp965vuW426xUAQhCV5rCaWElQ7XsaA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/chunked-blob-reader-native@2.0.0: resolution: {integrity: sha512-HM8V2Rp1y8+1343tkZUKZllFhEQPNmpNdgFAncbTsxkZ18/gqjk23XXv3qGyXWp412f3o43ZZ1UZHVcHrpRnCQ==} dependencies: - "@smithy/util-base64": 2.0.0 + '@smithy/util-base64': 2.0.0 tslib: 2.6.2 dev: false @@ -8184,176 +8528,176 @@ packages: /@smithy/config-resolver@2.0.14: resolution: {integrity: sha512-K1K+FuWQoy8j/G7lAmK85o03O89s2Vvh6kMFmzEmiHUoQCRH1rzbDtMnGNiaMHeSeYJ6y79IyTusdRG+LuWwtg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/node-config-provider": 2.1.1 - "@smithy/types": 2.3.5 - "@smithy/util-config-provider": 2.0.0 - "@smithy/util-middleware": 2.0.4 + '@smithy/node-config-provider': 2.1.1 + '@smithy/types': 2.3.5 + '@smithy/util-config-provider': 2.0.0 + '@smithy/util-middleware': 2.0.4 tslib: 2.6.2 dev: false /@smithy/config-resolver@2.0.16: resolution: {integrity: sha512-1k+FWHQDt2pfpXhJsOmNMmlAZ3NUQ98X5tYsjQhVGq+0X6cOBMhfh6Igd0IX3Ut6lEO6DQAdPMI/blNr3JZfMQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/node-config-provider": 2.1.3 - "@smithy/types": 2.4.0 - "@smithy/util-config-provider": 2.0.0 - "@smithy/util-middleware": 2.0.5 + '@smithy/node-config-provider': 2.1.3 + '@smithy/types': 2.4.0 + '@smithy/util-config-provider': 2.0.0 + '@smithy/util-middleware': 2.0.5 tslib: 2.6.2 dev: false /@smithy/credential-provider-imds@2.0.16: resolution: {integrity: sha512-tKa2xF+69TvGxJT+lnJpGrKxUuAZDLYXFhqnPEgnHz+psTpkpcB4QRjHj63+uj83KaeFJdTfW201eLZeRn6FfA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/node-config-provider": 2.1.3 - "@smithy/property-provider": 2.0.12 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 + '@smithy/node-config-provider': 2.1.3 + '@smithy/property-provider': 2.0.12 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 tslib: 2.6.2 dev: false /@smithy/credential-provider-imds@2.0.18: resolution: {integrity: sha512-QnPBi6D2zj6AHJdUTo5zXmk8vwHJ2bNevhcVned1y+TZz/OI5cizz5DsYNkqFUIDn8tBuEyKNgbmKVNhBbuY3g==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/node-config-provider": 2.1.3 - "@smithy/property-provider": 2.0.13 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 + '@smithy/node-config-provider': 2.1.3 + '@smithy/property-provider': 2.0.13 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 tslib: 2.6.2 dev: false /@smithy/eventstream-codec@2.0.11: resolution: {integrity: sha512-BQCTjxhCYRZIfXapa2LmZSaH8QUBGwMZw7XRN83hrdixbLjIcj+o549zjkedFS07Ve2TlvWUI6BTzP+nv7snBA==} dependencies: - "@aws-crypto/crc32": 3.0.0 - "@smithy/types": 2.4.0 - "@smithy/util-hex-encoding": 2.0.0 + '@aws-crypto/crc32': 3.0.0 + '@smithy/types': 2.4.0 + '@smithy/util-hex-encoding': 2.0.0 tslib: 2.6.2 dev: false /@smithy/eventstream-codec@2.0.12: resolution: {integrity: sha512-ZZQLzHBJkbiAAdj2C5K+lBlYp/XJ+eH2uy+jgJgYIFW/o5AM59Hlj7zyI44/ZTDIQWmBxb3EFv/c5t44V8/g8A==} dependencies: - "@aws-crypto/crc32": 3.0.0 - "@smithy/types": 2.4.0 - "@smithy/util-hex-encoding": 2.0.0 + '@aws-crypto/crc32': 3.0.0 + '@smithy/types': 2.4.0 + '@smithy/util-hex-encoding': 2.0.0 tslib: 2.6.2 dev: false /@smithy/eventstream-serde-browser@2.0.12: resolution: {integrity: sha512-0pi8QlU/pwutNshoeJcbKR1p7Ie5STd8UFAMX5xhSoSJjNlxIv/OsHbF023jscMRN2Prrqd6ToGgdCnsZVQjvg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/eventstream-serde-universal": 2.0.12 - "@smithy/types": 2.4.0 + '@smithy/eventstream-serde-universal': 2.0.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/eventstream-serde-config-resolver@2.0.12: resolution: {integrity: sha512-I0XfwQkIX3gAnbrU5rLMkBSjTM9DHttdbLwf12CXmj7SSI5dT87PxtKLRrZGanaCMbdf2yCep+MW5/4M7IbvQA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/eventstream-serde-node@2.0.12: resolution: {integrity: sha512-vf1vMHGOkG3uqN9x1zKOhnvW/XgvhJXWqjV6zZiT2FMjlEayugQ1mzpSqr7uf89+BzjTzuZKERmOsEAmewLbxw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/eventstream-serde-universal": 2.0.12 - "@smithy/types": 2.4.0 + '@smithy/eventstream-serde-universal': 2.0.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/eventstream-serde-universal@2.0.12: resolution: {integrity: sha512-xZ3ZNpCxIND+q+UCy7y1n1/5VQEYicgSTNCcPqsKawX+Vd+6OcFX7gUHMyPzL8cZr+GdmJuxNleqHlH4giK2tw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/eventstream-codec": 2.0.12 - "@smithy/types": 2.4.0 + '@smithy/eventstream-codec': 2.0.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/fetch-http-handler@2.2.2: resolution: {integrity: sha512-K7aRtRuaBjzlk+jWWeyfDTLAmRRvmA4fU8eHUXtjsuEDgi3f356ZE32VD2ssxIH13RCLVZbXMt5h7wHzYiSuVA==} dependencies: - "@smithy/protocol-http": 3.0.7 - "@smithy/querystring-builder": 2.0.11 - "@smithy/types": 2.3.5 - "@smithy/util-base64": 2.0.0 + '@smithy/protocol-http': 3.0.7 + '@smithy/querystring-builder': 2.0.11 + '@smithy/types': 2.3.5 + '@smithy/util-base64': 2.0.0 tslib: 2.6.2 dev: false /@smithy/fetch-http-handler@2.2.4: resolution: {integrity: sha512-gIPRFEGi+c6V52eauGKrjDzPWF2Cu7Z1r5F8A3j2wcwz25sPG/t8kjsbEhli/tS/2zJp/ybCZXe4j4ro3yv/HA==} dependencies: - "@smithy/protocol-http": 3.0.8 - "@smithy/querystring-builder": 2.0.12 - "@smithy/types": 2.4.0 - "@smithy/util-base64": 2.0.0 + '@smithy/protocol-http': 3.0.8 + '@smithy/querystring-builder': 2.0.12 + '@smithy/types': 2.4.0 + '@smithy/util-base64': 2.0.0 tslib: 2.6.2 dev: false /@smithy/hash-blob-browser@2.0.12: resolution: {integrity: sha512-riLnV16f27yyePX8UF0deRHAeccUK8SrOxyTykSTrnVkgS3DsjNapZtTbd8OGNKEbI60Ncdb5GwN3rHZudXvog==} dependencies: - "@smithy/chunked-blob-reader": 2.0.0 - "@smithy/chunked-blob-reader-native": 2.0.0 - "@smithy/types": 2.4.0 + '@smithy/chunked-blob-reader': 2.0.0 + '@smithy/chunked-blob-reader-native': 2.0.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/hash-node@2.0.11: resolution: {integrity: sha512-PbleVugN2tbhl1ZoNWVrZ1oTFFas/Hq+s6zGO8B9bv4w/StTriTKA9W+xZJACOj9X7zwfoTLbscM+avCB1KqOQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.3.5 - "@smithy/util-buffer-from": 2.0.0 - "@smithy/util-utf8": 2.0.0 + '@smithy/types': 2.3.5 + '@smithy/util-buffer-from': 2.0.0 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 dev: false /@smithy/hash-node@2.0.12: resolution: {integrity: sha512-fDZnTr5j9t5qcbeJ037aMZXxMka13Znqwrgy3PAqYj6Dm3XHXHftTH3q+NWgayUxl1992GFtQt1RuEzRMy3NnQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 - "@smithy/util-buffer-from": 2.0.0 - "@smithy/util-utf8": 2.0.0 + '@smithy/types': 2.4.0 + '@smithy/util-buffer-from': 2.0.0 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 dev: false /@smithy/hash-stream-node@2.0.12: resolution: {integrity: sha512-x/DrSynPKrW0k00q7aZ/vy531a3mRw79mOajHp+cIF0TrA1SqEMFoy/B8X0XtoAtlJWt/vvgeDNqt/KAeaAqMw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 - "@smithy/util-utf8": 2.0.0 + '@smithy/types': 2.4.0 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 dev: false /@smithy/invalid-dependency@2.0.11: resolution: {integrity: sha512-zazq99ujxYv/NOf9zh7xXbNgzoVLsqE0wle8P/1zU/XdhPi/0zohTPKWUzIxjGdqb5hkkwfBkNkl5H+LE0mvgw==} dependencies: - "@smithy/types": 2.3.5 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/invalid-dependency@2.0.12: resolution: {integrity: sha512-p5Y+iMHV3SoEpy3VSR7mifbreHQwVSvHSAz/m4GdoXfOzKzaYC8hYv10Ks7Deblkf7lhas8U+lAp9ThbBM+ZXA==} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/is-array-buffer@2.0.0: resolution: {integrity: sha512-z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false @@ -8361,303 +8705,303 @@ packages: /@smithy/md5-js@2.0.12: resolution: {integrity: sha512-OgDt+Xnrw+W5z3MSl5KZZzebqmXrYl9UdbCiBYnnjErmNywwSjV6QB/Oic3/7hnsPniSU81n7Rvlhz2kH4EREQ==} dependencies: - "@smithy/types": 2.4.0 - "@smithy/util-utf8": 2.0.0 + '@smithy/types': 2.4.0 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 dev: false /@smithy/middleware-content-length@2.0.13: resolution: {integrity: sha512-Md2kxWpaec3bXp1oERFPQPBhOXCkGSAF7uc1E+4rkwjgw3/tqAXRtbjbggu67HJdwaif76As8AV6XxbD1HzqTQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/protocol-http": 3.0.7 - "@smithy/types": 2.3.5 + '@smithy/protocol-http': 3.0.7 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/middleware-content-length@2.0.14: resolution: {integrity: sha512-poUNgKTw9XwPXfX9nEHpVgrMNVpaSMZbshqvPxFVoalF4wp6kRzYKOfdesSVectlQ51VtigoLfbXcdyPwvxgTg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/protocol-http": 3.0.8 - "@smithy/types": 2.4.0 + '@smithy/protocol-http': 3.0.8 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/middleware-endpoint@2.0.11: resolution: {integrity: sha512-mCugsvB15up6fqpzUEpMT4CuJmFkEI+KcozA7QMzYguXCaIilyMKsyxgamwmr+o7lo3QdjN0//XLQ9bWFL129g==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/middleware-serde": 2.0.11 - "@smithy/types": 2.3.5 - "@smithy/url-parser": 2.0.11 - "@smithy/util-middleware": 2.0.4 + '@smithy/middleware-serde': 2.0.11 + '@smithy/types': 2.3.5 + '@smithy/url-parser': 2.0.11 + '@smithy/util-middleware': 2.0.4 tslib: 2.6.2 dev: false /@smithy/middleware-endpoint@2.1.3: resolution: {integrity: sha512-ZrQ0/YX6hNVTxqMEHtEaDbDv6pNeEji/a5Vk3HuFC5R3ZY8lfoATyxmOGxBVYnF3NUvZLNC7umEv1WzWGWvCGQ==} - engines: {node: ">=14.0.0"} - dependencies: - "@smithy/middleware-serde": 2.0.12 - "@smithy/node-config-provider": 2.1.3 - "@smithy/shared-ini-file-loader": 2.2.2 - "@smithy/types": 2.4.0 - "@smithy/url-parser": 2.0.12 - "@smithy/util-middleware": 2.0.5 + engines: {node: '>=14.0.0'} + dependencies: + '@smithy/middleware-serde': 2.0.12 + '@smithy/node-config-provider': 2.1.3 + '@smithy/shared-ini-file-loader': 2.2.2 + '@smithy/types': 2.4.0 + '@smithy/url-parser': 2.0.12 + '@smithy/util-middleware': 2.0.5 tslib: 2.6.2 dev: false /@smithy/middleware-retry@2.0.16: resolution: {integrity: sha512-Br5+0yoiMS0ugiOAfJxregzMMGIRCbX4PYo1kDHtLgvkA/d++aHbnHB819m5zOIAMPvPE7AThZgcsoK+WOsUTA==} - engines: {node: ">=14.0.0"} - dependencies: - "@smithy/node-config-provider": 2.1.1 - "@smithy/protocol-http": 3.0.7 - "@smithy/service-error-classification": 2.0.4 - "@smithy/types": 2.3.5 - "@smithy/util-middleware": 2.0.4 - "@smithy/util-retry": 2.0.4 + engines: {node: '>=14.0.0'} + dependencies: + '@smithy/node-config-provider': 2.1.1 + '@smithy/protocol-http': 3.0.7 + '@smithy/service-error-classification': 2.0.4 + '@smithy/types': 2.3.5 + '@smithy/util-middleware': 2.0.4 + '@smithy/util-retry': 2.0.4 tslib: 2.6.2 uuid: 8.3.2 dev: false /@smithy/middleware-retry@2.0.18: resolution: {integrity: sha512-VyrHQRldGSb3v9oFOB5yPxmLT7U2sQic2ytylOnYlnsmVOLlFIaI6sW22c+w2675yq+XZ6HOuzV7x2OBYCWRNA==} - engines: {node: ">=14.0.0"} - dependencies: - "@smithy/node-config-provider": 2.1.3 - "@smithy/protocol-http": 3.0.8 - "@smithy/service-error-classification": 2.0.5 - "@smithy/types": 2.4.0 - "@smithy/util-middleware": 2.0.5 - "@smithy/util-retry": 2.0.5 + engines: {node: '>=14.0.0'} + dependencies: + '@smithy/node-config-provider': 2.1.3 + '@smithy/protocol-http': 3.0.8 + '@smithy/service-error-classification': 2.0.5 + '@smithy/types': 2.4.0 + '@smithy/util-middleware': 2.0.5 + '@smithy/util-retry': 2.0.5 tslib: 2.6.2 uuid: 8.3.2 dev: false /@smithy/middleware-serde@2.0.11: resolution: {integrity: sha512-NuxnjMyf4zQqhwwdh0OTj5RqpnuT6HcH5Xg5GrPijPcKzc2REXVEVK4Yyk8ckj8ez1XSj/bCmJ+oNjmqB02GWA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.3.5 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/middleware-serde@2.0.12: resolution: {integrity: sha512-IBeco157lIScecq2Z+n0gq56i4MTnfKxS7rbfrAORveDJgnbBAaEQgYqMqp/cYqKrpvEXcyTjwKHrBjCCIZh2A==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/middleware-stack@2.0.5: resolution: {integrity: sha512-bVQU/rZzBY7CbSxIrDTGZYnBWKtIw+PL/cRc9B7etZk1IKSOe0NvKMJyWllfhfhrTeMF6eleCzOihIQympAvPw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.3.5 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/middleware-stack@2.0.6: resolution: {integrity: sha512-YSvNZeOKWLJ0M/ycxwDIe2Ztkp6Qixmcml1ggsSv2fdHKGkBPhGrX5tMzPGMI1yyx55UEYBi2OB4s+RriXX48A==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/node-config-provider@2.1.1: resolution: {integrity: sha512-1lF6s1YWBi1LBu2O30tD3jyTgMtuvk/Z1twzXM4GPYe4dmZix4nNREPJIPOcfFikNU2o0eTYP80+izx5F2jIJA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/property-provider": 2.0.12 - "@smithy/shared-ini-file-loader": 2.2.0 - "@smithy/types": 2.3.5 + '@smithy/property-provider': 2.0.12 + '@smithy/shared-ini-file-loader': 2.2.0 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/node-config-provider@2.1.3: resolution: {integrity: sha512-J6lXvRHGVnSX3n1PYi+e1L5HN73DkkJpUviV3Ebf+8wSaIjAf+eVNbzyvh/S5EQz7nf4KVfwbD5vdoZMAthAEQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/property-provider": 2.0.13 - "@smithy/shared-ini-file-loader": 2.2.2 - "@smithy/types": 2.4.0 + '@smithy/property-provider': 2.0.13 + '@smithy/shared-ini-file-loader': 2.2.2 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/node-http-handler@2.1.7: resolution: {integrity: sha512-PQIKZXlp3awCDn/xNlCSTFE7aYG/5Tx33M05NfQmWYeB5yV1GZZOSz4dXpwiNJYTXb9jPqjl+ueXXkwtEluFFA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/abort-controller": 2.0.11 - "@smithy/protocol-http": 3.0.7 - "@smithy/querystring-builder": 2.0.11 - "@smithy/types": 2.3.5 + '@smithy/abort-controller': 2.0.11 + '@smithy/protocol-http': 3.0.7 + '@smithy/querystring-builder': 2.0.11 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/node-http-handler@2.1.8: resolution: {integrity: sha512-KZylM7Wff/So5SmCiwg2kQNXJ+RXgz34wkxS7WNwIUXuZrZZpY/jKJCK+ZaGyuESDu3TxcaY+zeYGJmnFKbQsA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/abort-controller": 2.0.12 - "@smithy/protocol-http": 3.0.8 - "@smithy/querystring-builder": 2.0.12 - "@smithy/types": 2.4.0 + '@smithy/abort-controller': 2.0.12 + '@smithy/protocol-http': 3.0.8 + '@smithy/querystring-builder': 2.0.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/property-provider@2.0.12: resolution: {integrity: sha512-Un/OvvuQ1Kg8WYtoMCicfsFFuHb/TKL3pCA6ZIo/WvNTJTR94RtoRnL7mY4XkkUAoFMyf6KjcQJ76y1FX7S5rw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/property-provider@2.0.13: resolution: {integrity: sha512-VJqUf2CbsQX6uUiC5dUPuoEATuFjkbkW3lJHbRnpk9EDC9X+iKqhfTK+WP+lve5EQ9TcCI1Q6R7hrg41FyC54w==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/protocol-http@2.0.5: resolution: {integrity: sha512-d2hhHj34mA2V86doiDfrsy2fNTnUOowGaf9hKb0hIPHqvcnShU4/OSc4Uf1FwHkAdYF3cFXTrj5VGUYbEuvMdw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.3.5 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/protocol-http@3.0.7: resolution: {integrity: sha512-HnZW8y+r66ntYueCDbLqKwWcMNWW8o3eVpSrHNluwtBJ/EUWfQHRKSiu6vZZtc6PGfPQWgVfucoCE/C3QufMAA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/protocol-http@3.0.8: resolution: {integrity: sha512-SHJvYeWq8q0FK8xHk+xjV9dzDUDjFMT+G1pZbV+XB6OVoac/FSVshlMNPeUJ8AmSkcDKHRu5vASnRqZHgD3qhw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/querystring-builder@2.0.11: resolution: {integrity: sha512-b4kEbVMxpmfv2VWUITn2otckTi7GlMteZQxi+jlwedoATOGEyrCJPfRcYQJjbCi3fZ2QTfh3PcORvB27+j38Yg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 - "@smithy/util-uri-escape": 2.0.0 + '@smithy/types': 2.4.0 + '@smithy/util-uri-escape': 2.0.0 tslib: 2.6.2 dev: false /@smithy/querystring-builder@2.0.12: resolution: {integrity: sha512-cDbF07IuCjiN8CdGvPzfJjXIrmDSelScRfyJYrYBNBbKl2+k7QD/KqiHhtRyEKgID5mmEVrV6KE6L/iPJ98sFw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 - "@smithy/util-uri-escape": 2.0.0 + '@smithy/types': 2.4.0 + '@smithy/util-uri-escape': 2.0.0 tslib: 2.6.2 dev: false /@smithy/querystring-parser@2.0.11: resolution: {integrity: sha512-YXe7jhi7s3dQ0Fu9dLoY/gLu6NCyy8tBWJL/v2c9i7/RLpHgKT+uT96/OqZkHizCJ4kr0ZD46tzMjql/o60KLg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/querystring-parser@2.0.12: resolution: {integrity: sha512-fytyTcXaMzPBuNtPlhj5v6dbl4bJAnwKZFyyItAGt4Tgm9HFPZNo7a9r1SKPr/qdxUEBzvL9Rh+B9SkTX3kFxg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/service-error-classification@2.0.4: resolution: {integrity: sha512-77506l12I5gxTZqBkx3Wb0RqMG81bMYLaVQ+EqIWFwQDJRs5UFeXogKxSKojCmz1wLUziHZQXm03MBzPQiumQw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 dev: false /@smithy/service-error-classification@2.0.5: resolution: {integrity: sha512-M0SeJnEgD2ywJyV99Fb1yKFzmxDe9JfpJiYTVSRMyRLc467BPU0qsuuDPzMCdB1mU8M8u1rVOdkqdoyFN8UFTw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 dev: false /@smithy/shared-ini-file-loader@2.2.0: resolution: {integrity: sha512-xFXqs4vAb5BdkzHSRrTapFoaqS4/3m/CGZzdw46fBjYZ0paYuLAoMY60ICCn1FfGirG+PiJ3eWcqJNe4/SkfyA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/shared-ini-file-loader@2.2.2: resolution: {integrity: sha512-noyQUPn7b1M8uB0GEXc/Zyxq+5K2b7aaqWnLp+hgJ7+xu/FCvtyWy5eWLDjQEsHnAet2IZhS5QF8872OR69uNg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/signature-v4@2.0.11: resolution: {integrity: sha512-EFVU1dT+2s8xi227l1A9O27edT/GNKvyAK6lZnIZ0zhIHq/jSLznvkk15aonGAM1kmhmZBVGpI7Tt0odueZK9A==} - engines: {node: ">=14.0.0"} - dependencies: - "@smithy/eventstream-codec": 2.0.11 - "@smithy/is-array-buffer": 2.0.0 - "@smithy/types": 2.4.0 - "@smithy/util-hex-encoding": 2.0.0 - "@smithy/util-middleware": 2.0.4 - "@smithy/util-uri-escape": 2.0.0 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@smithy/eventstream-codec': 2.0.11 + '@smithy/is-array-buffer': 2.0.0 + '@smithy/types': 2.4.0 + '@smithy/util-hex-encoding': 2.0.0 + '@smithy/util-middleware': 2.0.4 + '@smithy/util-uri-escape': 2.0.0 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 dev: false /@smithy/smithy-client@2.1.10: resolution: {integrity: sha512-2OEmZDiW1Z196QHuQZ5M6cBE8FCSG0H2HADP1G+DY8P3agsvb0YJyfhyKuJbxIQy15tr3eDAK6FOrlbxgKOOew==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/middleware-stack": 2.0.5 - "@smithy/types": 2.3.5 - "@smithy/util-stream": 2.0.17 + '@smithy/middleware-stack': 2.0.5 + '@smithy/types': 2.3.5 + '@smithy/util-stream': 2.0.17 tslib: 2.6.2 dev: false /@smithy/smithy-client@2.1.12: resolution: {integrity: sha512-XXqhridfkKnpj+lt8vM6HRlZbqUAqBjVC74JIi13F/AYQd/zTj9SOyGfxnbp4mjY9q28LityxIuV8CTinr9r5w==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/middleware-stack": 2.0.6 - "@smithy/types": 2.4.0 - "@smithy/util-stream": 2.0.17 + '@smithy/middleware-stack': 2.0.6 + '@smithy/types': 2.4.0 + '@smithy/util-stream': 2.0.17 tslib: 2.6.2 dev: false /@smithy/types@2.3.5: resolution: {integrity: sha512-ehyDt8M9hehyxrLQGoA1BGPou8Js1Ocoh5M0ngDhJMqbFmNK5N6Xhr9/ZExWkyIW8XcGkiMPq3ZUEE0ScrhbuQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false /@smithy/types@2.4.0: resolution: {integrity: sha512-iH1Xz68FWlmBJ9vvYeHifVMWJf82ONx+OybPW8ZGf5wnEv2S0UXcU4zwlwJkRXuLKpcSLHrraHbn2ucdVXLb4g==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false @@ -8665,24 +9009,24 @@ packages: /@smithy/url-parser@2.0.11: resolution: {integrity: sha512-h89yXMCCF+S5k9XIoKltMIWTYj+FcEkU/IIFZ6RtE222fskOTL4Iak6ZRG+ehSvZDt8yKEcxqheTDq7JvvtK3g==} dependencies: - "@smithy/querystring-parser": 2.0.11 - "@smithy/types": 2.3.5 + '@smithy/querystring-parser': 2.0.11 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/url-parser@2.0.12: resolution: {integrity: sha512-qgkW2mZqRvlNUcBkxYB/gYacRaAdck77Dk3/g2iw0S9F0EYthIS3loGfly8AwoWpIvHKhkTsCXXQfzksgZ4zIA==} dependencies: - "@smithy/querystring-parser": 2.0.12 - "@smithy/types": 2.4.0 + '@smithy/querystring-parser': 2.0.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/util-base64@2.0.0: resolution: {integrity: sha512-Zb1E4xx+m5Lud8bbeYi5FkcMJMnn+1WUnJF3qD7rAdXpaL7UjkFQLdmW5fHadoKbdHpwH9vSR8EyTJFHJs++tA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/util-buffer-from": 2.0.0 + '@smithy/util-buffer-from': 2.0.0 tslib: 2.6.2 dev: false @@ -8694,168 +9038,168 @@ packages: /@smithy/util-body-length-node@2.1.0: resolution: {integrity: sha512-/li0/kj/y3fQ3vyzn36NTLGmUwAICb7Jbe/CsWCktW363gh1MOcpEcSO3mJ344Gv2dqz8YJCLQpb6hju/0qOWw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false /@smithy/util-buffer-from@2.0.0: resolution: {integrity: sha512-/YNnLoHsR+4W4Vf2wL5lGv0ksg8Bmk3GEGxn2vEQt52AQaPSCuaO5PM5VM7lP1K9qHRKHwrPGktqVoAHKWHxzw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/is-array-buffer": 2.0.0 + '@smithy/is-array-buffer': 2.0.0 tslib: 2.6.2 dev: false /@smithy/util-config-provider@2.0.0: resolution: {integrity: sha512-xCQ6UapcIWKxXHEU4Mcs2s7LcFQRiU3XEluM2WcCjjBtQkUN71Tb+ydGmJFPxMUrW/GWMgQEEGipLym4XG0jZg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false /@smithy/util-defaults-mode-browser@2.0.14: resolution: {integrity: sha512-NupG7SWUucm3vJrvlpt9jG1XeoPJphjcivgcUUXhDJbUPy4F04LhlTiAhWSzwlCNcF8OJsMvZ/DWbpYD3pselw==} - engines: {node: ">= 10.0.0"} + engines: {node: '>= 10.0.0'} dependencies: - "@smithy/property-provider": 2.0.12 - "@smithy/smithy-client": 2.1.10 - "@smithy/types": 2.3.5 + '@smithy/property-provider': 2.0.12 + '@smithy/smithy-client': 2.1.10 + '@smithy/types': 2.3.5 bowser: 2.11.0 tslib: 2.6.2 dev: false /@smithy/util-defaults-mode-browser@2.0.16: resolution: {integrity: sha512-Uv5Cu8nVkuvLn0puX+R9zWbSNpLIR3AxUlPoLJ7hC5lvir8B2WVqVEkJLwtixKAncVLasnTVjPDCidtAUTGEQw==} - engines: {node: ">= 10.0.0"} + engines: {node: '>= 10.0.0'} dependencies: - "@smithy/property-provider": 2.0.13 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 + '@smithy/property-provider': 2.0.13 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 bowser: 2.11.0 tslib: 2.6.2 dev: false /@smithy/util-defaults-mode-node@2.0.18: resolution: {integrity: sha512-+3jMom/b/Cdp21tDnY4vKu249Al+G/P0HbRbct7/aSZDlROzv1tksaYukon6UUv7uoHn+/McqnsvqZHLlqvQ0g==} - engines: {node: ">= 10.0.0"} - dependencies: - "@smithy/config-resolver": 2.0.14 - "@smithy/credential-provider-imds": 2.0.16 - "@smithy/node-config-provider": 2.1.1 - "@smithy/property-provider": 2.0.12 - "@smithy/smithy-client": 2.1.10 - "@smithy/types": 2.3.5 + engines: {node: '>= 10.0.0'} + dependencies: + '@smithy/config-resolver': 2.0.14 + '@smithy/credential-provider-imds': 2.0.16 + '@smithy/node-config-provider': 2.1.1 + '@smithy/property-provider': 2.0.12 + '@smithy/smithy-client': 2.1.10 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/util-defaults-mode-node@2.0.21: resolution: {integrity: sha512-cUEsttVZ79B7Al2rWK2FW03HBpD9LyuqFtm+1qFty5u9sHSdesr215gS2Ln53fTopNiPgeXpdoM3IgjvIO0rJw==} - engines: {node: ">= 10.0.0"} - dependencies: - "@smithy/config-resolver": 2.0.16 - "@smithy/credential-provider-imds": 2.0.18 - "@smithy/node-config-provider": 2.1.3 - "@smithy/property-provider": 2.0.13 - "@smithy/smithy-client": 2.1.12 - "@smithy/types": 2.4.0 + engines: {node: '>= 10.0.0'} + dependencies: + '@smithy/config-resolver': 2.0.16 + '@smithy/credential-provider-imds': 2.0.18 + '@smithy/node-config-provider': 2.1.3 + '@smithy/property-provider': 2.0.13 + '@smithy/smithy-client': 2.1.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/util-endpoints@1.0.2: resolution: {integrity: sha512-QEdq+sP68IJHAMVB2ugKVVZEWeKQtZLuf+akHzc8eTVElsZ2ZdVLWC6Cp+uKjJ/t4yOj1qu6ZzyxJQEQ8jdEjg==} - engines: {node: ">= 14.0.0"} + engines: {node: '>= 14.0.0'} dependencies: - "@smithy/node-config-provider": 2.1.3 - "@smithy/types": 2.4.0 + '@smithy/node-config-provider': 2.1.3 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/util-hex-encoding@2.0.0: resolution: {integrity: sha512-c5xY+NUnFqG6d7HFh1IFfrm3mGl29lC+vF+geHv4ToiuJCBmIfzx6IeHLg+OgRdPFKDXIw6pvi+p3CsscaMcMA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false /@smithy/util-middleware@2.0.4: resolution: {integrity: sha512-Pbu6P4MBwRcjrLgdTR1O4Y3c0sTZn2JdOiJNcgL7EcIStcQodj+6ZTXtbyU/WTEU3MV2NMA10LxFc3AWHZ3+4A==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/util-middleware@2.0.5: resolution: {integrity: sha512-1lyT3TcaMJQe+OFfVI+TlomDkPuVzb27NZYdYtmSTltVmLaUjdCyt4KE+OH1CnhZKsz4/cdCL420Lg9UH5Z2Mw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/types": 2.4.0 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/util-retry@2.0.4: resolution: {integrity: sha512-b+n1jBBKc77C1E/zfBe1Zo7S9OXGBiGn55N0apfhZHxPUP/fMH5AhFUUcWaJh7NAnah284M5lGkBKuhnr3yK5w==} - engines: {node: ">= 14.0.0"} + engines: {node: '>= 14.0.0'} dependencies: - "@smithy/service-error-classification": 2.0.4 - "@smithy/types": 2.3.5 + '@smithy/service-error-classification': 2.0.4 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/util-retry@2.0.5: resolution: {integrity: sha512-x3t1+MQAJ6QONk3GTbJNcugCFDVJ+Bkro5YqQQK1EyVesajNDqxFtCx9WdOFNGm/Cbm7tUdwVEmfKQOJoU2Vtw==} - engines: {node: ">= 14.0.0"} + engines: {node: '>= 14.0.0'} dependencies: - "@smithy/service-error-classification": 2.0.5 - "@smithy/types": 2.4.0 + '@smithy/service-error-classification': 2.0.5 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false /@smithy/util-stream@2.0.17: resolution: {integrity: sha512-fP/ZQ27rRvHsqItds8yB7jerwMpZFTL3QqbQbidUiG0+mttMoKdP0ZqnvM8UK5q0/dfc3/pN7g4XKPXOU7oRWw==} - engines: {node: ">=14.0.0"} - dependencies: - "@smithy/fetch-http-handler": 2.2.4 - "@smithy/node-http-handler": 2.1.8 - "@smithy/types": 2.4.0 - "@smithy/util-base64": 2.0.0 - "@smithy/util-buffer-from": 2.0.0 - "@smithy/util-hex-encoding": 2.0.0 - "@smithy/util-utf8": 2.0.0 + engines: {node: '>=14.0.0'} + dependencies: + '@smithy/fetch-http-handler': 2.2.4 + '@smithy/node-http-handler': 2.1.8 + '@smithy/types': 2.4.0 + '@smithy/util-base64': 2.0.0 + '@smithy/util-buffer-from': 2.0.0 + '@smithy/util-hex-encoding': 2.0.0 + '@smithy/util-utf8': 2.0.0 tslib: 2.6.2 dev: false /@smithy/util-uri-escape@2.0.0: resolution: {integrity: sha512-ebkxsqinSdEooQduuk9CbKcI+wheijxEb3utGXkCoYQkJnwTnLbH1JXGimJtUkQwNQbsbuYwG2+aFVyZf5TLaw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false /@smithy/util-utf8@2.0.0: resolution: {integrity: sha512-rctU1VkziY84n5OXe3bPNpKR001ZCME2JCaBBFgtiM2hfKbHFudc/BkMuPab8hRbLd0j3vbnBTTZ1igBf0wgiQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/util-buffer-from": 2.0.0 + '@smithy/util-buffer-from': 2.0.0 tslib: 2.6.2 dev: false /@smithy/util-waiter@2.0.11: resolution: {integrity: sha512-8SJWUl9O1YhjC77EccgltI3q4XZQp3vp9DGEW6o0OdkUcwqm/H4qOLnMkA2n+NDojuM5Iia2jWoCdbluIiG7TA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/abort-controller": 2.0.11 - "@smithy/types": 2.3.5 + '@smithy/abort-controller': 2.0.11 + '@smithy/types': 2.3.5 tslib: 2.6.2 dev: false /@smithy/util-waiter@2.0.12: resolution: {integrity: sha512-3sENmyVa1NnOPoiT2NCApPmu7ukP7S/v7kL9IxNmnygkDldn7/yK0TP42oPJLwB2k3mospNsSePIlqdXEUyPHA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: - "@smithy/abort-controller": 2.0.12 - "@smithy/types": 2.4.0 + '@smithy/abort-controller': 2.0.12 + '@smithy/types': 2.4.0 tslib: 2.6.2 dev: false @@ -8870,14 +9214,14 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/components': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.4.6 + '@storybook/theming': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.4.6 dequal: 2.0.3 lodash: 4.17.21 polished: 4.2.2 @@ -8889,8 +9233,8 @@ packages: ts-dedent: 2.2.0 uuid: 9.0.1 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' dev: true /@storybook/addon-backgrounds@7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): @@ -8904,21 +9248,21 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/components': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.4.6 + '@storybook/theming': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.4.6 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' dev: true /@storybook/addon-controls@7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): @@ -8932,23 +9276,23 @@ packages: react-dom: optional: true dependencies: - "@storybook/blocks": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-common": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/node-logger": 7.4.6 - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + '@storybook/blocks': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.4.6 + '@storybook/components': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-common': 7.4.6 + '@storybook/core-events': 7.4.6 + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/node-logger': 7.4.6 + '@storybook/preview-api': 7.4.6 + '@storybook/theming': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.4.6 lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - supports-color dev: true @@ -8959,21 +9303,21 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@jest/transform": 29.7.0 - "@mdx-js/react": 2.3.0(react@18.2.0) - "@storybook/blocks": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/csf-plugin": 7.4.6 - "@storybook/csf-tools": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/mdx2-csf": 1.1.0 - "@storybook/node-logger": 7.4.6 - "@storybook/postinstall": 7.4.6 - "@storybook/preview-api": 7.4.6 - "@storybook/react-dom-shim": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + '@jest/transform': 29.7.0 + '@mdx-js/react': 2.3.0(react@18.2.0) + '@storybook/blocks': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.4.6 + '@storybook/components': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/csf-plugin': 7.4.6 + '@storybook/csf-tools': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/mdx2-csf': 1.1.0 + '@storybook/node-logger': 7.4.6 + '@storybook/postinstall': 7.4.6 + '@storybook/preview-api': 7.4.6 + '@storybook/react-dom-shim': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.4.6 fs-extra: 11.1.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -8981,8 +9325,8 @@ packages: remark-slug: 6.1.0 ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - supports-color dev: true @@ -8993,25 +9337,25 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@storybook/addon-actions": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-backgrounds": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-controls": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-docs": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-highlight": 7.4.6 - "@storybook/addon-measure": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-outline": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-toolbars": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-viewport": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-common": 7.4.6 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/node-logger": 7.4.6 - "@storybook/preview-api": 7.4.6 + '@storybook/addon-actions': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-backgrounds': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-controls': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-docs': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-highlight': 7.4.6 + '@storybook/addon-measure': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-outline': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-toolbars': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/addon-viewport': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-common': 7.4.6 + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/node-logger': 7.4.6 + '@storybook/preview-api': 7.4.6 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - supports-color dev: true @@ -9019,9 +9363,9 @@ packages: /@storybook/addon-highlight@7.4.6: resolution: {integrity: sha512-zCufxxD2KS5VwczxfkcBxe1oR/juTTn2H1Qm8kYvWCJQx3UxzX0+G9cwafbpV7eivqaufLweEwROkH+0KjAtkQ==} dependencies: - "@storybook/core-events": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.4.6 + '@storybook/core-events': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/preview-api': 7.4.6 dev: true /@storybook/addon-interactions@7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): @@ -9035,24 +9379,24 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-common": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/instrumenter": 7.4.6 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/components': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-common': 7.4.6 + '@storybook/core-events': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/instrumenter': 7.4.6 + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.4.6 + '@storybook/theming': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.4.6 jest-mock: 27.5.1 polished: 4.2.2 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - supports-color dev: true @@ -9068,14 +9412,14 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/csf": 0.1.1 - "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/router": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/core-events': 7.4.6 + '@storybook/csf': 0.1.1 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.4.6 + '@storybook/router': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.4.6 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -9093,19 +9437,19 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/types": 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/components': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.4.6 + '@storybook/types': 7.4.6 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) tiny-invariant: 1.3.1 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' dev: true /@storybook/addon-outline@7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): @@ -9119,19 +9463,19 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/types": 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/components': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.4.6 + '@storybook/types': 7.4.6 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' dev: true /@storybook/addon-toolbars@7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): @@ -9145,16 +9489,16 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.4.6 + '@storybook/components': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.4.6 + '@storybook/theming': 7.4.6(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' dev: true /@storybook/addon-viewport@7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): @@ -9168,20 +9512,20 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.4.6 + '@storybook/components': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.4.6 + '@storybook/theming': 7.4.6(react-dom@18.2.0)(react@18.2.0) memoizerific: 1.11.3 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' dev: true /@storybook/blocks@7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0): @@ -9190,18 +9534,18 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@storybook/channels": 7.4.6 - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 - "@storybook/csf": 0.1.1 - "@storybook/docs-tools": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 - "@types/lodash": 4.14.199 + '@storybook/channels': 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/components': 7.4.6(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/core-events': 7.4.6 + '@storybook/csf': 0.1.1 + '@storybook/docs-tools': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/preview-api': 7.4.6 + '@storybook/theming': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.4.6 + '@types/lodash': 4.14.199 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 @@ -9216,8 +9560,8 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - supports-color dev: true @@ -9225,13 +9569,13 @@ packages: /@storybook/builder-manager@7.4.6: resolution: {integrity: sha512-zylZCD2rmyLOOFBFmUgtJg6UNUKmRNgXiig1XApzS2TkIbTZP827DsVEUl0ey/lskCe0uArkrEBR6ICba8p/Rw==} dependencies: - "@fal-works/esbuild-plugin-global-externals": 2.1.2 - "@storybook/core-common": 7.4.6 - "@storybook/manager": 7.4.6 - "@storybook/node-logger": 7.4.6 - "@types/ejs": 3.1.3 - "@types/find-cache-dir": 3.2.1 - "@yarnpkg/esbuild-plugin-pnp": 3.0.0-rc.15(esbuild@0.18.20) + '@fal-works/esbuild-plugin-global-externals': 2.1.2 + '@storybook/core-common': 7.4.6 + '@storybook/manager': 7.4.6 + '@storybook/node-logger': 7.4.6 + '@types/ejs': 3.1.3 + '@types/find-cache-dir': 3.2.1 + '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20) browser-assert: 1.2.1 ejs: 3.1.9 esbuild: 0.18.20 @@ -9249,28 +9593,28 @@ packages: /@storybook/builder-vite@7.4.6(typescript@5.2.2)(vite@4.4.11): resolution: {integrity: sha512-xV9STYK+TkqWWTf2ydm6jx+7P70fjD2UPd1XTUw08uKszIjhuuxk+bG/OF5R1E25mPunAKXm6kBFh351AKejBg==} peerDependencies: - "@preact/preset-vite": "*" - typescript: ">= 4.3.x" + '@preact/preset-vite': '*' + typescript: '>= 4.3.x' vite: ^3.0.0 || ^4.0.0 - vite-plugin-glimmerx: "*" + vite-plugin-glimmerx: '*' peerDependenciesMeta: - "@preact/preset-vite": + '@preact/preset-vite': optional: true typescript: optional: true vite-plugin-glimmerx: optional: true dependencies: - "@storybook/channels": 7.4.6 - "@storybook/client-logger": 7.4.6 - "@storybook/core-common": 7.4.6 - "@storybook/csf-plugin": 7.4.6 - "@storybook/mdx2-csf": 1.1.0 - "@storybook/node-logger": 7.4.6 - "@storybook/preview": 7.4.6 - "@storybook/preview-api": 7.4.6 - "@storybook/types": 7.4.6 - "@types/find-cache-dir": 3.2.1 + '@storybook/channels': 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/core-common': 7.4.6 + '@storybook/csf-plugin': 7.4.6 + '@storybook/mdx2-csf': 1.1.0 + '@storybook/node-logger': 7.4.6 + '@storybook/preview': 7.4.6 + '@storybook/preview-api': 7.4.6 + '@storybook/types': 7.4.6 + '@types/find-cache-dir': 3.2.1 browser-assert: 1.2.1 es-module-lexer: 0.9.3 express: 4.18.2 @@ -9290,9 +9634,9 @@ packages: /@storybook/channels@7.4.6: resolution: {integrity: sha512-yPv/sfo2c18fM3fvG0i1xse63vG8l33Al/OU0k/dtovltPu001/HVa1QgBgsb/QrEfZtvGjGhmtdVeYb39fv3A==} dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/global": 5.0.0 + '@storybook/client-logger': 7.4.6 + '@storybook/core-events': 7.4.6 + '@storybook/global': 5.0.0 qs: 6.11.2 telejson: 7.2.0 tiny-invariant: 1.3.1 @@ -9302,21 +9646,21 @@ packages: resolution: {integrity: sha512-rRwaH8pOL+FHz/pJMEkNpMH2xvZvWsrl7obBYw26NQiHmiVSAkfHJicndSN1mwc+p5w+9iXthrgzbLtSAOSvkA==} hasBin: true dependencies: - "@babel/core": 7.23.0 - "@babel/preset-env": 7.22.20(@babel/core@7.23.0) - "@babel/types": 7.23.0 - "@ndelangen/get-tarball": 3.0.9 - "@storybook/codemod": 7.4.6 - "@storybook/core-common": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/core-server": 7.4.6 - "@storybook/csf-tools": 7.4.6 - "@storybook/node-logger": 7.4.6 - "@storybook/telemetry": 7.4.6 - "@storybook/types": 7.4.6 - "@types/semver": 7.5.3 - "@yarnpkg/fslib": 2.10.3 - "@yarnpkg/libzip": 2.3.0 + '@babel/core': 7.23.0 + '@babel/preset-env': 7.22.20(@babel/core@7.23.0) + '@babel/types': 7.23.0 + '@ndelangen/get-tarball': 3.0.9 + '@storybook/codemod': 7.4.6 + '@storybook/core-common': 7.4.6 + '@storybook/core-events': 7.4.6 + '@storybook/core-server': 7.4.6 + '@storybook/csf-tools': 7.4.6 + '@storybook/node-logger': 7.4.6 + '@storybook/telemetry': 7.4.6 + '@storybook/types': 7.4.6 + '@types/semver': 7.5.3 + '@yarnpkg/fslib': 2.10.3 + '@yarnpkg/libzip': 2.3.0 chalk: 4.1.2 commander: 6.2.1 cross-spawn: 7.0.3 @@ -9353,20 +9697,20 @@ packages: /@storybook/client-logger@7.4.6: resolution: {integrity: sha512-XDw31ZziU//86PKuMRnmc+L/G0VopaGKENQOGEpvAXCU9IZASwGKlKAtcyosjrpi+ZiUXlMgUXCpXM7x3b1Ehw==} dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 dev: true /@storybook/codemod@7.4.6: resolution: {integrity: sha512-lxmwEpwksCaAq96APN2YlooSDfKjJ1vKzN5Ni2EqQzf2TEXl7XQjLacHd7OOaII1kfsy+D5gNG4N5wBo7Ub30g==} dependencies: - "@babel/core": 7.23.0 - "@babel/preset-env": 7.22.20(@babel/core@7.23.0) - "@babel/types": 7.23.0 - "@storybook/csf": 0.1.1 - "@storybook/csf-tools": 7.4.6 - "@storybook/node-logger": 7.4.6 - "@storybook/types": 7.4.6 - "@types/cross-spawn": 6.0.3 + '@babel/core': 7.23.0 + '@babel/preset-env': 7.22.20(@babel/core@7.23.0) + '@babel/types': 7.23.0 + '@storybook/csf': 0.1.1 + '@storybook/csf-tools': 7.4.6 + '@storybook/node-logger': 7.4.6 + '@storybook/types': 7.4.6 + '@types/cross-spawn': 6.0.3 cross-spawn: 7.0.3 globby: 11.1.0 jscodeshift: 0.14.0(@babel/preset-env@7.22.20) @@ -9383,40 +9727,40 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@radix-ui/react-select": 1.2.2(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-toolbar": 1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/client-logger": 7.4.6 - "@storybook/csf": 0.1.1 - "@storybook/global": 5.0.0 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + '@radix-ui/react-select': 1.2.2(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-toolbar': 1.0.4(@types/react@18.2.25)(react-dom@18.2.0)(react@18.2.0) + '@storybook/client-logger': 7.4.6 + '@storybook/csf': 0.1.1 + '@storybook/global': 5.0.0 + '@storybook/theming': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.4.6 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-resize-observer: 9.1.0(react-dom@18.2.0)(react@18.2.0) util-deprecate: 1.0.2 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' dev: true /@storybook/core-client@7.4.6: resolution: {integrity: sha512-tfgxAHeCvMcs6DsVgtb4hQSDaCHeAPJOsoyhb47eDQfk4OmxzriM0qWucJV5DePSMi+KutX/rN2u0JxfOuN68g==} dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/preview-api": 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/preview-api': 7.4.6 dev: true /@storybook/core-common@7.4.6: resolution: {integrity: sha512-05MJFmOM86qvTLtgDskokIFz9txe0Lbhq4L3by1FtF0GwgH+p+W6I94KI7c6ANER+kVZkXQZhiRzwBFnVTW+Cg==} dependencies: - "@storybook/core-events": 7.4.6 - "@storybook/node-logger": 7.4.6 - "@storybook/types": 7.4.6 - "@types/find-cache-dir": 3.2.1 - "@types/node": 16.18.58 - "@types/node-fetch": 2.6.6 - "@types/pretty-hrtime": 1.0.1 + '@storybook/core-events': 7.4.6 + '@storybook/node-logger': 7.4.6 + '@storybook/types': 7.4.6 + '@types/find-cache-dir': 3.2.1 + '@types/node': 16.18.58 + '@types/node-fetch': 2.6.6 + '@types/pretty-hrtime': 1.0.1 chalk: 4.1.2 esbuild: 0.18.20 esbuild-register: 3.5.0(esbuild@0.18.20) @@ -9447,25 +9791,25 @@ packages: /@storybook/core-server@7.4.6: resolution: {integrity: sha512-jqmRTGCJ1W0WReImivkisPVaLFT5sjtLnFoAk0feHp6QS5j7EYOPN7CYzliyQmARWTLUEXOVaFf3VD6nJZQhJQ==} dependencies: - "@aw-web-design/x-default-browser": 1.4.126 - "@discoveryjs/json-ext": 0.5.7 - "@storybook/builder-manager": 7.4.6 - "@storybook/channels": 7.4.6 - "@storybook/core-common": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/csf": 0.1.1 - "@storybook/csf-tools": 7.4.6 - "@storybook/docs-mdx": 0.1.0 - "@storybook/global": 5.0.0 - "@storybook/manager": 7.4.6 - "@storybook/node-logger": 7.4.6 - "@storybook/preview-api": 7.4.6 - "@storybook/telemetry": 7.4.6 - "@storybook/types": 7.4.6 - "@types/detect-port": 1.3.3 - "@types/node": 16.18.58 - "@types/pretty-hrtime": 1.0.1 - "@types/semver": 7.5.3 + '@aw-web-design/x-default-browser': 1.4.126 + '@discoveryjs/json-ext': 0.5.7 + '@storybook/builder-manager': 7.4.6 + '@storybook/channels': 7.4.6 + '@storybook/core-common': 7.4.6 + '@storybook/core-events': 7.4.6 + '@storybook/csf': 0.1.1 + '@storybook/csf-tools': 7.4.6 + '@storybook/docs-mdx': 0.1.0 + '@storybook/global': 5.0.0 + '@storybook/manager': 7.4.6 + '@storybook/node-logger': 7.4.6 + '@storybook/preview-api': 7.4.6 + '@storybook/telemetry': 7.4.6 + '@storybook/types': 7.4.6 + '@types/detect-port': 1.3.3 + '@types/node': 16.18.58 + '@types/pretty-hrtime': 1.0.1 + '@types/semver': 7.5.3 better-opn: 3.0.2 chalk: 4.1.2 cli-table3: 0.6.3 @@ -9498,7 +9842,7 @@ packages: /@storybook/csf-plugin@7.4.6: resolution: {integrity: sha512-yi7Qa4NSqKOyiJTWCxlB0ih2ijXq6oY5qZKW6MuMMBP14xJNRGLbH5KabpfXgN2T7YECcOWG1uWaGj2veJb1KA==} dependencies: - "@storybook/csf-tools": 7.4.6 + '@storybook/csf-tools': 7.4.6 unplugin: 1.5.0 transitivePeerDependencies: - supports-color @@ -9507,12 +9851,12 @@ packages: /@storybook/csf-tools@7.4.6: resolution: {integrity: sha512-ocKpcIUtTBy6hlLY34RUFQyX403cWpB2gGfqvkHbpGe2BQj7EyV0zpWnjsfVxvw+M9OWlCdxHWDOPUgXM33ELw==} dependencies: - "@babel/generator": 7.23.0 - "@babel/parser": 7.23.0 - "@babel/traverse": 7.23.0 - "@babel/types": 7.23.0 - "@storybook/csf": 0.1.1 - "@storybook/types": 7.4.6 + '@babel/generator': 7.23.0 + '@babel/parser': 7.23.0 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 + '@storybook/csf': 0.1.1 + '@storybook/types': 7.4.6 fs-extra: 11.1.1 recast: 0.23.4 ts-dedent: 2.2.0 @@ -9533,10 +9877,10 @@ packages: /@storybook/docs-tools@7.4.6: resolution: {integrity: sha512-nZj1L/8WwKWWJ41FW4MaKGajZUtrhnr9UwflRCkQJaWhAKmDfOb5M5TqI93uCOULpFPOm5wpoMBz2IHInQ2Lrg==} dependencies: - "@storybook/core-common": 7.4.6 - "@storybook/preview-api": 7.4.6 - "@storybook/types": 7.4.6 - "@types/doctrine": 0.0.3 + '@storybook/core-common': 7.4.6 + '@storybook/preview-api': 7.4.6 + '@storybook/types': 7.4.6 + '@types/doctrine': 0.0.3 doctrine: 3.0.0 lodash: 4.17.21 transitivePeerDependencies: @@ -9551,11 +9895,11 @@ packages: /@storybook/instrumenter@7.4.6: resolution: {integrity: sha512-K5atRoVFCl6HEgkSxIbwygpzgE/iROc7BrtJ3z3a7E70sanFr6Jxt6Egu6fz2QkL3ef4EWpXMnle2vhEfG29pA==} dependencies: - "@storybook/channels": 7.4.6 - "@storybook/client-logger": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.4.6 + '@storybook/channels': 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/core-events': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/preview-api': 7.4.6 dev: true /@storybook/manager-api@7.4.6(react-dom@18.2.0)(react@18.2.0): @@ -9564,14 +9908,14 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@storybook/channels": 7.4.6 - "@storybook/client-logger": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/csf": 0.1.1 - "@storybook/global": 5.0.0 - "@storybook/router": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + '@storybook/channels': 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/core-events': 7.4.6 + '@storybook/csf': 0.1.1 + '@storybook/global': 5.0.0 + '@storybook/router': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/theming': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.4.6 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -9602,13 +9946,13 @@ packages: /@storybook/preview-api@7.4.6: resolution: {integrity: sha512-byUS/Opt3ytWD4cWz3sNEKw5Yks8MkQgRN+GDSyIomaEAQkLAM0rchPC0MYjwCeUSecV7IIQweNX5RbV4a34BA==} dependencies: - "@storybook/channels": 7.4.6 - "@storybook/client-logger": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/csf": 0.1.1 - "@storybook/global": 5.0.0 - "@storybook/types": 7.4.6 - "@types/qs": 6.9.8 + '@storybook/channels': 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/core-events': 7.4.6 + '@storybook/csf': 0.1.1 + '@storybook/global': 5.0.0 + '@storybook/types': 7.4.6 + '@types/qs': 6.9.8 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -9634,17 +9978,17 @@ packages: /@storybook/react-vite@7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.4.11): resolution: {integrity: sha512-jkjnrf3FxzR5wcmebXRPflrsM4WIDjWyW/NVFJwxi5PeIOk7fE7/QAPrm4NFRUu2Q7DeuH3oLKsw8bigvUI9RA==} - engines: {node: ">=16"} + engines: {node: '>=16'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 vite: ^3.0.0 || ^4.0.0 dependencies: - "@joshwooding/vite-plugin-react-docgen-typescript": 0.2.1(typescript@5.2.2)(vite@4.4.11) - "@rollup/pluginutils": 5.0.5 - "@storybook/builder-vite": 7.4.6(typescript@5.2.2)(vite@4.4.11) - "@storybook/react": 7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) - "@vitejs/plugin-react": 3.1.0(vite@4.4.11) + '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1(typescript@5.2.2)(vite@4.4.11) + '@rollup/pluginutils': 5.0.5 + '@storybook/builder-vite': 7.4.6(typescript@5.2.2)(vite@4.4.11) + '@storybook/react': 7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) + '@vitejs/plugin-react': 3.1.0(vite@4.4.11) ast-types: 0.14.2 magic-string: 0.30.4 react: 18.2.0 @@ -9652,7 +9996,7 @@ packages: react-dom: 18.2.0(react@18.2.0) vite: 4.4.11(@types/node@18.18.4) transitivePeerDependencies: - - "@preact/preset-vite" + - '@preact/preset-vite' - encoding - rollup - supports-color @@ -9662,25 +10006,25 @@ packages: /@storybook/react@7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-w0dVo64baFFPTGpUOWFqkKsu6pQincoymegSNgqaBd5DxEyMDRiRoTWSJHMKE9BwgE8SyWhRkP1ak1mkccSOhQ==} - engines: {node: ">=16.0.0"} + engines: {node: '>=16.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/core-client": 7.4.6 - "@storybook/docs-tools": 7.4.6 - "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.4.6 - "@storybook/react-dom-shim": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 - "@types/escodegen": 0.0.6 - "@types/estree": 0.0.51 - "@types/node": 16.18.58 + '@storybook/client-logger': 7.4.6 + '@storybook/core-client': 7.4.6 + '@storybook/docs-tools': 7.4.6 + '@storybook/global': 5.0.0 + '@storybook/preview-api': 7.4.6 + '@storybook/react-dom-shim': 7.4.6(react-dom@18.2.0)(react@18.2.0) + '@storybook/types': 7.4.6 + '@types/escodegen': 0.0.6 + '@types/estree': 0.0.51 + '@types/node': 16.18.58 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 @@ -9706,7 +10050,7 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@storybook/client-logger": 7.4.6 + '@storybook/client-logger': 7.4.6 memoizerific: 1.11.3 qs: 6.11.2 react: 18.2.0 @@ -9716,9 +10060,9 @@ packages: /@storybook/telemetry@7.4.6: resolution: {integrity: sha512-c8p/C1NIH8EMBviZkBCx8MMDk6rrITJ+b29DEp5MaWSRlklIVyhGiC4RPIRv6sxJwlD41PnqWVFtfu2j2eXLdQ==} dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/core-common": 7.4.6 - "@storybook/csf-tools": 7.4.6 + '@storybook/client-logger': 7.4.6 + '@storybook/core-common': 7.4.6 + '@storybook/csf-tools': 7.4.6 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 @@ -9732,10 +10076,10 @@ packages: /@storybook/testing-library@0.1.0: resolution: {integrity: sha512-g947f4LJZw3IluBhysMKLJXByAFiSxnGuooENqU+ZPt/GTrz1I9GDBlhmoTJahuFkVbwHvziAl/8riY2Re921g==} dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/instrumenter": 7.4.6 - "@testing-library/dom": 8.20.1 - "@testing-library/user-event": 13.5.0(@testing-library/dom@8.20.1) + '@storybook/client-logger': 7.4.6 + '@storybook/instrumenter': 7.4.6 + '@testing-library/dom': 8.20.1 + '@testing-library/user-event': 13.5.0(@testing-library/dom@8.20.1) ts-dedent: 2.2.0 dev: true @@ -9745,9 +10089,9 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) - "@storybook/client-logger": 7.4.6 - "@storybook/global": 5.0.0 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@storybook/client-logger': 7.4.6 + '@storybook/global': 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -9756,15 +10100,15 @@ packages: /@storybook/types@7.4.6: resolution: {integrity: sha512-6QLXtMVsFZFpzPkdGWsu/iuc8na9dnS67AMOBKm5qCLPwtUJOYkwhMdFRSSeJthLRpzV7JLAL8Kwvl7MFP3QSw==} dependencies: - "@storybook/channels": 7.4.6 - "@types/babel__core": 7.20.2 - "@types/express": 4.17.18 + '@storybook/channels': 7.4.6 + '@types/babel__core': 7.20.2 + '@types/express': 4.17.18 file-system-cache: 2.3.0 dev: true /@swc/core-darwin-arm64@1.3.92: resolution: {integrity: sha512-v7PqZUBtIF6Q5Cp48gqUiG8zQQnEICpnfNdoiY3xjQAglCGIQCjJIDjreZBoeZQZspB27lQN4eZ43CX18+2SnA==} - engines: {node: ">=10"} + engines: {node: '>=10'} cpu: [arm64] os: [darwin] requiresBuild: true @@ -9773,7 +10117,7 @@ packages: /@swc/core-darwin-x64@1.3.92: resolution: {integrity: sha512-Q3XIgQfXyxxxms3bPN+xGgvwk0TtG9l89IomApu+yTKzaIIlf051mS+lGngjnh9L0aUiCp6ICyjDLtutWP54fw==} - engines: {node: ">=10"} + engines: {node: '>=10'} cpu: [x64] os: [darwin] requiresBuild: true @@ -9782,7 +10126,7 @@ packages: /@swc/core-linux-arm-gnueabihf@1.3.92: resolution: {integrity: sha512-tnOCoCpNVXC+0FCfG84PBZJyLlz0Vfj9MQhyhCvlJz9hQmvpf8nTdKH7RHrOn8VfxtUBLdVi80dXgIFgbvl7qA==} - engines: {node: ">=10"} + engines: {node: '>=10'} cpu: [arm] os: [linux] requiresBuild: true @@ -9791,7 +10135,7 @@ packages: /@swc/core-linux-arm64-gnu@1.3.92: resolution: {integrity: sha512-lFfGhX32w8h1j74Iyz0Wv7JByXIwX11OE9UxG+oT7lG0RyXkF4zKyxP8EoxfLrDXse4Oop434p95e3UNC3IfCw==} - engines: {node: ">=10"} + engines: {node: '>=10'} cpu: [arm64] os: [linux] requiresBuild: true @@ -9800,7 +10144,7 @@ packages: /@swc/core-linux-arm64-musl@1.3.92: resolution: {integrity: sha512-rOZtRcLj57MSAbiecMsqjzBcZDuaCZ8F6l6JDwGkQ7u1NYR57cqF0QDyU7RKS1Jq27Z/Vg21z5cwqoH5fLN+Sg==} - engines: {node: ">=10"} + engines: {node: '>=10'} cpu: [arm64] os: [linux] requiresBuild: true @@ -9809,7 +10153,7 @@ packages: /@swc/core-linux-x64-gnu@1.3.92: resolution: {integrity: sha512-qptoMGnBL6v89x/Qpn+l1TH1Y0ed+v0qhNfAEVzZvCvzEMTFXphhlhYbDdpxbzRmCjH6GOGq7Y+xrWt9T1/ARg==} - engines: {node: ">=10"} + engines: {node: '>=10'} cpu: [x64] os: [linux] requiresBuild: true @@ -9818,7 +10162,7 @@ packages: /@swc/core-linux-x64-musl@1.3.92: resolution: {integrity: sha512-g2KrJ43bZkCZHH4zsIV5ErojuV1OIpUHaEyW1gf7JWKaFBpWYVyubzFPvPkjcxHGLbMsEzO7w/NVfxtGMlFH/Q==} - engines: {node: ">=10"} + engines: {node: '>=10'} cpu: [x64] os: [linux] requiresBuild: true @@ -9827,7 +10171,7 @@ packages: /@swc/core-win32-arm64-msvc@1.3.92: resolution: {integrity: sha512-3MCRGPAYDoQ8Yyd3WsCMc8eFSyKXY5kQLyg/R5zEqA0uthomo0m0F5/fxAJMZGaSdYkU1DgF73ctOWOf+Z/EzQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} cpu: [arm64] os: [win32] requiresBuild: true @@ -9836,7 +10180,7 @@ packages: /@swc/core-win32-ia32-msvc@1.3.92: resolution: {integrity: sha512-zqTBKQhgfWm73SVGS8FKhFYDovyRl1f5dTX1IwSKynO0qHkRCqJwauFJv/yevkpJWsI2pFh03xsRs9HncTQKSA==} - engines: {node: ">=10"} + engines: {node: '>=10'} cpu: [ia32] os: [win32] requiresBuild: true @@ -9845,7 +10189,7 @@ packages: /@swc/core-win32-x64-msvc@1.3.92: resolution: {integrity: sha512-41bE66ddr9o/Fi1FBh0sHdaKdENPTuDpv1IFHxSg0dJyM/jX8LbkjnpdInYXHBxhcLVAPraVRrNsC4SaoPw2Pg==} - engines: {node: ">=10"} + engines: {node: '>=10'} cpu: [x64] os: [win32] requiresBuild: true @@ -9854,27 +10198,27 @@ packages: /@swc/core@1.3.92: resolution: {integrity: sha512-vx0vUrf4YTEw59njOJ46Ha5i0cZTMYdRHQ7KXU29efN1MxcmJH2RajWLPlvQarOP1ab9iv9cApD7SMchDyx2vA==} - engines: {node: ">=10"} + engines: {node: '>=10'} requiresBuild: true peerDependencies: - "@swc/helpers": ^0.5.0 + '@swc/helpers': ^0.5.0 peerDependenciesMeta: - "@swc/helpers": + '@swc/helpers': optional: true dependencies: - "@swc/counter": 0.1.2 - "@swc/types": 0.1.5 + '@swc/counter': 0.1.2 + '@swc/types': 0.1.5 optionalDependencies: - "@swc/core-darwin-arm64": 1.3.92 - "@swc/core-darwin-x64": 1.3.92 - "@swc/core-linux-arm-gnueabihf": 1.3.92 - "@swc/core-linux-arm64-gnu": 1.3.92 - "@swc/core-linux-arm64-musl": 1.3.92 - "@swc/core-linux-x64-gnu": 1.3.92 - "@swc/core-linux-x64-musl": 1.3.92 - "@swc/core-win32-arm64-msvc": 1.3.92 - "@swc/core-win32-ia32-msvc": 1.3.92 - "@swc/core-win32-x64-msvc": 1.3.92 + '@swc/core-darwin-arm64': 1.3.92 + '@swc/core-darwin-x64': 1.3.92 + '@swc/core-linux-arm-gnueabihf': 1.3.92 + '@swc/core-linux-arm64-gnu': 1.3.92 + '@swc/core-linux-arm64-musl': 1.3.92 + '@swc/core-linux-x64-gnu': 1.3.92 + '@swc/core-linux-x64-musl': 1.3.92 + '@swc/core-win32-arm64-msvc': 1.3.92 + '@swc/core-win32-ia32-msvc': 1.3.92 + '@swc/core-win32-x64-msvc': 1.3.92 dev: true /@swc/counter@0.1.2: @@ -9887,7 +10231,7 @@ packages: /@szmarczak/http-timer@5.0.1: resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: defer-to-connect: 2.0.1 dev: true @@ -9895,7 +10239,7 @@ packages: /@tailwindcss/forms@0.5.6(tailwindcss@3.3.3): resolution: {integrity: sha512-Fw+2BJ0tmAwK/w01tEFL5TiaJBX1NLT1/YbWgvm7ws3Qcn11kiXxzNTEQDMs5V3mQemhB56l3u0i9dwdzSQldA==} peerDependencies: - tailwindcss: ">=3.0.0 || >= 3.0.0-alpha.1" + tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1' dependencies: mini-svg-data-uri: 1.4.4 tailwindcss: 3.3.3 @@ -9909,14 +10253,14 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-native: "*" + react-native: '*' peerDependenciesMeta: react-dom: optional: true react-native: optional: true dependencies: - "@tanstack/query-core": 4.36.1 + '@tanstack/query-core': 4.36.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-sync-external-store: 1.2.0(react@18.2.0) @@ -9924,11 +10268,11 @@ packages: /@testing-library/dom@8.20.1: resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: - "@babel/code-frame": 7.22.13 - "@babel/runtime": 7.23.1 - "@types/aria-query": 5.0.2 + '@babel/code-frame': 7.22.13 + '@babel/runtime': 7.23.1 + '@types/aria-query': 5.0.2 aria-query: 5.1.3 chalk: 4.1.2 dom-accessibility-api: 0.5.16 @@ -9938,11 +10282,11 @@ packages: /@testing-library/dom@9.3.3: resolution: {integrity: sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==} - engines: {node: ">=14"} + engines: {node: '>=14'} dependencies: - "@babel/code-frame": 7.22.13 - "@babel/runtime": 7.23.1 - "@types/aria-query": 5.0.2 + '@babel/code-frame': 7.22.13 + '@babel/runtime': 7.23.1 + '@types/aria-query': 5.0.2 aria-query: 5.1.3 chalk: 4.1.2 dom-accessibility-api: 0.5.16 @@ -9952,56 +10296,56 @@ packages: /@testing-library/react@14.0.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-S04gSNJbYE30TlIMLTzv6QCTzt9AqIF5y6s6SzVFILNcNvbV/jU96GeiTPillGQo+Ny64M/5PV7klNYYgv5Dfg==} - engines: {node: ">=14"} + engines: {node: '>=14'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - "@babel/runtime": 7.23.1 - "@testing-library/dom": 9.3.3 - "@types/react-dom": 18.2.11 + '@babel/runtime': 7.23.1 + '@testing-library/dom': 9.3.3 + '@types/react-dom': 18.2.11 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true /@testing-library/user-event@13.5.0(@testing-library/dom@8.20.1): resolution: {integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==} - engines: {node: ">=10", npm: ">=6"} + engines: {node: '>=10', npm: '>=6'} peerDependencies: - "@testing-library/dom": ">=7.21.4" + '@testing-library/dom': '>=7.21.4' dependencies: - "@babel/runtime": 7.23.1 - "@testing-library/dom": 8.20.1 + '@babel/runtime': 7.23.1 + '@testing-library/dom': 8.20.1 dev: true /@tootallnate/once@1.1.2: resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dev: true /@tootallnate/once@2.0.0: resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} /@trpc/client@10.40.0(@trpc/server@10.40.0): resolution: {integrity: sha512-bT6BcdWjj0KzGQiimE6rB2tIaRYX0Ear4Gthb5szN/c01wrP0yC1Fbz2uCcm/QTVAwu4Lve5M+YjPoEaTHG6lg==} peerDependencies: - "@trpc/server": 10.40.0 + '@trpc/server': 10.40.0 dependencies: - "@trpc/server": 10.40.0 + '@trpc/server': 10.40.0 /@trpc/react-query@10.40.0(@tanstack/react-query@4.36.1)(@trpc/client@10.40.0)(@trpc/server@10.40.0)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-DpJrV3lmYNo9xtPtcg49lfh9CUFap3ZivjhlSmfe4QPf7H6xBjAE+ml4OdJ0RmKvSTFvbLSOiNdB1k5O8zIdzQ==} peerDependencies: - "@tanstack/react-query": ^4.18.0 - "@trpc/client": 10.40.0 - "@trpc/server": 10.40.0 - react: ">=16.8.0" - react-dom: ">=16.8.0" + '@tanstack/react-query': ^4.18.0 + '@trpc/client': 10.40.0 + '@trpc/server': 10.40.0 + react: '>=16.8.0' + react-dom: '>=16.8.0' dependencies: - "@tanstack/react-query": 4.36.1(react-dom@18.2.0)(react@18.2.0) - "@trpc/client": 10.40.0(@trpc/server@10.40.0) - "@trpc/server": 10.40.0 + '@tanstack/react-query': 4.36.1(react-dom@18.2.0)(react@18.2.0) + '@trpc/client': 10.40.0(@trpc/server@10.40.0) + '@trpc/server': 10.40.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -10039,7 +10383,7 @@ packages: resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - "@tufjs/canonical-json": 1.0.0 + '@tufjs/canonical-json': 1.0.0 minimatch: 9.0.3 dev: true @@ -10047,7 +10391,7 @@ packages: resolution: {integrity: sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@tufjs/canonical-json": 2.0.0 + '@tufjs/canonical-json': 2.0.0 minimatch: 9.0.3 dev: false @@ -10061,37 +10405,37 @@ packages: /@types/babel__core@7.20.2: resolution: {integrity: sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==} dependencies: - "@babel/parser": 7.23.0 - "@babel/types": 7.23.0 - "@types/babel__generator": 7.6.5 - "@types/babel__template": 7.4.2 - "@types/babel__traverse": 7.20.2 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 + '@types/babel__generator': 7.6.5 + '@types/babel__template': 7.4.2 + '@types/babel__traverse': 7.20.2 dev: true /@types/babel__generator@7.6.5: resolution: {integrity: sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@types/babel__template@7.4.2: resolution: {integrity: sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==} dependencies: - "@babel/parser": 7.23.0 - "@babel/types": 7.23.0 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 dev: true /@types/babel__traverse@7.20.2: resolution: {integrity: sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==} dependencies: - "@babel/types": 7.23.0 + '@babel/types': 7.23.0 dev: true /@types/body-parser@1.19.3: resolution: {integrity: sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ==} dependencies: - "@types/connect": 3.4.36 - "@types/node": 18.18.4 + '@types/connect': 3.4.36 + '@types/node': 18.18.4 dev: true /@types/btoa-lite@1.0.0: @@ -10101,13 +10445,13 @@ packages: /@types/cacache@17.0.0: resolution: {integrity: sha512-4BfoYFzkHdmINTyUIX9MSbKUkntVPR082FRnNc+5KlvvebrcxWWhfP3MRQ28QgfFncP3fTKCuemDYJqFjmWEAA==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/chai-subset@1.3.3: resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} dependencies: - "@types/chai": 4.3.6 + '@types/chai': 4.3.6 dev: true /@types/chai@4.3.6: @@ -10117,19 +10461,19 @@ packages: /@types/connect@3.4.36: resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/cors@2.8.14: resolution: {integrity: sha512-RXHUvNWYICtbP6s18PnOCaqToK8y14DnLd75c6HfyKf228dxy7pHNOQkxPtvXKp/hINFMDjbYzsj63nnpPMSRQ==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/cross-spawn@6.0.3: resolution: {integrity: sha512-BDAkU7WHHRHnvBf5z89lcvACsvkz/n7Tv+HyD/uW76O29HoH1Tk/W6iQrepaZVbisvlEek4ygwT8IW7ow9XLAA==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/d3-color@3.1.1: @@ -10139,7 +10483,7 @@ packages: /@types/d3-interpolate@3.0.2: resolution: {integrity: sha512-zAbCj9lTqW9J9PlF4FwnvEjXZUy75NQqPm7DMHZXuxCFTpuTrdK2NMYGQekf4hlasL78fCYOLu4EE3/tXElwow==} dependencies: - "@types/d3-color": 3.1.1 + '@types/d3-color': 3.1.1 dev: true /@types/d3-selection@3.0.7: @@ -10149,20 +10493,20 @@ packages: /@types/d3-zoom@3.0.5: resolution: {integrity: sha512-mIefdTLtxuWUWTbBupCUXPAXVPmi8/Uwrq41gQpRh0rD25GMU1ku+oTELqNY2NuuiI0F3wXC5e1liBQi7YS7XQ==} dependencies: - "@types/d3-interpolate": 3.0.2 - "@types/d3-selection": 3.0.7 + '@types/d3-interpolate': 3.0.2 + '@types/d3-selection': 3.0.7 dev: true /@types/debug@4.1.12: resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} dependencies: - "@types/ms": 0.7.34 + '@types/ms': 0.7.34 dev: false /@types/debug@4.1.9: resolution: {integrity: sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow==} dependencies: - "@types/ms": 0.7.32 + '@types/ms': 0.7.32 dev: true /@types/detect-port@1.3.3: @@ -10188,15 +10532,15 @@ packages: /@types/eslint-scope@3.7.5: resolution: {integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==} dependencies: - "@types/eslint": 8.44.3 - "@types/estree": 1.0.2 + '@types/eslint': 8.44.3 + '@types/estree': 1.0.2 dev: true /@types/eslint@8.44.3: resolution: {integrity: sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g==} dependencies: - "@types/estree": 1.0.2 - "@types/json-schema": 7.0.13 + '@types/estree': 1.0.2 + '@types/json-schema': 7.0.13 dev: true /@types/estree@0.0.51: @@ -10210,19 +10554,19 @@ packages: /@types/express-serve-static-core@4.17.37: resolution: {integrity: sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg==} dependencies: - "@types/node": 18.18.4 - "@types/qs": 6.9.8 - "@types/range-parser": 1.2.5 - "@types/send": 0.17.2 + '@types/node': 18.18.4 + '@types/qs': 6.9.8 + '@types/range-parser': 1.2.5 + '@types/send': 0.17.2 dev: true /@types/express@4.17.18: resolution: {integrity: sha512-Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHByQ==} dependencies: - "@types/body-parser": 1.19.3 - "@types/express-serve-static-core": 4.17.37 - "@types/qs": 6.9.8 - "@types/serve-static": 1.15.3 + '@types/body-parser': 1.19.3 + '@types/express-serve-static-core': 4.17.37 + '@types/qs': 6.9.8 + '@types/serve-static': 1.15.3 dev: true /@types/find-cache-dir@3.2.1: @@ -10232,46 +10576,46 @@ packages: /@types/fs-extra@11.0.2: resolution: {integrity: sha512-c0hrgAOVYr21EX8J0jBMXGLMgJqVf/v6yxi0dLaJboW9aQPh16Id+z6w2Tx1hm+piJOLv8xPfVKZCLfjPw/IMQ==} dependencies: - "@types/jsonfile": 6.1.2 - "@types/node": 18.18.4 + '@types/jsonfile': 6.1.2 + '@types/node': 18.18.4 dev: true /@types/fs-extra@8.1.4: resolution: {integrity: sha512-OMcQKnlrkrOI0TaZ/MgVDA8LYFl7CykzFsjMj9l5x3un2nFxCY20ZFlnqrM0lcqlbs0Yro2HbnZlmopyRaoJ5w==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/fs-extra@9.0.13: resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/glob@7.2.0: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: - "@types/minimatch": 5.1.2 - "@types/node": 18.18.4 + '@types/minimatch': 5.1.2 + '@types/node': 18.18.4 dev: true /@types/glob@8.1.0: resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} dependencies: - "@types/minimatch": 5.1.2 - "@types/node": 18.18.4 + '@types/minimatch': 5.1.2 + '@types/node': 18.18.4 dev: false /@types/graceful-fs@4.1.7: resolution: {integrity: sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/hast@3.0.3: resolution: {integrity: sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ==} dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 dev: false /@types/http-cache-semantics@4.0.2: @@ -10285,7 +10629,7 @@ packages: /@types/ignore-walk@4.0.1: resolution: {integrity: sha512-jve9GxuPfapQBNbsmLB4yTUV/uT16xJTxgnlcEWKcA9D5i1uMqokpyq7eKjrTH0zb1sBx1SAY3xRXSbxqj0fAg==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/istanbul-lib-coverage@2.0.4: @@ -10295,13 +10639,13 @@ packages: /@types/istanbul-lib-report@3.0.1: resolution: {integrity: sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==} dependencies: - "@types/istanbul-lib-coverage": 2.0.4 + '@types/istanbul-lib-coverage': 2.0.4 dev: true /@types/istanbul-reports@3.0.2: resolution: {integrity: sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==} dependencies: - "@types/istanbul-lib-report": 3.0.1 + '@types/istanbul-lib-report': 3.0.1 dev: true /@types/jest@27.5.2: @@ -10334,37 +10678,37 @@ packages: /@types/jsonfile@6.1.2: resolution: {integrity: sha512-8t92P+oeW4d/CRQfJaSqEwXujrhH4OEeHRjGU3v1Q8mUS8GPF3yiX26sw4svv6faL2HfBtGTe2xWIoVgN3dy9w==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/jsonwebtoken@9.0.3: resolution: {integrity: sha512-b0jGiOgHtZ2jqdPgPnP6WLCXZk1T8p06A/vPGzUvxpFGgKMbjXJDjC5m52ErqBnIuWZFgGoIJyRdeG5AyreJjA==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/lodash.debounce@4.0.7: resolution: {integrity: sha512-X1T4wMZ+gT000M2/91SYj0d/7JfeNZ9PeeOldSNoE/lunLeQXKvkmIumI29IaKMotU/ln/McOIvgzZcQ/3TrSA==} dependencies: - "@types/lodash": 4.14.199 + '@types/lodash': 4.14.199 dev: true /@types/lodash.throttle@4.1.7: resolution: {integrity: sha512-znwGDpjCHQ4FpLLx19w4OXDqq8+OvREa05H89obtSyXyOFKL3dDjCslsmfBz0T2FU8dmf5Wx1QvogbINiGIu9g==} dependencies: - "@types/lodash": 4.14.199 + '@types/lodash': 4.14.199 dev: true /@types/lodash.uniq@4.5.7: resolution: {integrity: sha512-qg7DeAbdZMi6DGvCxThlJycykLLhETrJrQZ6F2KaZ+o0sNK1qRHz46lgNA+nHHjwrmA2a91DyiZTp3ey3m1rEw==} dependencies: - "@types/lodash": 4.14.199 + '@types/lodash': 4.14.199 dev: true /@types/lodash.uniqby@4.7.7: resolution: {integrity: sha512-sv2g6vkCIvEUsK5/Vq17haoZaisfj2EWW8mP7QWlnKi6dByoNmeuHDDXHR7sabuDqwO4gvU7ModIL22MmnOocg==} dependencies: - "@types/lodash": 4.14.199 + '@types/lodash': 4.14.199 dev: true /@types/lodash@4.14.199: @@ -10374,7 +10718,7 @@ packages: /@types/mdast@4.0.3: resolution: {integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==} dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 dev: false /@types/mdx@2.0.8: @@ -10411,25 +10755,25 @@ packages: /@types/mute-stream@0.0.1: resolution: {integrity: sha512-0yQLzYhCqGz7CQPE3iDmYjhb7KMBFOP+tBkyw+/Y2YyDI5wpS7itXXxneN1zSsUwWx3Ji6YiVYrhAnpQGS/vkw==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/mute-stream@0.0.2: resolution: {integrity: sha512-FpiGjk6+IOrN0lZEfUUjdra1csU1VxwYFj4S0Zj+TJpu5x5mZW30RkEZojTadrNZHNmpCHgoE62IQZAH0OeuIA==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/node-fetch@2.6.6: resolution: {integrity: sha512-95X8guJYhfqiuVVhRFxVQcf4hW/2bCuoPwDasMf/531STFoNoWTT7YDnWdXHEZKqAGUigmpG31r2FE70LwnzJw==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 form-data: 4.0.0 /@types/node-persist@3.1.4: resolution: {integrity: sha512-MXwo/ijhPIIKa5jLxwBfs8wTVZzwO36V/a12TSzsm5hAMFiY9CgSzbFobvQEmQTRu778CIIhJoT59KF2BzSYwg==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/node@16.18.23: @@ -10457,27 +10801,27 @@ packages: /@types/npm-packlist@7.0.1: resolution: {integrity: sha512-yXDRMaiBWpn7ZrWU95DSQwsEMOfPCWgOkJlQzLsDToRzNhRW3v6GxZXGjqMEwq5juziJleS6hNfjvwhTAuNZxQ==} dependencies: - "@types/ignore-walk": 4.0.1 - "@types/npmcli__arborist": 5.6.2 + '@types/ignore-walk': 4.0.1 + '@types/npmcli__arborist': 5.6.2 dev: true /@types/npm-registry-fetch@8.0.5: resolution: {integrity: sha512-mAyQmKTF/4dhXTeSicltEtMO+Vj/LEUoBkMgDn9tS2fGp8IsrZPkYv2GH0KKBcbFLXUq67wuzYwl0DCZGeRcpw==} dependencies: - "@types/node": 18.18.4 - "@types/node-fetch": 2.6.6 - "@types/npm-package-arg": 6.1.2 - "@types/npmlog": 4.1.4 - "@types/ssri": 7.1.2 + '@types/node': 18.18.4 + '@types/node-fetch': 2.6.6 + '@types/npm-package-arg': 6.1.2 + '@types/npmlog': 4.1.4 + '@types/ssri': 7.1.2 dev: true /@types/npmcli__arborist@5.6.2: resolution: {integrity: sha512-WoQds2QiNPxMCOiQXVwfTiHNOSEUyTR0DY2mev+sMMY1c6AxjCFEnbiZsHLDJnIGL363W9IAZz1GD0kQuKvoRg==} dependencies: - "@npm/types": 1.0.2 - "@types/cacache": 17.0.0 - "@types/npmcli__package-json": 4.0.1 - "@types/pacote": 11.1.6 + '@npm/types': 1.0.2 + '@types/cacache': 17.0.0 + '@types/npmcli__package-json': 4.0.1 + '@types/pacote': 11.1.6 dev: true /@types/npmcli__package-json@4.0.1: @@ -10491,10 +10835,10 @@ packages: /@types/pacote@11.1.6: resolution: {integrity: sha512-Uh0+ivCS2p+pMFZmU1u20sGi7O8BJnBOCuNXsBaAMD/6/NIcbI/CcnBUNpTeVhOuFmOwn9/z8BxprpPhL+UkVg==} dependencies: - "@types/node": 18.18.4 - "@types/npm-registry-fetch": 8.0.5 - "@types/npmlog": 4.1.4 - "@types/ssri": 7.1.2 + '@types/node': 18.18.4 + '@types/npm-registry-fetch': 8.0.5 + '@types/npmlog': 4.1.4 + '@types/ssri': 7.1.2 dev: true /@types/prettier@2.6.0: @@ -10519,14 +10863,14 @@ packages: /@types/react-dom@18.2.11: resolution: {integrity: sha512-zq6Dy0EiCuF9pWFW6I6k6W2LdpUixLE4P6XjXU1QHLfak3GPACQfLwEuHzY5pOYa4hzj1d0GxX/P141aFjZsyg==} dependencies: - "@types/react": 18.2.25 + '@types/react': 18.2.25 dev: true /@types/react@18.2.25: resolution: {integrity: sha512-24xqse6+VByVLIr+xWaQ9muX1B4bXJKXBbjszbld/UEDslGLY53+ZucF44HCmLbMPejTzGG9XgR+3m2/Wqu1kw==} dependencies: - "@types/prop-types": 15.7.8 - "@types/scheduler": 0.16.4 + '@types/prop-types': 15.7.8 + '@types/scheduler': 0.16.4 csstype: 3.1.2 /@types/scheduler@0.16.4: @@ -10542,22 +10886,22 @@ packages: /@types/send@0.17.2: resolution: {integrity: sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw==} dependencies: - "@types/mime": 1.3.3 - "@types/node": 18.18.4 + '@types/mime': 1.3.3 + '@types/node': 18.18.4 dev: true /@types/serve-static@1.15.3: resolution: {integrity: sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg==} dependencies: - "@types/http-errors": 2.0.2 - "@types/mime": 3.0.2 - "@types/node": 18.18.4 + '@types/http-errors': 2.0.2 + '@types/mime': 3.0.2 + '@types/node': 18.18.4 dev: true /@types/sinon@10.0.19: resolution: {integrity: sha512-MWZNGPSchIdDfb5FL+VFi4zHsHbNOTQEgjqFQk7HazXSXwUU9PAX3z9XBqb3AJGYr9YwrtCtaSMsT3brYsN/jQ==} dependencies: - "@types/sinonjs__fake-timers": 8.1.3 + '@types/sinonjs__fake-timers': 8.1.3 dev: true /@types/sinonjs__fake-timers@8.1.3: @@ -10567,7 +10911,7 @@ packages: /@types/ssri@7.1.2: resolution: {integrity: sha512-Mbo/NaBiZlXNlOFTLK+PXeVEzKFxi+ZVELuzmk4VxdRz6aqKpmP9bhcNqsIB2c/s78355WBHwUCGYhQDydcfEg==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 /@types/stack-utils@2.0.1: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} @@ -10576,7 +10920,7 @@ packages: /@types/tar@6.1.6: resolution: {integrity: sha512-HQ06kiiDXz9uqtmE9ksQUn1ovcPr1gGV9EgaCWo6FGYKD0onNBCetBzL0kfcS8Kbj1EFxJWY9jL2W4ZvvtGI8Q==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 minipass: 4.2.8 dev: true @@ -10589,7 +10933,7 @@ packages: /@types/tunnel@0.0.3: resolution: {integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: false /@types/unist@2.0.10: @@ -10623,7 +10967,7 @@ packages: /@types/ws@8.5.6: resolution: {integrity: sha512-8B5EO9jLVCy+B58PLHvLDuOD8DRVMgQzq8d55SjLCOn9kqGyqOvy27exVaTio1q1nX5zLu8/6N0n2ThSxOM6tg==} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true /@types/yargs-parser@21.0.1: @@ -10633,20 +10977,20 @@ packages: /@types/yargs@16.0.6: resolution: {integrity: sha512-oTP7/Q13GSPrgcwEwdlnkoZSQ1Hg9THe644qq8PG6hhJzjZ3qj1JjEFPIwWV/IXVs5XGIVqtkNOS9kh63WIJ+A==} dependencies: - "@types/yargs-parser": 21.0.1 + '@types/yargs-parser': 21.0.1 dev: true /@types/yargs@17.0.28: resolution: {integrity: sha512-N3e3fkS86hNhtk6BEnc0rj3zcehaxx8QWhCROJkqpl5Zaoi7nAic3jH8q94jVD3zu5LGk+PUB6KAiDmimYOEQw==} dependencies: - "@types/yargs-parser": 21.0.1 + '@types/yargs-parser': 21.0.1 dev: true /@types/yauzl@2.10.3: resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} requiresBuild: true dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 dev: true optional: true @@ -10658,18 +11002,18 @@ packages: resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - "@typescript-eslint/parser": ^5.0.0 + '@typescript-eslint/parser': ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@eslint-community/regexpp": 4.9.1 - "@typescript-eslint/parser": 5.62.0(eslint@8.51.0)(typescript@4.9.5) - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/type-utils": 5.62.0(eslint@8.51.0)(typescript@4.9.5) - "@typescript-eslint/utils": 5.62.0(eslint@8.51.0)(typescript@4.9.5) + '@eslint-community/regexpp': 4.9.1 + '@typescript-eslint/parser': 5.62.0(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/type-utils': 5.62.0(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.51.0)(typescript@4.9.5) debug: 4.3.4 eslint: 8.51.0 graphemer: 1.4.0 @@ -10686,18 +11030,18 @@ packages: resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - "@typescript-eslint/parser": ^5.0.0 + '@typescript-eslint/parser': ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@eslint-community/regexpp": 4.9.1 - "@typescript-eslint/parser": 5.62.0(eslint@8.51.0)(typescript@5.2.2) - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/type-utils": 5.62.0(eslint@8.51.0)(typescript@5.2.2) - "@typescript-eslint/utils": 5.62.0(eslint@8.51.0)(typescript@5.2.2) + '@eslint-community/regexpp': 4.9.1 + '@typescript-eslint/parser': 5.62.0(eslint@8.51.0)(typescript@5.2.2) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/type-utils': 5.62.0(eslint@8.51.0)(typescript@5.2.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.51.0)(typescript@5.2.2) debug: 4.3.4 eslint: 8.51.0 graphemer: 1.4.0 @@ -10714,19 +11058,19 @@ packages: resolution: {integrity: sha512-DAbgDXwtX+pDkAHwiGhqP3zWUGpW49B7eqmgpPtg+BKJXwdct79ut9+ifqOFPJGClGKSHXn2PTBatCnldJRUoA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - "@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@eslint-community/regexpp": 4.9.1 - "@typescript-eslint/parser": 6.7.4(eslint@8.51.0)(typescript@4.9.5) - "@typescript-eslint/scope-manager": 6.7.4 - "@typescript-eslint/type-utils": 6.7.4(eslint@8.51.0)(typescript@4.9.5) - "@typescript-eslint/utils": 6.7.4(eslint@8.51.0)(typescript@4.9.5) - "@typescript-eslint/visitor-keys": 6.7.4 + '@eslint-community/regexpp': 4.9.1 + '@typescript-eslint/parser': 6.7.4(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/scope-manager': 6.7.4 + '@typescript-eslint/type-utils': 6.7.4(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/utils': 6.7.4(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 6.7.4 debug: 4.3.4 eslint: 8.51.0 graphemer: 1.4.0 @@ -10744,14 +11088,14 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0(typescript@4.9.5) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) debug: 4.3.4 eslint: 8.51.0 typescript: 4.9.5 @@ -10763,14 +11107,14 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0(typescript@5.2.2) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) debug: 4.3.4 eslint: 8.51.0 typescript: 5.2.2 @@ -10783,15 +11127,15 @@ packages: engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/scope-manager": 6.7.4 - "@typescript-eslint/types": 6.7.4 - "@typescript-eslint/typescript-estree": 6.7.4(typescript@4.9.5) - "@typescript-eslint/visitor-keys": 6.7.4 + '@typescript-eslint/scope-manager': 6.7.4 + '@typescript-eslint/types': 6.7.4 + '@typescript-eslint/typescript-estree': 6.7.4(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 6.7.4 debug: 4.3.4 eslint: 8.51.0 typescript: 4.9.5 @@ -10803,29 +11147,29 @@ packages: resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/visitor-keys": 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 /@typescript-eslint/scope-manager@6.7.4: resolution: {integrity: sha512-SdGqSLUPTXAXi7c3Ob7peAGVnmMoGzZ361VswK2Mqf8UOYcODiYvs8rs5ILqEdfvX1lE7wEZbLyELCW+Yrql1A==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - "@typescript-eslint/types": 6.7.4 - "@typescript-eslint/visitor-keys": 6.7.4 + '@typescript-eslint/types': 6.7.4 + '@typescript-eslint/visitor-keys': 6.7.4 dev: true /@typescript-eslint/type-utils@5.62.0(eslint@8.51.0)(typescript@4.9.5): resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - eslint: "*" - typescript: "*" + eslint: '*' + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 5.62.0(typescript@4.9.5) - "@typescript-eslint/utils": 5.62.0(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.51.0)(typescript@4.9.5) debug: 4.3.4 eslint: 8.51.0 tsutils: 3.21.0(typescript@4.9.5) @@ -10838,14 +11182,14 @@ packages: resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - eslint: "*" - typescript: "*" + eslint: '*' + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 5.62.0(typescript@5.2.2) - "@typescript-eslint/utils": 5.62.0(eslint@8.51.0)(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.51.0)(typescript@5.2.2) debug: 4.3.4 eslint: 8.51.0 tsutils: 3.21.0(typescript@5.2.2) @@ -10859,13 +11203,13 @@ packages: engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 6.7.4(typescript@4.9.5) - "@typescript-eslint/utils": 6.7.4(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 6.7.4(typescript@4.9.5) + '@typescript-eslint/utils': 6.7.4(eslint@8.51.0)(typescript@4.9.5) debug: 4.3.4 eslint: 8.51.0 ts-api-utils: 1.0.3(typescript@4.9.5) @@ -10887,13 +11231,13 @@ packages: resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/visitor-keys": 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -10907,13 +11251,13 @@ packages: resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/visitor-keys": 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -10928,13 +11272,13 @@ packages: resolution: {integrity: sha512-ty8b5qHKatlNYd9vmpHooQz3Vki3gG+3PchmtsA4TgrZBKWHNjWfkQid7K7xQogBqqc7/BhGazxMD5vr6Ha+iQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/types": 6.7.4 - "@typescript-eslint/visitor-keys": 6.7.4 + '@typescript-eslint/types': 6.7.4 + '@typescript-eslint/visitor-keys': 6.7.4 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -10951,12 +11295,12 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.51.0) - "@types/json-schema": 7.0.13 - "@types/semver": 7.5.3 - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0(typescript@4.9.5) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) + '@types/json-schema': 7.0.13 + '@types/semver': 7.5.3 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) eslint: 8.51.0 eslint-scope: 5.1.1 semver: 7.5.4 @@ -10971,12 +11315,12 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.51.0) - "@types/json-schema": 7.0.13 - "@types/semver": 7.5.3 - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0(typescript@5.2.2) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) + '@types/json-schema': 7.0.13 + '@types/semver': 7.5.3 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) eslint: 8.51.0 eslint-scope: 5.1.1 semver: 7.5.4 @@ -10991,12 +11335,12 @@ packages: peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.51.0) - "@types/json-schema": 7.0.13 - "@types/semver": 7.5.3 - "@typescript-eslint/scope-manager": 6.7.4 - "@typescript-eslint/types": 6.7.4 - "@typescript-eslint/typescript-estree": 6.7.4(typescript@4.9.5) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) + '@types/json-schema': 7.0.13 + '@types/semver': 7.5.3 + '@typescript-eslint/scope-manager': 6.7.4 + '@typescript-eslint/types': 6.7.4 + '@typescript-eslint/typescript-estree': 6.7.4(typescript@4.9.5) eslint: 8.51.0 semver: 7.5.4 transitivePeerDependencies: @@ -11008,14 +11352,14 @@ packages: resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - "@typescript-eslint/types": 5.62.0 + '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 /@typescript-eslint/visitor-keys@6.7.4: resolution: {integrity: sha512-pOW37DUhlTZbvph50x5zZCkFn3xzwkGtNoJHzIM3svpiSkJzwOYr/kVBaXmf+RAQiUDs1AHEZVNPg6UJCJpwRA==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - "@typescript-eslint/types": 6.7.4 + '@typescript-eslint/types': 6.7.4 eslint-visitor-keys: 3.4.3 dev: true @@ -11028,10 +11372,10 @@ packages: peerDependencies: vite: ^4 dependencies: - "@swc/core": 1.3.92 + '@swc/core': 1.3.92 vite: 4.4.11(@types/node@18.18.4) transitivePeerDependencies: - - "@swc/helpers" + - '@swc/helpers' dev: true /@vitejs/plugin-react@3.1.0(vite@4.4.11): @@ -11040,9 +11384,9 @@ packages: peerDependencies: vite: ^4.1.0-beta.0 dependencies: - "@babel/core": 7.23.0 - "@babel/plugin-transform-react-jsx-self": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-react-jsx-source": 7.22.5(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.0) magic-string: 0.27.0 react-refresh: 0.14.0 vite: 4.4.11(@types/node@18.18.4) @@ -11056,10 +11400,10 @@ packages: peerDependencies: vite: ^4.2.0 dependencies: - "@babel/core": 7.23.0 - "@babel/plugin-transform-react-jsx-self": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-transform-react-jsx-source": 7.22.5(@babel/core@7.23.0) - "@types/babel__core": 7.20.2 + '@babel/core': 7.23.0 + '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.0) + '@types/babel__core': 7.20.2 react-refresh: 0.14.0 vite: 4.4.11(@types/node@18.18.4) transitivePeerDependencies: @@ -11070,9 +11414,9 @@ packages: resolution: {integrity: sha512-VPx368m4DTcpA/P0v3YdVxl4QOSh1DbUcXURLRvDShrIB5KxOgfzw4Bn2R8AhAe/GyiWW/FIsJ/OJdYXCCiC1w==} deprecated: v8 coverage is moved to @vitest/coverage-v8 package peerDependencies: - vitest: ">=0.30.0 <1" + vitest: '>=0.30.0 <1' dependencies: - "@ampproject/remapping": 2.2.1 + '@ampproject/remapping': 2.2.1 c8: 7.14.0 magic-string: 0.30.4 picocolors: 1.0.0 @@ -11084,9 +11428,9 @@ packages: resolution: {integrity: sha512-VPx368m4DTcpA/P0v3YdVxl4QOSh1DbUcXURLRvDShrIB5KxOgfzw4Bn2R8AhAe/GyiWW/FIsJ/OJdYXCCiC1w==} deprecated: v8 coverage is moved to @vitest/coverage-v8 package peerDependencies: - vitest: ">=0.30.0 <1" + vitest: '>=0.30.0 <1' dependencies: - "@ampproject/remapping": 2.2.1 + '@ampproject/remapping': 2.2.1 c8: 7.14.0 magic-string: 0.30.4 picocolors: 1.0.0 @@ -11097,10 +11441,10 @@ packages: /@vitest/coverage-v8@0.32.4(vitest@0.32.4): resolution: {integrity: sha512-itiCYY3TmWEK+5wnFBoNr0ZA+adACp7Op1r2TeX5dPOgU2See7+Gx2NlK2lVMHVxfPsu5z9jszKa3i//eR+hqg==} peerDependencies: - vitest: ">=0.32.0 <1" + vitest: '>=0.32.0 <1' dependencies: - "@ampproject/remapping": 2.2.1 - "@bcoe/v8-coverage": 0.2.3 + '@ampproject/remapping': 2.2.1 + '@bcoe/v8-coverage': 0.2.3 istanbul-lib-coverage: 3.2.0 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 4.0.1 @@ -11118,39 +11462,39 @@ packages: /@vitest/expect@0.30.1: resolution: {integrity: sha512-c3kbEtN8XXJSeN81iDGq29bUzSjQhjES2WR3aColsS4lPGbivwLtas4DNUe0jD9gg/FYGIteqOenfU95EFituw==} dependencies: - "@vitest/spy": 0.30.1 - "@vitest/utils": 0.30.1 + '@vitest/spy': 0.30.1 + '@vitest/utils': 0.30.1 chai: 4.3.10 dev: true /@vitest/expect@0.31.4: resolution: {integrity: sha512-tibyx8o7GUyGHZGyPgzwiaPaLDQ9MMuCOrc03BYT0nryUuhLbL7NV2r/q98iv5STlwMgaKuFJkgBW/8iPKwlSg==} dependencies: - "@vitest/spy": 0.31.4 - "@vitest/utils": 0.31.4 + '@vitest/spy': 0.31.4 + '@vitest/utils': 0.31.4 chai: 4.3.10 dev: true /@vitest/expect@0.32.4: resolution: {integrity: sha512-m7EPUqmGIwIeoU763N+ivkFjTzbaBn0n9evsTOcde03ugy2avPs3kZbYmw3DkcH1j5mxhMhdamJkLQ6dM1bk/A==} dependencies: - "@vitest/spy": 0.32.4 - "@vitest/utils": 0.32.4 + '@vitest/spy': 0.32.4 + '@vitest/utils': 0.32.4 chai: 4.3.10 dev: true /@vitest/expect@0.34.6: resolution: {integrity: sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw==} dependencies: - "@vitest/spy": 0.34.6 - "@vitest/utils": 0.34.6 + '@vitest/spy': 0.34.6 + '@vitest/utils': 0.34.6 chai: 4.3.10 dev: true /@vitest/runner@0.30.1: resolution: {integrity: sha512-W62kT/8i0TF1UBCNMRtRMOBWJKRnNyv9RrjIgdUryEe0wNpGZvvwPDLuzYdxvgSckzjp54DSpv1xUbv4BQ0qVA==} dependencies: - "@vitest/utils": 0.30.1 + '@vitest/utils': 0.30.1 concordance: 5.0.4 p-limit: 4.0.0 pathe: 1.1.1 @@ -11159,7 +11503,7 @@ packages: /@vitest/runner@0.31.4: resolution: {integrity: sha512-Wgm6UER+gwq6zkyrm5/wbpXGF+g+UBB78asJlFkIOwyse0pz8lZoiC6SW5i4gPnls/zUcPLWS7Zog0LVepXnpg==} dependencies: - "@vitest/utils": 0.31.4 + '@vitest/utils': 0.31.4 concordance: 5.0.4 p-limit: 4.0.0 pathe: 1.1.1 @@ -11168,7 +11512,7 @@ packages: /@vitest/runner@0.32.4: resolution: {integrity: sha512-cHOVCkiRazobgdKLnczmz2oaKK9GJOw6ZyRcaPdssO1ej+wzHVIkWiCiNacb3TTYPdzMddYkCgMjZ4r8C0JFCw==} dependencies: - "@vitest/utils": 0.32.4 + '@vitest/utils': 0.32.4 p-limit: 4.0.0 pathe: 1.1.1 dev: true @@ -11176,7 +11520,7 @@ packages: /@vitest/runner@0.34.6: resolution: {integrity: sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ==} dependencies: - "@vitest/utils": 0.34.6 + '@vitest/utils': 0.34.6 p-limit: 4.0.0 pathe: 1.1.1 dev: true @@ -11271,7 +11615,7 @@ packages: /@vscode/vsce@2.21.1: resolution: {integrity: sha512-f45/aT+HTubfCU2oC7IaWnH9NjOWp668ML002QiFObFRVUCoLtcwepp9mmql/ArFUy+HCHp54Xrq4koTcOD6TA==} - engines: {node: ">= 14"} + engines: {node: '>= 14'} hasBin: true dependencies: azure-devops-node-api: 11.2.0 @@ -11307,8 +11651,8 @@ packages: /@webassemblyjs/ast@1.11.6: resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} dependencies: - "@webassemblyjs/helper-numbers": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + '@webassemblyjs/helper-numbers': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 dev: true /@webassemblyjs/floating-point-hex-parser@1.11.6: @@ -11326,9 +11670,9 @@ packages: /@webassemblyjs/helper-numbers@1.11.6: resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} dependencies: - "@webassemblyjs/floating-point-hex-parser": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@xtuc/long": 4.2.2 + '@webassemblyjs/floating-point-hex-parser': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@xtuc/long': 4.2.2 dev: true /@webassemblyjs/helper-wasm-bytecode@1.11.6: @@ -11338,22 +11682,22 @@ packages: /@webassemblyjs/helper-wasm-section@1.11.6: resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 dev: true /@webassemblyjs/ieee754@1.11.6: resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} dependencies: - "@xtuc/ieee754": 1.2.0 + '@xtuc/ieee754': 1.2.0 dev: true /@webassemblyjs/leb128@1.11.6: resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} dependencies: - "@xtuc/long": 4.2.2 + '@xtuc/long': 4.2.2 dev: true /@webassemblyjs/utf8@1.11.6: @@ -11363,56 +11707,56 @@ packages: /@webassemblyjs/wasm-edit@1.11.6: resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/helper-wasm-section": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - "@webassemblyjs/wasm-opt": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 - "@webassemblyjs/wast-printer": 1.11.6 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/helper-wasm-section': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 + '@webassemblyjs/wasm-opt': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 + '@webassemblyjs/wast-printer': 1.11.6 dev: true /@webassemblyjs/wasm-gen@1.11.6: resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 dev: true /@webassemblyjs/wasm-opt@1.11.6: resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 dev: true /@webassemblyjs/wasm-parser@1.11.6: resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 dev: true /@webassemblyjs/wast-printer@1.11.6: resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} dependencies: - "@webassemblyjs/ast": 1.11.6 - "@xtuc/long": 4.2.2 + '@webassemblyjs/ast': 1.11.6 + '@xtuc/long': 4.2.2 dev: true /@xmldom/xmldom@0.8.10: resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==} - engines: {node: ">=10.0.0"} + engines: {node: '>=10.0.0'} dev: true /@xtuc/ieee754@1.2.0: @@ -11425,9 +11769,9 @@ packages: /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20): resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} - engines: {node: ">=14.15.0"} + engines: {node: '>=14.15.0'} peerDependencies: - esbuild: ">=0.10.0" + esbuild: '>=0.10.0' dependencies: esbuild: 0.18.20 tslib: 2.6.2 @@ -11435,17 +11779,17 @@ packages: /@yarnpkg/fslib@2.10.3: resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} - engines: {node: ">=12 <14 || 14.2 - 14.9 || >14.10.0"} + engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} dependencies: - "@yarnpkg/libzip": 2.3.0 + '@yarnpkg/libzip': 2.3.0 tslib: 1.14.1 dev: true /@yarnpkg/libzip@2.3.0: resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} - engines: {node: ">=12 <14 || 14.2 - 14.9 || >14.10.0"} + engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} dependencies: - "@types/emscripten": 1.39.8 + '@types/emscripten': 1.39.8 tslib: 1.14.1 dev: true @@ -11458,14 +11802,14 @@ packages: /@zkochan/rimraf@2.1.3: resolution: {integrity: sha512-mCfR3gylCzPC+iqdxEA6z5SxJeOgzgbwmyxanKriIne5qZLswDe/M43aD3p5MNzwzXRhbZg/OX+MpES6Zk1a6A==} - engines: {node: ">=12.10"} + engines: {node: '>=12.10'} dependencies: rimraf: 3.0.2 dev: false /@zkochan/which@2.0.3: resolution: {integrity: sha512-C1ReN7vt2/2O0fyTsx5xnbQuxBrmG5NMSbcIkPKCCfCTJgpZBsuRYzFXHj3nVq8vTfK7vxHUmzfCpSHgO7j4rg==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 @@ -11493,14 +11837,14 @@ packages: /abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} - engines: {node: ">=6.5"} + engines: {node: '>=6.5'} dependencies: event-target-shim: 5.0.1 dev: false /accepts@1.3.8: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} dependencies: mime-types: 2.1.35 negotiator: 0.6.3 @@ -11537,23 +11881,23 @@ packages: /acorn-walk@7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: ">=0.4.0"} + engines: {node: '>=0.4.0'} dev: true /acorn-walk@8.2.0: resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} - engines: {node: ">=0.4.0"} + engines: {node: '>=0.4.0'} dev: true /acorn@7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: ">=0.4.0"} + engines: {node: '>=0.4.0'} hasBin: true dev: true /acorn@8.10.0: resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} - engines: {node: ">=0.4.0"} + engines: {node: '>=0.4.0'} hasBin: true /add-stream@1.0.0: @@ -11562,17 +11906,17 @@ packages: /address@1.2.2: resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: ">= 10.0.0"} + engines: {node: '>= 10.0.0'} dev: true /agent-base@5.1.1: resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} - engines: {node: ">= 6.0.0"} + engines: {node: '>= 6.0.0'} dev: true /agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: ">= 6.0.0"} + engines: {node: '>= 6.0.0'} dependencies: debug: 4.3.4 transitivePeerDependencies: @@ -11580,7 +11924,7 @@ packages: /agent-base@7.1.0: resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} - engines: {node: ">= 14"} + engines: {node: '>= 14'} dependencies: debug: 4.3.4 transitivePeerDependencies: @@ -11588,13 +11932,13 @@ packages: /agentkeepalive@4.5.0: resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} - engines: {node: ">= 8.0.0"} + engines: {node: '>= 8.0.0'} dependencies: humanize-ms: 1.2.1 /aggregate-error@3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 @@ -11647,22 +11991,22 @@ packages: /ansi-escapes@4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: type-fest: 0.21.3 /ansi-regex@3.0.1: resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: false /ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} /ansi-regex@6.0.1: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: ">=12"} + engines: {node: '>=12'} /ansi-split@1.0.1: resolution: {integrity: sha512-RRxQym4DFtDNmHIkW6aeFVvrXURb11lGAEPXNiryjCe8bK8RsANjzJ0M2aGOkvBYwP4Bl/xZ8ijtr6D3j1x/eg==} @@ -11672,31 +12016,31 @@ packages: /ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: color-convert: 1.9.3 /ansi-styles@4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: color-convert: 2.0.1 /ansi-styles@5.2.0: resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /ansi-styles@6.2.1: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: ">=12"} + engines: {node: '>=12'} /any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} /anymatch@3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 @@ -11710,7 +12054,7 @@ packages: /archiver-utils@2.1.0: resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: glob: 7.2.3 graceful-fs: 4.2.11 @@ -11725,7 +12069,7 @@ packages: /archiver-utils@3.0.4: resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} dependencies: glob: 7.2.3 graceful-fs: 4.2.11 @@ -11740,7 +12084,7 @@ packages: /archiver@5.3.1: resolution: {integrity: sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} dependencies: archiver-utils: 2.1.0 async: 3.2.4 @@ -11752,7 +12096,7 @@ packages: /archiver@5.3.2: resolution: {integrity: sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} dependencies: archiver-utils: 2.1.0 async: 3.2.4 @@ -11799,7 +12143,7 @@ packages: /aria-hidden@1.2.3: resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: tslib: 2.6.2 dev: true @@ -11818,7 +12162,7 @@ packages: /arr-rotate@1.0.0: resolution: {integrity: sha512-yOzOZcR9Tn7enTF66bqKorGGH0F36vcPaSWg8fO0c0UYb3LX3VMXj5ZxEqQLNOecAhlRJ7wYZja5i4jTlnbIfQ==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /array-buffer-byte-length@1.0.0: @@ -11836,7 +12180,7 @@ packages: /array-includes@3.1.7: resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -11849,11 +12193,11 @@ packages: /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: ">=8"} + engines: {node: '>=8'} /array.prototype.findlastindex@1.2.3: resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -11863,7 +12207,7 @@ packages: /array.prototype.flat@1.3.2: resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -11872,7 +12216,7 @@ packages: /array.prototype.flatmap@1.3.2: resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -11891,7 +12235,7 @@ packages: /arraybuffer.prototype.slice@1.0.2: resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.2 @@ -11903,12 +12247,12 @@ packages: /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /arrify@2.0.1: resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: false /as-table@1.0.55: @@ -11937,28 +12281,28 @@ packages: /ast-types@0.14.2: resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: tslib: 2.6.2 dev: true /ast-types@0.15.2: resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: tslib: 2.6.2 dev: true /ast-types@0.16.1: resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: tslib: 2.6.2 dev: true /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} /async-limiter@1.0.1: resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} @@ -11984,7 +12328,7 @@ packages: /at-least-node@1.0.0: resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: ">= 4.0.0"} + engines: {node: '>= 4.0.0'} /atomically@2.0.2: resolution: {integrity: sha512-Xfmb4q5QV7uqTlVdMSTtO5eF4DCHfNOdaPyKlbFShkzeNP+3lj3yjjcbdjSmEY4+pDBKJ9g26aP+ImTe88UHoQ==} @@ -11995,7 +12339,7 @@ packages: /auto-bind@4.0.0: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /autoprefixer@10.4.16(postcss@8.4.31): @@ -12016,18 +12360,18 @@ packages: /available-typed-arrays@1.0.5: resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} /aws-cdk-lib@2.100.0(constructs@10.2.70): resolution: {integrity: sha512-oWDPcbdqD69wDIUvcGdbDxmKcDfkCg515wf8JkiQLnhAI/AFyKAVTEWhbSUi00lvJQNUjX8Mal2lbKlCRA4hjQ==} - engines: {node: ">= 14.15.0"} + engines: {node: '>= 14.15.0'} peerDependencies: constructs: ^10.0.0 dependencies: - "@aws-cdk/asset-awscli-v1": 2.2.200 - "@aws-cdk/asset-kubectl-v20": 2.1.2 - "@aws-cdk/asset-node-proxy-agent-v6": 2.0.1 - "@balena/dockerignore": 1.0.2 + '@aws-cdk/asset-awscli-v1': 2.2.200 + '@aws-cdk/asset-kubectl-v20': 2.1.2 + '@aws-cdk/asset-node-proxy-agent-v6': 2.0.1 + '@balena/dockerignore': 1.0.2 case: 1.6.3 constructs: 10.2.70 fs-extra: 11.1.1 @@ -12040,7 +12384,7 @@ packages: yaml: 1.10.2 dev: false bundledDependencies: - - "@balena/dockerignore" + - '@balena/dockerignore' - case - fs-extra - ignore @@ -12056,7 +12400,7 @@ packages: peerDependencies: aws-sdk-client-mock: 2.2.0 dependencies: - "@types/jest": 28.1.8 + '@types/jest': 28.1.8 aws-sdk-client-mock: 2.2.0 tslib: 2.6.2 dev: true @@ -12064,14 +12408,14 @@ packages: /aws-sdk-client-mock@2.2.0: resolution: {integrity: sha512-Kq2N+6gHRDedbrgTA0NMMfyN1XDWEA5Kbpm9/M/cenSxoNjfvQBOtBawI1lQe5h4UziLl///E7u17K9PBoHEKA==} dependencies: - "@types/sinon": 10.0.19 + '@types/sinon': 10.0.19 sinon: 14.0.2 tslib: 2.6.2 dev: true /axe-core@4.8.2: resolution: {integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: false /axios@0.27.2: @@ -12101,21 +12445,21 @@ packages: /babel-core@7.0.0-bridge.0(@babel/core@7.23.0): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 dependencies: - "@babel/core": 7.23.0 + '@babel/core': 7.23.0 dev: true /babel-jest@27.5.1(@babel/core@7.23.0): resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: - "@babel/core": ^7.8.0 + '@babel/core': ^7.8.0 dependencies: - "@babel/core": 7.23.0 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 - "@types/babel__core": 7.20.2 + '@babel/core': 7.23.0 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/babel__core': 7.20.2 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 27.5.1(@babel/core@7.23.0) chalk: 4.1.2 @@ -12129,11 +12473,11 @@ packages: resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@babel/core": ^7.8.0 + '@babel/core': ^7.8.0 dependencies: - "@babel/core": 7.23.0 - "@jest/transform": 29.7.0 - "@types/babel__core": 7.20.2 + '@babel/core': 7.23.0 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.2 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 29.6.3(@babel/core@7.23.0) chalk: 4.1.2 @@ -12145,11 +12489,11 @@ packages: /babel-plugin-istanbul@6.1.1: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: - "@babel/helper-plugin-utils": 7.22.5 - "@istanbuljs/load-nyc-config": 1.1.0 - "@istanbuljs/schema": 0.1.3 + '@babel/helper-plugin-utils': 7.22.5 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.1 test-exclude: 6.0.0 transitivePeerDependencies: @@ -12160,30 +12504,30 @@ packages: resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@babel/template": 7.22.15 - "@babel/types": 7.23.0 - "@types/babel__core": 7.20.2 - "@types/babel__traverse": 7.20.2 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 + '@types/babel__core': 7.20.2 + '@types/babel__traverse': 7.20.2 dev: true /babel-plugin-jest-hoist@29.6.3: resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/template": 7.22.15 - "@babel/types": 7.23.0 - "@types/babel__core": 7.20.2 - "@types/babel__traverse": 7.20.2 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 + '@types/babel__core': 7.20.2 + '@types/babel__traverse': 7.20.2 dev: true /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.23.0): resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/compat-data": 7.22.20 - "@babel/core": 7.23.0 - "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.23.0) + '@babel/compat-data': 7.22.20 + '@babel/core': 7.23.0 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.0) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -12192,10 +12536,10 @@ packages: /babel-plugin-polyfill-corejs3@0.8.4(@babel/core@7.23.0): resolution: {integrity: sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.0) core-js-compat: 3.33.0 transitivePeerDependencies: - supports-color @@ -12204,10 +12548,10 @@ packages: /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.23.0): resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.0) transitivePeerDependencies: - supports-color dev: true @@ -12215,30 +12559,30 @@ packages: /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.0): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.23.0) - "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.23.0) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.23.0) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.23.0) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.23.0) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.23.0) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.23.0) + '@babel/core': 7.23.0 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.0) dev: true /babel-preset-jest@27.5.1(@babel/core@7.23.0): resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 + '@babel/core': 7.23.0 babel-plugin-jest-hoist: 27.5.1 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0) dev: true @@ -12247,20 +12591,20 @@ packages: resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 dependencies: - "@babel/core": 7.23.0 + '@babel/core': 7.23.0 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0) dev: true /backport@8.5.0: resolution: {integrity: sha512-gX8v+l+BTue2lmmqD/yQiR6JUUY+5OWNZTI1qyusViqC9R2iv4YFPqT23IcJfpYqlYb3DOiwunfVjKLickdQ6g==} - engines: {node: ">=16.0.0"} + engines: {node: '>=16.0.0'} hasBin: true requiresBuild: true dependencies: - "@octokit/rest": 18.12.0 + '@octokit/rest': 18.12.0 axios: 0.27.2 dedent: 0.7.0 del: 6.1.1 @@ -12300,21 +12644,21 @@ packages: /better-opn@3.0.2: resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} dependencies: open: 8.4.2 dev: true /better-path-resolve@1.0.0: resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: is-windows: 1.0.2 dev: false /big-integer@1.6.51: resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} - engines: {node: ">=0.6"} + engines: {node: '>=0.6'} /bignumber.js@9.1.2: resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} @@ -12332,7 +12676,7 @@ packages: /binary-extensions@2.2.0: resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: ">=8"} + engines: {node: '>=8'} /bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} @@ -12347,7 +12691,7 @@ packages: /body-parser@1.20.1: resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} - engines: {node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dependencies: bytes: 3.1.2 content-type: 1.0.5 @@ -12385,7 +12729,7 @@ packages: /boxen@5.1.2: resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: ansi-align: 3.0.1 camelcase: 6.3.0 @@ -12399,7 +12743,7 @@ packages: /boxen@7.1.1: resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: ansi-align: 3.0.1 camelcase: 7.0.1 @@ -12413,7 +12757,7 @@ packages: /bplist-parser@0.2.0: resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: ">= 5.10.0"} + engines: {node: '>= 5.10.0'} dependencies: big-integer: 1.6.51 @@ -12430,7 +12774,7 @@ packages: /braces@3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: fill-range: 7.0.1 @@ -12461,7 +12805,7 @@ packages: /bs-logger@0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: fast-json-stable-stringify: 2.1.0 dev: true @@ -12500,7 +12844,7 @@ packages: /builtin-modules@3.3.0: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: false /builtins@5.0.1: @@ -12510,7 +12854,7 @@ packages: /bundle-name@3.0.0: resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: run-applescript: 5.0.0 @@ -12518,7 +12862,7 @@ packages: resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: - esbuild: ">=0.17" + esbuild: '>=0.17' dependencies: esbuild: 0.17.19 load-tsconfig: 0.2.5 @@ -12528,20 +12872,30 @@ packages: resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: - esbuild: ">=0.17" + esbuild: '>=0.17' dependencies: esbuild: 0.18.20 load-tsconfig: 0.2.5 dev: true + /bundle-require@4.0.2(esbuild@0.19.9): + resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + peerDependencies: + esbuild: '>=0.17' + dependencies: + esbuild: 0.19.9 + load-tsconfig: 0.2.5 + dev: true + /bytes@3.0.0: resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} dev: true /bytes@3.1.2: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} /c12@1.4.2: resolution: {integrity: sha512-3IP/MuamSVRVw8W8+CHWAz9gKN4gd+voF2zm/Ln6D25C2RhytEZ1ABbC8MjKr4BR9rhoV1JQ7jJA158LDiTkLg==} @@ -12563,11 +12917,11 @@ packages: /c8@7.14.0: resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} - engines: {node: ">=10.12.0"} + engines: {node: '>=10.12.0'} hasBin: true dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@istanbuljs/schema": 0.1.3 + '@bcoe/v8-coverage': 0.2.3 + '@istanbuljs/schema': 0.1.3 find-up: 5.0.0 foreground-child: 2.0.0 istanbul-lib-coverage: 3.2.0 @@ -12582,14 +12936,14 @@ packages: /cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /cacache@17.1.4: resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - "@npmcli/fs": 3.1.0 + '@npmcli/fs': 3.1.0 fs-minipass: 3.0.3 glob: 10.3.10 lru-cache: 7.18.3 @@ -12606,7 +12960,7 @@ packages: resolution: {integrity: sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@npmcli/fs": 3.1.0 + '@npmcli/fs': 3.1.0 fs-minipass: 3.0.3 glob: 10.3.10 lru-cache: 10.0.1 @@ -12622,14 +12976,14 @@ packages: /cacheable-lookup@7.0.0: resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dev: true /cacheable-request@10.2.14: resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: - "@types/http-cache-semantics": 4.0.2 + '@types/http-cache-semantics': 4.0.2 get-stream: 6.0.1 http-cache-semantics: 4.1.1 keyv: 4.5.4 @@ -12646,15 +13000,15 @@ packages: /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} /camelcase-css@2.0.1: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} /camelcase-keys@6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: camelcase: 5.3.1 map-obj: 4.3.0 @@ -12662,20 +13016,20 @@ packages: /camelcase@5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: ">=6"} + engines: {node: '>=6'} /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: ">=10"} + engines: {node: '>=10'} /camelcase@7.0.1: resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dev: true /can-write-to-dir@1.1.1: resolution: {integrity: sha512-eOgiEWqjppB+3DN/5E82EQ8dTINus8d9GXMCbEsUnp2hcUIcXmBvzWmD3tXMk3CuBK0v+ddK9qw0EAF+JVRMjQ==} - engines: {node: ">=10.13"} + engines: {node: '>=10.13'} dependencies: path-temp: 2.1.0 dev: false @@ -12686,11 +13040,11 @@ packages: /case@1.6.3: resolution: {integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==} - engines: {node: ">= 0.8.0"} + engines: {node: '>= 0.8.0'} /cdk8s-plus-27@2.7.32(cdk8s@2.66.8)(constructs@10.2.70): resolution: {integrity: sha512-h2/JDogQC+LW1+LUOaFCbTIM4Bxqo7iYtvjr/Aqzu0i0LsrEoTeFmGzqjck3q6PQcovRdYYcPr9eaNQFevx9TA==} - engines: {node: ">= 16.20.0"} + engines: {node: '>= 16.20.0'} peerDependencies: cdk8s: ^2.66.5 constructs: ^10.2.70 @@ -12709,7 +13063,7 @@ packages: /cdk8s@2.66.8(constructs@10.2.70): resolution: {integrity: sha512-ELWEWe84VXd06O8itktG8TtzDDNxr1wpiucuzeZnxe1YHoEM2jr+8nc1j85tWzz6Cy6miPStglQs2TZc/LxK4g==} - engines: {node: ">= 16.20.0"} + engines: {node: '>= 16.20.0'} peerDependencies: constructs: ^10 dependencies: @@ -12732,12 +13086,12 @@ packages: resolution: {integrity: sha512-D2vZRtmFenYLDLUXF+uxuxUkJM3uYNce7Jn7/nWk/+qlcH/3n7TOEqV9UAgZFvjMLotGrA5/FIEDv4xse7sKRg==} hasBin: true dependencies: - "@cdktf/cli-core": 0.17.0(react@17.0.2) - "@cdktf/commons": 0.17.0 - "@cdktf/hcl2cdk": 0.17.0 - "@cdktf/hcl2json": 0.17.0 - "@inquirer/prompts": 2.3.1 - "@sentry/node": 6.19.7 + '@cdktf/cli-core': 0.17.0(react@17.0.2) + '@cdktf/commons': 0.17.0 + '@cdktf/hcl2cdk': 0.17.0 + '@cdktf/hcl2json': 0.17.0 + '@inquirer/prompts': 2.3.1 + '@sentry/node': 6.19.7 cdktf: 0.17.0(constructs@10.2.70) codemaker: 1.90.0 constructs: 10.2.70 @@ -12757,7 +13111,7 @@ packages: yoga-layout-prebuilt: 1.10.0 zod: 1.11.17 transitivePeerDependencies: - - "@types/react" + - '@types/react' - bufferutil - debug - encoding @@ -12798,7 +13152,7 @@ packages: /chai@4.3.10: resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: assertion-error: 1.1.0 check-error: 1.0.3 @@ -12811,7 +13165,7 @@ packages: /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 @@ -12819,7 +13173,7 @@ packages: /chalk@4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 @@ -12854,7 +13208,7 @@ packages: /char-regex@1.0.2: resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: ">=10"} + engines: {node: '>=10'} /character-entities@2.0.2: resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} @@ -12883,7 +13237,7 @@ packages: /cheerio@1.0.0-rc.12: resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: cheerio-select: 2.1.0 dom-serializer: 2.0.0 @@ -12896,7 +13250,7 @@ packages: /chokidar@3.5.3: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: ">= 8.10.0"} + engines: {node: '>= 8.10.0'} dependencies: anymatch: 3.1.3 braces: 3.0.2 @@ -12915,11 +13269,11 @@ packages: /chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} /chrome-trace-event@1.0.3: resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} - engines: {node: ">=6.0"} + engines: {node: '>=6.0'} dev: true /ci-info@2.0.0: @@ -12928,7 +13282,7 @@ packages: /ci-info@3.9.0: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} /cjs-module-lexer@1.2.3: resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} @@ -12940,27 +13294,27 @@ packages: /clean-regexp@1.0.0: resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: escape-string-regexp: 1.0.5 dev: false /clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: ">=6"} + engines: {node: '>=6'} /cli-boxes@2.2.1: resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} - engines: {node: ">=6"} + engines: {node: '>=6'} /cli-boxes@3.0.0: resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /cli-columns@4.0.0: resolution: {integrity: sha512-XW2Vg+w+L9on9wtwKpyzluIPCWXjaBahI7mTcYjx+BVIYD9c3yqcv/yKC7CmdCZat4rq2yiE1UMSJC5ivKfMtQ==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 @@ -12968,18 +13322,18 @@ packages: /cli-cursor@3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: restore-cursor: 3.1.0 /cli-spinners@2.7.0: resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /cli-spinners@2.9.1: resolution: {integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} /cli-table3@0.6.3: resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} @@ -12987,26 +13341,26 @@ packages: dependencies: string-width: 4.2.3 optionalDependencies: - "@colors/colors": 1.5.0 + '@colors/colors': 1.5.0 dev: true /cli-truncate@2.1.0: resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 /cli-width@3.0.0: resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} requiresBuild: true dev: false optional: true /cli-width@4.1.0: resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} - engines: {node: ">= 12"} + engines: {node: '>= 12'} dev: true /client-only@0.0.1: @@ -13030,7 +13384,7 @@ packages: /cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 @@ -13038,7 +13392,7 @@ packages: /clone-deep@4.0.1: resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 @@ -13047,16 +13401,16 @@ packages: /clone@1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: ">=0.8"} + engines: {node: '>=0.8'} /clone@2.1.2: resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} - engines: {node: ">=0.8"} + engines: {node: '>=0.8'} dev: true /cluster-key-slot@1.1.2: resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /cmd-shim@6.0.1: resolution: {integrity: sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==} @@ -13065,19 +13419,19 @@ packages: /co@4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: ">= 1.0.0", node: ">= 0.12.0"} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} dev: true /code-excerpt@3.0.0: resolution: {integrity: sha512-VHNTVhd7KsLGOqfX3SyeO8RyYPMp1GJOg194VITk04WMYCv4plV68YWe6TJZxd9MhobjtpMRnVky01gqZsalaw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: convert-to-spaces: 1.0.2 dev: true /codemaker@1.90.0: resolution: {integrity: sha512-0h95TmecbC1CYkpcvyq4qoipQ4vJT96MRevLKUL3hjgxtd5BB+hZ7AG2pjTFHQt62eRpQE0fZz6J/aLv/wUNUA==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} dependencies: camelcase: 6.3.0 decamelize: 5.0.1 @@ -13103,7 +13457,7 @@ packages: /color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: ">=7.0.0"} + engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 @@ -13149,7 +13503,7 @@ packages: /combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} dependencies: delayed-stream: 1.0.0 @@ -13159,23 +13513,23 @@ packages: /commander@10.0.1: resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} - engines: {node: ">=14"} + engines: {node: '>=14'} /commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} /commander@4.1.1: resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} /commander@6.2.1: resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dev: true /comment-json@4.2.2: resolution: {integrity: sha512-H8T+kl3nZesZu41zO2oNXIJWojNeK3mHxCLrsBNu6feksBXsgb+PtYz5daP5P86A0F3sz3840KVYehr04enISQ==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: array-timsort: 1.0.3 core-util-is: 1.0.3 @@ -13214,7 +13568,7 @@ packages: /compress-commons@4.1.2: resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} dependencies: buffer-crc32: 0.2.13 crc32-stream: 4.0.3 @@ -13223,13 +13577,13 @@ packages: /compressible@2.0.18: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 /compression@1.7.4: resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: ">= 0.8.0"} + engines: {node: '>= 0.8.0'} dependencies: accepts: 1.3.8 bytes: 3.0.0 @@ -13244,7 +13598,7 @@ packages: /comver-to-semver@1.0.0: resolution: {integrity: sha512-gcGtbRxjwROQOdXLUWH1fQAXqThUVRZ219aAwgtX3KfYw429/Zv6EIJRf5TBSzWdAGwePmqH7w70WTaX4MDqag==} - engines: {node: ">=12.17"} + engines: {node: '>=12.17'} dev: false /concat-map@0.0.1: @@ -13252,7 +13606,7 @@ packages: /concat-stream@1.6.2: resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} - engines: {"0": node >= 0.8} + engines: {'0': node >= 0.8} dependencies: buffer-from: 1.1.2 inherits: 2.0.4 @@ -13262,7 +13616,7 @@ packages: /concat-stream@2.0.0: resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} - engines: {"0": node >= 6.0} + engines: {'0': node >= 6.0} dependencies: buffer-from: 1.1.2 inherits: 2.0.4 @@ -13272,7 +13626,7 @@ packages: /concordance@5.0.4: resolution: {integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==} - engines: {node: ">=10.18.0 <11 || >=12.14.0 <13 || >=14"} + engines: {node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14'} dependencies: date-time: 3.1.0 esutils: 2.0.3 @@ -13286,7 +13640,7 @@ packages: /conf@11.0.2: resolution: {integrity: sha512-jjyhlQ0ew/iwmtwsS2RaB6s8DBifcE2GYBEaw2SJDUY/slJJbNfY4GlDVzOs/ff8cM/Wua5CikqXgbFl5eu85A==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) @@ -13306,7 +13660,7 @@ packages: /configstore@6.0.0: resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: dot-prop: 6.0.1 graceful-fs: 4.2.11 @@ -13325,26 +13679,26 @@ packages: /constructs@10.2.70: resolution: {integrity: sha512-z6zr1E8K/9tzJbCQzY0UGX0/oVKPFKu9C/mzEnghCG6TAJINnvlq0CMKm63XqqeMleadZYm5T3sZGJKcxJS/Pg==} - engines: {node: ">= 16.14.0"} + engines: {node: '>= 16.14.0'} /constructs@3.4.344: resolution: {integrity: sha512-Qq3upn44oGdvgasHUKWVFsrynyYrtVRd9fd8ko9cJOrFzx9eCm3iI4bhBryQqaISdausbTYUOXmoEe/YSJ16Nw==} - engines: {node: ">= 16.14.0"} + engines: {node: '>= 16.14.0'} dev: false /content-disposition@0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} dependencies: safe-buffer: 5.2.1 /content-type@1.0.5: resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} /conventional-changelog-angular@5.0.13: resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: compare-func: 2.0.0 q: 1.5.1 @@ -13352,14 +13706,14 @@ packages: /conventional-changelog-atom@2.0.8: resolution: {integrity: sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: q: 1.5.1 dev: true /conventional-changelog-codemirror@2.0.8: resolution: {integrity: sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: q: 1.5.1 dev: true @@ -13369,7 +13723,7 @@ packages: /conventional-changelog-conventionalcommits@4.6.3: resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: compare-func: 2.0.0 lodash: 4.17.21 @@ -13378,7 +13732,7 @@ packages: /conventional-changelog-core@4.2.4: resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: add-stream: 1.0.0 conventional-changelog-writer: 5.0.1 @@ -13398,35 +13752,35 @@ packages: /conventional-changelog-ember@2.0.9: resolution: {integrity: sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: q: 1.5.1 dev: true /conventional-changelog-eslint@3.0.9: resolution: {integrity: sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: q: 1.5.1 dev: true /conventional-changelog-express@2.0.6: resolution: {integrity: sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: q: 1.5.1 dev: true /conventional-changelog-jquery@3.0.11: resolution: {integrity: sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: q: 1.5.1 dev: true /conventional-changelog-jshint@2.0.9: resolution: {integrity: sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: compare-func: 2.0.0 q: 1.5.1 @@ -13434,12 +13788,12 @@ packages: /conventional-changelog-preset-loader@2.3.4: resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /conventional-changelog-writer@5.0.1: resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: conventional-commits-filter: 2.0.7 @@ -13455,7 +13809,7 @@ packages: /conventional-changelog@3.1.25: resolution: {integrity: sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: conventional-changelog-angular: 5.0.13 conventional-changelog-atom: 2.0.8 @@ -13472,7 +13826,7 @@ packages: /conventional-commits-filter@2.0.7: resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: lodash.ismatch: 4.4.0 modify-values: 1.0.1 @@ -13480,7 +13834,7 @@ packages: /conventional-commits-parser@3.2.4: resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: JSONStream: 1.3.5 @@ -13493,7 +13847,7 @@ packages: /conventional-recommended-bump@6.1.0: resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: concat-stream: 2.0.0 @@ -13520,7 +13874,7 @@ packages: /convert-to-spaces@1.0.2: resolution: {integrity: sha512-cj09EBuObp9gZNQCzc7hByQyrs6jVGE+o9kSJmeUoj+GiPiJvi5LYqEH/Hmme4+MTLHM+Ejtq+FChpjjEnsPdQ==} - engines: {node: ">= 4"} + engines: {node: '>= 4'} dev: true /cookie-signature@1.0.6: @@ -13528,12 +13882,12 @@ packages: /cookie@0.4.2: resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} dev: true /cookie@0.5.0: resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} /core-js-compat@3.33.0: resolution: {integrity: sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw==} @@ -13546,7 +13900,7 @@ packages: /cors@2.8.5: resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} - engines: {node: ">= 0.10"} + engines: {node: '>= 0.10'} dependencies: object-assign: 4.1.1 vary: 1.1.2 @@ -13554,30 +13908,30 @@ packages: /crc-32@1.2.2: resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} - engines: {node: ">=0.8"} + engines: {node: '>=0.8'} hasBin: true /crc32-stream@4.0.3: resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} dependencies: crc-32: 1.2.2 readable-stream: 3.6.2 - /create-jest@29.7.0(@types/node@16.18.58)(ts-node@10.9.1): + /create-jest@29.7.0(@types/node@18.18.4)(ts-node@10.9.1): resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@16.18.58)(ts-node@10.9.1) + jest-config: 29.7.0(@types/node@18.18.4)(ts-node@10.9.1) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - supports-color - ts-node @@ -13589,7 +13943,7 @@ packages: /cron-parser@4.9.0: resolution: {integrity: sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} dependencies: luxon: 3.4.3 dev: false @@ -13604,7 +13958,7 @@ packages: /cross-spawn@7.0.3: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dependencies: path-key: 3.1.1 shebang-command: 2.0.0 @@ -13612,11 +13966,11 @@ packages: /crypto-random-string@2.0.0: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: ">=8"} + engines: {node: '>=8'} /crypto-random-string@4.0.0: resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: type-fest: 1.4.0 dev: true @@ -13633,7 +13987,7 @@ packages: /css-what@6.1.0: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dev: true /css.escape@1.5.1: @@ -13642,7 +13996,7 @@ packages: /cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: ">=4"} + engines: {node: '>=4'} hasBin: true /cssom@0.3.8: @@ -13655,7 +14009,7 @@ packages: /cssstyle@2.3.0: resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: cssom: 0.3.8 dev: true @@ -13665,17 +14019,17 @@ packages: /d3-color@3.1.0: resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: false /d3-dispatch@3.0.1: resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: false /d3-drag@3.0.0: resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: d3-dispatch: 3.0.1 d3-selection: 3.0.0 @@ -13683,29 +14037,29 @@ packages: /d3-ease@3.0.1: resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: false /d3-interpolate@3.0.1: resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: d3-color: 3.1.0 dev: false /d3-selection@3.0.0: resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: false /d3-timer@3.0.1: resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: false /d3-transition@3.0.1(d3-selection@3.0.0): resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} - engines: {node: ">=12"} + engines: {node: '>=12'} peerDependencies: d3-selection: 2 - 3 dependencies: @@ -13719,7 +14073,7 @@ packages: /d3-zoom@3.0.0: resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: d3-dispatch: 3.0.1 d3-drag: 3.0.0 @@ -13734,7 +14088,7 @@ packages: /dargs@7.0.0: resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /data-uri-to-buffer@2.0.2: @@ -13743,12 +14097,12 @@ packages: /data-uri-to-buffer@4.0.1: resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} - engines: {node: ">= 12"} + engines: {node: '>= 12'} dev: true /data-urls@2.0.0: resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: abab: 2.0.6 whatwg-mimetype: 2.3.0 @@ -13757,12 +14111,12 @@ packages: /date-format@4.0.14: resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==} - engines: {node: ">=4.0"} + engines: {node: '>=4.0'} dev: true /date-time@3.1.0: resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: time-zone: 1.0.0 dev: true @@ -13773,7 +14127,7 @@ packages: /debounce-fn@5.1.2: resolution: {integrity: sha512-Sr4SdOZ4vw6eQDvPYNxHogvrxmCIld/VenC5JbNrFwMiwd7lY/Z18ZFfo+EWNG4DD9nFlAujWAo/wGuOPHmy5A==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: mimic-fn: 4.0.0 dev: true @@ -13781,7 +14135,7 @@ packages: /debug@2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true @@ -13791,7 +14145,7 @@ packages: /debug@3.2.7(supports-color@5.5.0): resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true @@ -13801,9 +14155,9 @@ packages: /debug@4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: ">=6.0"} + engines: {node: '>=6.0'} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true @@ -13812,7 +14166,7 @@ packages: /decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dependencies: decamelize: 1.2.0 map-obj: 1.0.1 @@ -13820,12 +14174,12 @@ packages: /decamelize@1.2.0: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /decamelize@5.0.1: resolution: {integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /decimal.js@10.4.3: @@ -13840,7 +14194,7 @@ packages: /decompress-response@6.0.0: resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: mimic-response: 3.1.0 dev: true @@ -13859,7 +14213,7 @@ packages: /deep-eql@4.1.3: resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: type-detect: 4.0.8 dev: true @@ -13889,7 +14243,7 @@ packages: /deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: ">=4.0.0"} + engines: {node: '>=4.0.0'} requiresBuild: true dev: true @@ -13898,19 +14252,19 @@ packages: /deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /default-browser-id@3.0.0: resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: bplist-parser: 0.2.0 untildify: 4.0.0 /default-browser@4.0.0: resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: bundle-name: 3.0.0 default-browser-id: 3.0.0 @@ -13924,12 +14278,12 @@ packages: /defer-to-connect@2.0.1: resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /define-data-property@1.1.0: resolution: {integrity: sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.1 gopd: 1.0.1 @@ -13937,15 +14291,15 @@ packages: /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: ">=8"} + engines: {node: '>=8'} /define-lazy-prop@3.0.0: resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} - engines: {node: ">=12"} + engines: {node: '>=12'} /define-properties@1.2.1: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.0 has-property-descriptors: 1.0.0 @@ -13956,7 +14310,7 @@ packages: /del@6.1.1: resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: globby: 11.1.0 graceful-fs: 4.2.11 @@ -13969,26 +14323,26 @@ packages: /delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: ">=0.4.0"} + engines: {node: '>=0.4.0'} /delegates@1.0.0: resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} /denque@2.1.0: resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} - engines: {node: ">=0.10"} + engines: {node: '>=0.10'} dev: false /depd@2.0.0: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} /deprecation@2.3.1: resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} /dequal@2.0.3: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: ">=6"} + engines: {node: '>=6'} /destr@2.0.1: resolution: {integrity: sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA==} @@ -13996,30 +14350,30 @@ packages: /destroy@1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} /detect-indent@5.0.0: resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /detect-indent@6.1.0: resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /detect-libc@2.0.2: resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} - engines: {node: ">=8"} + engines: {node: '>=8'} /detect-newline@2.1.0: resolution: {integrity: sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /detect-newline@3.1.0: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /detect-node-es@1.1.0: @@ -14028,7 +14382,7 @@ packages: /detect-package-manager@2.0.1: resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: execa: 5.1.1 dev: true @@ -14069,17 +14423,17 @@ packages: /diff@4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: ">=0.3.1"} + engines: {node: '>=0.3.1'} dev: true /diff@5.1.0: resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} - engines: {node: ">=0.3.1"} + engines: {node: '>=0.3.1'} dev: true /dir-glob@3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: path-type: 4.0.0 @@ -14088,13 +14442,13 @@ packages: /doctrine@2.1.0: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 /doctrine@3.0.0: resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: ">=6.0.0"} + engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 @@ -14116,14 +14470,14 @@ packages: /domexception@2.0.1: resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: webidl-conversions: 5.0.0 dev: true /domhandler@5.0.3: resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: ">= 4"} + engines: {node: '>= 4'} dependencies: domelementtype: 2.3.0 dev: true @@ -14138,14 +14492,14 @@ packages: /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: is-obj: 2.0.0 dev: true /dot-prop@6.0.1: resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: is-obj: 2.0.0 dev: true @@ -14159,15 +14513,15 @@ packages: /dotenv-expand@10.0.0: resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} - engines: {node: ">=12"} + engines: {node: '>=12'} /dotenv@16.3.1: resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} /dotgitignore@2.1.0: resolution: {integrity: sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: find-up: 3.0.0 minimatch: 3.1.2 @@ -14179,12 +14533,12 @@ packages: dependencies: semver: 7.5.4 shelljs: 0.8.5 - typescript: 5.4.0-dev.20231124 + typescript: 5.4.0-dev.20231219 dev: true /dset@3.1.2: resolution: {integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: false /duplexify@3.7.1: @@ -14218,7 +14572,7 @@ packages: /ejs@3.1.9: resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} hasBin: true dependencies: jake: 10.8.7 @@ -14234,17 +14588,17 @@ packages: /emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: true /emittery@0.8.1: resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /emittery@1.0.1: resolution: {integrity: sha512-2ID6FdrMD9KDLldGesP6317G78K7km/kMcwItRtVFva7I/cSEOIaLpewaUb+YLXVwdAp3Ctfxh/V5zIl1sj7dQ==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dev: true /emoji-regex@8.0.0: @@ -14261,14 +14615,14 @@ packages: /encode-registry@3.0.1: resolution: {integrity: sha512-6qOwkl1g0fv0DN3Y3ggr2EaZXN71aoAqPp3p/pVaWSBSIo+YjLOWN61Fva43oVyQNPf7kgm8lkudzlzojwE2jw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: mem: 8.1.1 dev: false /encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} /encoding@0.1.13: resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} @@ -14284,7 +14638,7 @@ packages: /enhanced-resolve@5.15.0: resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} - engines: {node: ">=10.13.0"} + engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 @@ -14303,12 +14657,12 @@ packages: /entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: ">=0.12"} + engines: {node: '>=0.12'} dev: true /env-paths@2.2.1: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: ">=6"} + engines: {node: '>=6'} /env-paths@3.0.0: resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} @@ -14317,7 +14671,7 @@ packages: /envinfo@7.10.0: resolution: {integrity: sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==} - engines: {node: ">=4"} + engines: {node: '>=4'} hasBin: true dev: true @@ -14331,7 +14685,7 @@ packages: /es-abstract@1.22.2: resolution: {integrity: sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 arraybuffer.prototype.slice: 1.0.2 @@ -14416,7 +14770,7 @@ packages: /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.1 has: 1.0.4 @@ -14429,7 +14783,7 @@ packages: /es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 @@ -14437,7 +14791,7 @@ packages: /esbuild-android-64@0.15.18: resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [android] requiresBuild: true @@ -14446,7 +14800,7 @@ packages: /esbuild-android-arm64@0.15.18: resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true @@ -14455,7 +14809,7 @@ packages: /esbuild-darwin-64@0.15.18: resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true @@ -14464,7 +14818,7 @@ packages: /esbuild-darwin-arm64@0.15.18: resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true @@ -14473,7 +14827,7 @@ packages: /esbuild-freebsd-64@0.15.18: resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true @@ -14482,7 +14836,7 @@ packages: /esbuild-freebsd-arm64@0.15.18: resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true @@ -14491,7 +14845,7 @@ packages: /esbuild-linux-32@0.15.18: resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true @@ -14500,7 +14854,7 @@ packages: /esbuild-linux-64@0.15.18: resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true @@ -14509,7 +14863,7 @@ packages: /esbuild-linux-arm64@0.15.18: resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true @@ -14518,7 +14872,7 @@ packages: /esbuild-linux-arm@0.15.18: resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true @@ -14527,7 +14881,7 @@ packages: /esbuild-linux-mips64le@0.15.18: resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true @@ -14536,7 +14890,7 @@ packages: /esbuild-linux-ppc64le@0.15.18: resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true @@ -14545,7 +14899,7 @@ packages: /esbuild-linux-riscv64@0.15.18: resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true @@ -14554,7 +14908,7 @@ packages: /esbuild-linux-s390x@0.15.18: resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true @@ -14563,7 +14917,7 @@ packages: /esbuild-netbsd-64@0.15.18: resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true @@ -14572,7 +14926,7 @@ packages: /esbuild-openbsd-64@0.15.18: resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true @@ -14594,7 +14948,7 @@ packages: /esbuild-register@3.5.0(esbuild@0.18.20): resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} peerDependencies: - esbuild: ">=0.12 <1" + esbuild: '>=0.12 <1' dependencies: debug: 4.3.4 esbuild: 0.18.20 @@ -14604,7 +14958,7 @@ packages: /esbuild-sunos-64@0.15.18: resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true @@ -14613,14 +14967,14 @@ packages: /esbuild-wasm@0.18.20(patch_hash=b6w4kbugtl4xi6w24tkr3hfz4y): resolution: {integrity: sha512-xRXxH7q4FeC783rORSCyBPWQhcboleKXRPvt3Yl2YMe7jTtu/j7/zjWjqkVhO9BNVHSNVC6igG+XVTPWNQ+kRA==} - engines: {node: ">=12"} + engines: {node: '>=12'} hasBin: true dev: false patched: true /esbuild-windows-32@0.15.18: resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true @@ -14629,7 +14983,7 @@ packages: /esbuild-windows-64@0.15.18: resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true @@ -14638,7 +14992,7 @@ packages: /esbuild-windows-arm64@0.15.18: resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true @@ -14647,12 +15001,12 @@ packages: /esbuild@0.15.18: resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==} - engines: {node: ">=12"} + engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - "@esbuild/android-arm": 0.15.18 - "@esbuild/linux-loong64": 0.15.18 + '@esbuild/android-arm': 0.15.18 + '@esbuild/linux-loong64': 0.15.18 esbuild-android-64: 0.15.18 esbuild-android-arm64: 0.15.18 esbuild-darwin-64: 0.15.18 @@ -14677,70 +15031,100 @@ packages: /esbuild@0.17.19: resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} - engines: {node: ">=12"} + engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - "@esbuild/android-arm": 0.17.19 - "@esbuild/android-arm64": 0.17.19 - "@esbuild/android-x64": 0.17.19 - "@esbuild/darwin-arm64": 0.17.19 - "@esbuild/darwin-x64": 0.17.19 - "@esbuild/freebsd-arm64": 0.17.19 - "@esbuild/freebsd-x64": 0.17.19 - "@esbuild/linux-arm": 0.17.19 - "@esbuild/linux-arm64": 0.17.19 - "@esbuild/linux-ia32": 0.17.19 - "@esbuild/linux-loong64": 0.17.19 - "@esbuild/linux-mips64el": 0.17.19 - "@esbuild/linux-ppc64": 0.17.19 - "@esbuild/linux-riscv64": 0.17.19 - "@esbuild/linux-s390x": 0.17.19 - "@esbuild/linux-x64": 0.17.19 - "@esbuild/netbsd-x64": 0.17.19 - "@esbuild/openbsd-x64": 0.17.19 - "@esbuild/sunos-x64": 0.17.19 - "@esbuild/win32-arm64": 0.17.19 - "@esbuild/win32-ia32": 0.17.19 - "@esbuild/win32-x64": 0.17.19 + '@esbuild/android-arm': 0.17.19 + '@esbuild/android-arm64': 0.17.19 + '@esbuild/android-x64': 0.17.19 + '@esbuild/darwin-arm64': 0.17.19 + '@esbuild/darwin-x64': 0.17.19 + '@esbuild/freebsd-arm64': 0.17.19 + '@esbuild/freebsd-x64': 0.17.19 + '@esbuild/linux-arm': 0.17.19 + '@esbuild/linux-arm64': 0.17.19 + '@esbuild/linux-ia32': 0.17.19 + '@esbuild/linux-loong64': 0.17.19 + '@esbuild/linux-mips64el': 0.17.19 + '@esbuild/linux-ppc64': 0.17.19 + '@esbuild/linux-riscv64': 0.17.19 + '@esbuild/linux-s390x': 0.17.19 + '@esbuild/linux-x64': 0.17.19 + '@esbuild/netbsd-x64': 0.17.19 + '@esbuild/openbsd-x64': 0.17.19 + '@esbuild/sunos-x64': 0.17.19 + '@esbuild/win32-arm64': 0.17.19 + '@esbuild/win32-ia32': 0.17.19 + '@esbuild/win32-x64': 0.17.19 dev: true /esbuild@0.18.20: resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: ">=12"} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.18.20 + '@esbuild/android-arm64': 0.18.20 + '@esbuild/android-x64': 0.18.20 + '@esbuild/darwin-arm64': 0.18.20 + '@esbuild/darwin-x64': 0.18.20 + '@esbuild/freebsd-arm64': 0.18.20 + '@esbuild/freebsd-x64': 0.18.20 + '@esbuild/linux-arm': 0.18.20 + '@esbuild/linux-arm64': 0.18.20 + '@esbuild/linux-ia32': 0.18.20 + '@esbuild/linux-loong64': 0.18.20 + '@esbuild/linux-mips64el': 0.18.20 + '@esbuild/linux-ppc64': 0.18.20 + '@esbuild/linux-riscv64': 0.18.20 + '@esbuild/linux-s390x': 0.18.20 + '@esbuild/linux-x64': 0.18.20 + '@esbuild/netbsd-x64': 0.18.20 + '@esbuild/openbsd-x64': 0.18.20 + '@esbuild/sunos-x64': 0.18.20 + '@esbuild/win32-arm64': 0.18.20 + '@esbuild/win32-ia32': 0.18.20 + '@esbuild/win32-x64': 0.18.20 + + /esbuild@0.19.9: + resolution: {integrity: sha512-U9CHtKSy+EpPsEBa+/A2gMs/h3ylBC0H0KSqIg7tpztHerLi6nrrcoUJAkNCEPumx8yJ+Byic4BVwHgRbN0TBg==} + engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - "@esbuild/android-arm": 0.18.20 - "@esbuild/android-arm64": 0.18.20 - "@esbuild/android-x64": 0.18.20 - "@esbuild/darwin-arm64": 0.18.20 - "@esbuild/darwin-x64": 0.18.20 - "@esbuild/freebsd-arm64": 0.18.20 - "@esbuild/freebsd-x64": 0.18.20 - "@esbuild/linux-arm": 0.18.20 - "@esbuild/linux-arm64": 0.18.20 - "@esbuild/linux-ia32": 0.18.20 - "@esbuild/linux-loong64": 0.18.20 - "@esbuild/linux-mips64el": 0.18.20 - "@esbuild/linux-ppc64": 0.18.20 - "@esbuild/linux-riscv64": 0.18.20 - "@esbuild/linux-s390x": 0.18.20 - "@esbuild/linux-x64": 0.18.20 - "@esbuild/netbsd-x64": 0.18.20 - "@esbuild/openbsd-x64": 0.18.20 - "@esbuild/sunos-x64": 0.18.20 - "@esbuild/win32-arm64": 0.18.20 - "@esbuild/win32-ia32": 0.18.20 - "@esbuild/win32-x64": 0.18.20 + '@esbuild/android-arm': 0.19.9 + '@esbuild/android-arm64': 0.19.9 + '@esbuild/android-x64': 0.19.9 + '@esbuild/darwin-arm64': 0.19.9 + '@esbuild/darwin-x64': 0.19.9 + '@esbuild/freebsd-arm64': 0.19.9 + '@esbuild/freebsd-x64': 0.19.9 + '@esbuild/linux-arm': 0.19.9 + '@esbuild/linux-arm64': 0.19.9 + '@esbuild/linux-ia32': 0.19.9 + '@esbuild/linux-loong64': 0.19.9 + '@esbuild/linux-mips64el': 0.19.9 + '@esbuild/linux-ppc64': 0.19.9 + '@esbuild/linux-riscv64': 0.19.9 + '@esbuild/linux-s390x': 0.19.9 + '@esbuild/linux-x64': 0.19.9 + '@esbuild/netbsd-x64': 0.19.9 + '@esbuild/openbsd-x64': 0.19.9 + '@esbuild/sunos-x64': 0.19.9 + '@esbuild/win32-arm64': 0.19.9 + '@esbuild/win32-ia32': 0.19.9 + '@esbuild/win32-x64': 0.19.9 + dev: true /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: ">=6"} + engines: {node: '>=6'} /escape-goat@4.0.0: resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: true /escape-html@1.0.3: @@ -14748,20 +15132,20 @@ packages: /escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: ">=0.8.0"} + engines: {node: '>=0.8.0'} /escape-string-regexp@2.0.0: resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: ">=10"} + engines: {node: '>=10'} /escodegen@2.1.0: resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: ">=6.0"} + engines: {node: '>=6.0'} hasBin: true dependencies: esprima: 4.0.1 @@ -14775,7 +15159,7 @@ packages: resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==} hasBin: true peerDependencies: - eslint: ">=7.0.0" + eslint: '>=7.0.0' dependencies: eslint: 8.51.0 @@ -14792,8 +15176,8 @@ packages: resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - eslint: "*" - eslint-plugin-import: "*" + eslint: '*' + eslint-plugin-import: '*' dependencies: debug: 4.3.4 enhanced-resolve: 5.15.0 @@ -14805,7 +15189,7 @@ packages: is-core-module: 2.13.0 is-glob: 4.0.3 transitivePeerDependencies: - - "@typescript-eslint/parser" + - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color @@ -14814,8 +15198,8 @@ packages: resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - eslint: "*" - eslint-plugin-import: "*" + eslint: '*' + eslint-plugin-import: '*' dependencies: debug: 4.3.4 enhanced-resolve: 5.15.0 @@ -14827,7 +15211,7 @@ packages: is-core-module: 2.13.0 is-glob: 4.0.3 transitivePeerDependencies: - - "@typescript-eslint/parser" + - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color @@ -14835,15 +15219,15 @@ packages: /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.51.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} - engines: {node: ">=4"} + engines: {node: '>=4'} peerDependencies: - "@typescript-eslint/parser": "*" - eslint: "*" - eslint-import-resolver-node: "*" - eslint-import-resolver-typescript: "*" - eslint-import-resolver-webpack: "*" + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' peerDependenciesMeta: - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true eslint: optional: true @@ -14854,7 +15238,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - "@typescript-eslint/parser": 5.62.0(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.51.0)(typescript@4.9.5) debug: 3.2.7(supports-color@5.5.0) eslint: 8.51.0 eslint-import-resolver-node: 0.3.9 @@ -14864,15 +15248,15 @@ packages: /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.51.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} - engines: {node: ">=4"} + engines: {node: '>=4'} peerDependencies: - "@typescript-eslint/parser": "*" - eslint: "*" - eslint-import-resolver-node: "*" - eslint-import-resolver-typescript: "*" - eslint-import-resolver-webpack: "*" + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' peerDependenciesMeta: - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true eslint: optional: true @@ -14883,7 +15267,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - "@typescript-eslint/parser": 6.7.4(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/parser': 6.7.4(eslint@8.51.0)(typescript@4.9.5) debug: 3.2.7(supports-color@5.5.0) eslint: 8.51.0 eslint-import-resolver-node: 0.3.9 @@ -14894,15 +15278,15 @@ packages: /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.51.0): resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} - engines: {node: ">=4"} + engines: {node: '>=4'} peerDependencies: - "@typescript-eslint/parser": "*" + '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 peerDependenciesMeta: - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true dependencies: - "@typescript-eslint/parser": 5.62.0(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.51.0)(typescript@4.9.5) array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.2 @@ -14928,15 +15312,15 @@ packages: /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.51.0): resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} - engines: {node: ">=4"} + engines: {node: '>=4'} peerDependencies: - "@typescript-eslint/parser": "*" + '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 peerDependenciesMeta: - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true dependencies: - "@typescript-eslint/parser": 6.7.4(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/parser': 6.7.4(eslint@8.51.0)(typescript@4.9.5) array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.2 @@ -14963,11 +15347,11 @@ packages: /eslint-plugin-jsx-a11y@6.7.1(eslint@8.51.0): resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} - engines: {node: ">=4.0"} + engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - "@babel/runtime": 7.23.1 + '@babel/runtime': 7.23.1 aria-query: 5.3.0 array-includes: 3.1.7 array.prototype.flatmap: 1.3.2 @@ -14988,11 +15372,11 @@ packages: /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0)(eslint@8.51.0)(prettier@2.8.8): resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} peerDependencies: - eslint: ">=7.28.0" - eslint-config-prettier: "*" - prettier: ">=2.0.0" + eslint: '>=7.28.0' + eslint-config-prettier: '*' + prettier: '>=2.0.0' peerDependenciesMeta: eslint-config-prettier: optional: true @@ -15004,7 +15388,7 @@ packages: /eslint-plugin-react-hooks@4.6.0(eslint@8.51.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: @@ -15013,7 +15397,7 @@ packages: /eslint-plugin-react@7.33.2(eslint@8.51.0): resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} - engines: {node: ">=4"} + engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: @@ -15039,19 +15423,19 @@ packages: /eslint-plugin-sort-exports@0.8.0(eslint@8.51.0): resolution: {integrity: sha512-5x7kJNjIS5bSyehFJ6Gk2gh2wUPt/rmhwDHF8JPDicSH7bvrLRFdlkhHu74YqYBjEySHYaOZVoKNP90TjI0v6w==} peerDependencies: - eslint: ">=5.0.0" + eslint: '>=5.0.0' dependencies: eslint: 8.51.0 dev: true /eslint-plugin-unicorn@47.0.0(eslint@8.51.0): resolution: {integrity: sha512-ivB3bKk7fDIeWOUmmMm9o3Ax9zbMz1Bsza/R2qm46ufw4T6VBFBaJIR1uN3pCKSmSXm8/9Nri8V+iUut1NhQGA==} - engines: {node: ">=16"} + engines: {node: '>=16'} peerDependencies: - eslint: ">=8.38.0" + eslint: '>=8.38.0' dependencies: - "@babel/helper-validator-identifier": 7.22.20 - "@eslint-community/eslint-utils": 4.4.0(eslint@8.51.0) + '@babel/helper-validator-identifier': 7.22.20 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) ci-info: 3.9.0 clean-regexp: 1.0.0 eslint: 8.51.0 @@ -15071,7 +15455,7 @@ packages: /eslint-scope@5.1.1: resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: ">=8.0.0"} + engines: {node: '>=8.0.0'} dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 @@ -15092,13 +15476,13 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.51.0) - "@eslint-community/regexpp": 4.9.1 - "@eslint/eslintrc": 2.1.2 - "@eslint/js": 8.51.0 - "@humanwhocodes/config-array": 0.11.11 - "@humanwhocodes/module-importer": 1.0.1 - "@nodelib/fs.walk": 1.2.8 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) + '@eslint-community/regexpp': 4.9.1 + '@eslint/eslintrc': 2.1.2 + '@eslint/js': 8.51.0 + '@humanwhocodes/config-array': 0.11.11 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -15142,35 +15526,35 @@ packages: /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: ">=4"} + engines: {node: '>=4'} hasBin: true /esquery@1.5.0: resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: ">=0.10"} + engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 /esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: ">=4.0"} + engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 /estraverse@4.3.0: resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: ">=4.0"} + engines: {node: '>=4.0'} /estraverse@5.3.0: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: ">=4.0"} + engines: {node: '>=4.0'} /estree-to-babel@3.2.1: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} - engines: {node: ">=8.3.0"} + engines: {node: '>=8.3.0'} dependencies: - "@babel/traverse": 7.23.0 - "@babel/types": 7.23.0 + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 c8: 7.14.0 transitivePeerDependencies: - supports-color @@ -15182,24 +15566,24 @@ packages: /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /etag@1.8.1: resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} /event-target-shim@5.0.1: resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: false /events@3.3.0: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: ">=0.8.x"} + engines: {node: '>=0.8.x'} /execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -15227,7 +15611,7 @@ packages: /execa@8.0.1: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: ">=16.17"} + engines: {node: '>=16.17'} dependencies: cross-spawn: 7.0.3 get-stream: 8.0.1 @@ -15242,19 +15626,19 @@ packages: /exit@0.1.2: resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: ">= 0.8.0"} + engines: {node: '>= 0.8.0'} dev: true /expand-template@2.0.3: resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /expect@27.5.1: resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 jest-get-type: 27.5.1 jest-matcher-utils: 27.5.1 jest-message-util: 27.5.1 @@ -15264,7 +15648,7 @@ packages: resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - "@jest/expect-utils": 28.1.3 + '@jest/expect-utils': 28.1.3 jest-get-type: 28.0.2 jest-matcher-utils: 28.1.3 jest-message-util: 28.1.3 @@ -15275,7 +15659,7 @@ packages: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/expect-utils": 29.7.0 + '@jest/expect-utils': 29.7.0 jest-get-type: 29.6.3 jest-matcher-utils: 29.7.0 jest-message-util: 29.7.0 @@ -15287,7 +15671,7 @@ packages: /express@4.18.2: resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} - engines: {node: ">= 0.10.0"} + engines: {node: '>= 0.10.0'} dependencies: accepts: 1.3.8 array-flatten: 1.1.1 @@ -15328,7 +15712,7 @@ packages: /external-editor@3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 @@ -15348,14 +15732,14 @@ packages: /extract-zip@2.0.1: resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: ">= 10.17.0"} + engines: {node: '>= 10.17.0'} hasBin: true dependencies: debug: 4.3.4 get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: - "@types/yauzl": 2.10.3 + '@types/yauzl': 2.10.3 transitivePeerDependencies: - supports-color dev: true @@ -15368,10 +15752,10 @@ packages: /fast-glob@3.3.1: resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} - engines: {node: ">=8.6.0"} + engines: {node: '>=8.6.0'} dependencies: - "@nodelib/fs.stat": 2.0.5 - "@nodelib/fs.walk": 1.2.8 + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.5 @@ -15449,7 +15833,7 @@ packages: /figures@3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: escape-string-regexp: 1.0.5 @@ -15474,13 +15858,13 @@ packages: /fill-range@7.0.1: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 /finalhandler@1.2.0: resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} dependencies: debug: 2.6.9 encodeurl: 1.0.2 @@ -15494,7 +15878,7 @@ packages: /find-cache-dir@2.1.0: resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: commondir: 1.0.1 make-dir: 2.1.0 @@ -15503,7 +15887,7 @@ packages: /find-cache-dir@3.3.2: resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: commondir: 1.0.1 make-dir: 3.1.0 @@ -15512,35 +15896,35 @@ packages: /find-up@2.1.0: resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: locate-path: 2.0.0 dev: true /find-up@3.0.0: resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: locate-path: 3.0.0 dev: true /find-up@4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: locate-path: 5.0.0 path-exists: 4.0.0 /find-up@5.0.0: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: locate-path: 6.0.0 path-exists: 4.0.0 /flat-cache@3.1.1: resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} dependencies: flatted: 3.2.9 keyv: 4.5.4 @@ -15556,7 +15940,7 @@ packages: /flow-parser@0.218.0: resolution: {integrity: sha512-mk4e7UK4P/W3tjrJyto6oxPuCjwvRMyzBh72hTl8T0dOcTzkP0M2JJHpncgyhKphMFi9pnjwHfc8e0oe4Uk3LA==} - engines: {node: ">=0.4.0"} + engines: {node: '>=0.4.0'} dev: true /fn.name@1.1.0: @@ -15567,9 +15951,9 @@ packages: /follow-redirects@1.15.3: resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==} - engines: {node: ">=4.0"} + engines: {node: '>=4.0'} peerDependencies: - debug: "*" + debug: '*' peerDependenciesMeta: debug: optional: true @@ -15581,7 +15965,7 @@ packages: /foreground-child@2.0.0: resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} - engines: {node: ">=8.0.0"} + engines: {node: '>=8.0.0'} dependencies: cross-spawn: 7.0.3 signal-exit: 3.0.7 @@ -15589,19 +15973,19 @@ packages: /foreground-child@3.1.1: resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} - engines: {node: ">=14"} + engines: {node: '>=14'} dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 /form-data-encoder@2.1.4: resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} - engines: {node: ">= 14.17"} + engines: {node: '>= 14.17'} dev: true /form-data@3.0.1: resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 @@ -15610,7 +15994,7 @@ packages: /form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 @@ -15618,18 +16002,18 @@ packages: /formdata-polyfill@4.0.10: resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} - engines: {node: ">=12.20.0"} + engines: {node: '>=12.20.0'} dependencies: fetch-blob: 3.2.0 dev: true /forwarded@0.2.0: resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} /fp-and-or@0.1.4: resolution: {integrity: sha512-+yRYRhpnFPWXSly/6V4Lw9IfOV26uu30kynGJ03PW+MnjOEQe45RZ141QcS0aJehYBYA50GfCDnsRbFJdhssRw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /fraction.js@4.3.6: @@ -15651,19 +16035,19 @@ packages: react-dom: 18.2.0(react@18.2.0) tslib: 2.6.2 optionalDependencies: - "@emotion/is-prop-valid": 0.8.8 + '@emotion/is-prop-valid': 0.8.8 dev: false /fresh@0.5.2: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} /fs-constants@1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} /fs-extra@10.1.0: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -15671,7 +16055,7 @@ packages: /fs-extra@11.1.1: resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: ">=14.14"} + engines: {node: '>=14.14'} dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -15679,7 +16063,7 @@ packages: /fs-extra@8.1.0: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: ">=6 <7 || >=8"} + engines: {node: '>=6 <7 || >=8'} dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 @@ -15688,7 +16072,7 @@ packages: /fs-extra@9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 @@ -15697,7 +16081,7 @@ packages: /fs-minipass@2.1.0: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 @@ -15734,7 +16118,7 @@ packages: /function.prototype.name@1.1.6: resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -15773,7 +16157,7 @@ packages: /gaxios@5.1.3: resolution: {integrity: sha512-95hVgBRgEIRQQQHIbnxBXeHbW4TqFk4ZDJW7wmVtvYar72FdhRIo1UGOLS2eRAKCPEdPBWu+M7+A33D9CdX9rA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: extend: 3.0.2 https-proxy-agent: 5.0.1 @@ -15786,7 +16170,7 @@ packages: /gcp-metadata@5.3.0: resolution: {integrity: sha512-FNTkdNEnBdlqF2oatizolQqNANMrcqJt6AAYt99B3y1aLLC8Hc5IOBb+ZnnzllodEEf6xMBp6wRcBbc16fa65w==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: gaxios: 5.1.3 json-bigint: 1.0.0 @@ -15797,12 +16181,12 @@ packages: /generic-pool@3.9.0: resolution: {integrity: sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==} - engines: {node: ">= 4"} + engines: {node: '>= 4'} dev: true /gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} dev: true /get-caller-file@2.0.5: @@ -15823,24 +16207,24 @@ packages: /get-nonce@1.0.1: resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /get-npm-tarball-url@2.0.3: resolution: {integrity: sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==} - engines: {node: ">=12.17"} + engines: {node: '>=12.17'} /get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: ">=8.0.0"} + engines: {node: '>=8.0.0'} dev: true /get-pkg-repo@4.2.1: resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} - engines: {node: ">=6.9.0"} + engines: {node: '>=6.9.0'} hasBin: true dependencies: - "@hutson/parse-repository-url": 3.0.2 + '@hutson/parse-repository-url': 3.0.2 hosted-git-info: 4.1.0 through2: 2.0.5 yargs: 16.2.0 @@ -15848,7 +16232,7 @@ packages: /get-port@5.1.1: resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /get-port@6.1.2: @@ -15865,28 +16249,28 @@ packages: /get-stdin@8.0.0: resolution: {integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /get-stream@5.2.0: resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: pump: 3.0.0 dev: true /get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: ">=10"} + engines: {node: '>=10'} /get-stream@8.0.1: resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: ">=16"} + engines: {node: '>=16'} dev: false /get-symbol-description@1.0.0: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -15912,7 +16296,7 @@ packages: /git-raw-commits@2.0.11: resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: dargs: 7.0.0 @@ -15924,7 +16308,7 @@ packages: /git-remote-origin-url@2.0.0: resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: gitconfiglocal: 1.0.0 pify: 2.3.0 @@ -15932,7 +16316,7 @@ packages: /git-semver-tags@4.1.1: resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: meow: 8.1.2 @@ -15955,33 +16339,33 @@ packages: /glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 /glob-parent@6.0.2: resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: ">=10.13.0"} + engines: {node: '>=10.13.0'} dependencies: is-glob: 4.0.3 /glob-promise@4.2.2(glob@7.2.3): resolution: {integrity: sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==} - engines: {node: ">=12"} + engines: {node: '>=12'} peerDependencies: glob: ^7.1.6 dependencies: - "@types/glob": 7.2.0 + '@types/glob': 7.2.0 glob: 7.2.3 dev: true /glob-promise@6.0.5(glob@8.1.0): resolution: {integrity: sha512-uUzvxo60yo/vMLXZHCNAlfdM5U5A07jCnUO8xTK44Z0Vc58poGDXhDx8ju1DmPdprOORh+4Lpog64hl+AJ5piA==} - engines: {node: ">=16"} + engines: {node: '>=16'} peerDependencies: glob: ^8.0.3 dependencies: - "@types/glob": 8.1.0 + '@types/glob': 8.1.0 glob: 8.1.0 dev: false @@ -15991,7 +16375,7 @@ packages: /glob@10.3.10: resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} - engines: {node: ">=16 || 14 >=14.17"} + engines: {node: '>=16 || 14 >=14.17'} hasBin: true dependencies: foreground-child: 3.1.1 @@ -16022,7 +16406,7 @@ packages: /glob@8.1.0: resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -16032,31 +16416,31 @@ packages: /global-dirs@3.0.1: resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: ini: 2.0.0 dev: true /globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /globals@13.23.0: resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: type-fest: 0.20.2 /globalthis@1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -16067,7 +16451,7 @@ packages: /google-auth-library@8.9.0: resolution: {integrity: sha512-f7aQCJODJFmYWN6PeNKzgvy9LI2tYmXnzpNDHEjG5sDNPgGb2FXQyTBnXeSH+PAtpKESFD+LmHw3Ox3mN7e1Fg==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: arrify: 2.0.1 base64-js: 1.5.1 @@ -16085,7 +16469,7 @@ packages: /google-p12-pem@4.0.1: resolution: {integrity: sha512-WPkN4yGtz05WZ5EhtlxNDWPhC4JIic6G8ePitwUWy4l+XPVYec+a0j0Ts47PDtW59y3RwAhUd9/h9ZZ63px6RQ==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} hasBin: true dependencies: node-forge: 1.3.1 @@ -16098,10 +16482,10 @@ packages: /got@12.6.1: resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: - "@sindresorhus/is": 5.6.0 - "@szmarczak/http-timer": 5.0.1 + '@sindresorhus/is': 5.6.0 + '@szmarczak/http-timer': 5.0.1 cacheable-lookup: 7.0.0 cacheable-request: 10.2.14 decompress-response: 6.0.0 @@ -16129,7 +16513,7 @@ packages: /graphology@0.25.4(graphology-types@0.24.7): resolution: {integrity: sha512-33g0Ol9nkWdD6ulw687viS8YJQBxqG5LWII6FI6nul0pq6iM2t5EKquOTFDbyTblRB3O9I+7KX4xI8u5ffekAQ==} peerDependencies: - graphology-types: ">=0.24.0" + graphology-types: '>=0.24.0' dependencies: events: 3.3.0 graphology-types: 0.24.7 @@ -16138,7 +16522,7 @@ packages: /graphql-tag@2.12.6(graphql@16.8.1): resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} - engines: {node: ">=10"} + engines: {node: '>=10'} requiresBuild: true peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -16157,7 +16541,7 @@ packages: /gtoken@6.1.2: resolution: {integrity: sha512-4ccGpzz7YAr7lxrT2neugmXQ3hP9ho2gcaityLVkiUecAiwiy60Ii8gRbZeOsXV19fYaRjgBSshs8kXw+NKCPQ==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} dependencies: gaxios: 5.1.3 google-p12-pem: 4.0.1 @@ -16181,7 +16565,7 @@ packages: /handlebars@4.7.8: resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: ">=0.4.7"} + engines: {node: '>=0.4.7'} hasBin: true dependencies: minimist: 1.2.8 @@ -16205,7 +16589,7 @@ packages: /hard-rejection@2.1.0: resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /has-bigints@1.0.2: @@ -16213,15 +16597,15 @@ packages: /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: ">=4"} + engines: {node: '>=4'} /has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} /has-own-prop@2.0.0: resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} /has-property-descriptors@1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} @@ -16230,15 +16614,15 @@ packages: /has-proto@1.0.1: resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} /has-symbols@1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} /has-tostringtag@1.0.0: resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 @@ -16252,13 +16636,13 @@ packages: /has@1.0.4: resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} - engines: {node: ">= 0.4.0"} + engines: {node: '>= 0.4.0'} /hast-util-to-jsx-runtime@2.2.0: resolution: {integrity: sha512-wSlp23N45CMjDg/BPW8zvhEi3R+8eRE1qFbjEyAUzMCzu2l1Wzwakq+Tlia9nkCtEl5mDxa7nKHsvYJ6Gfn21A==} dependencies: - "@types/hast": 3.0.3 - "@types/unist": 3.0.2 + '@types/hast': 3.0.3 + '@types/unist': 3.0.2 comma-separated-tokens: 2.0.3 hast-util-whitespace: 3.0.0 property-information: 6.4.0 @@ -16271,7 +16655,7 @@ packages: /hast-util-whitespace@3.0.0: resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} dependencies: - "@types/hast": 3.0.3 + '@types/hast': 3.0.3 dev: false /hosted-git-info@2.8.9: @@ -16279,7 +16663,7 @@ packages: /hosted-git-info@4.1.0: resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 @@ -16305,7 +16689,7 @@ packages: /html-encoding-sniffer@2.0.1: resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: whatwg-encoding: 1.0.5 dev: true @@ -16316,7 +16700,7 @@ packages: /html-tags@3.3.1: resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /html-url-attributes@3.0.0: @@ -16337,7 +16721,7 @@ packages: /http-errors@2.0.0: resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} dependencies: depd: 2.0.0 inherits: 2.0.4 @@ -16347,9 +16731,9 @@ packages: /http-proxy-agent@4.0.1: resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: - "@tootallnate/once": 1.1.2 + '@tootallnate/once': 1.1.2 agent-base: 6.0.2 debug: 4.3.4 transitivePeerDependencies: @@ -16358,9 +16742,9 @@ packages: /http-proxy-agent@5.0.0: resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: - "@tootallnate/once": 2.0.0 + '@tootallnate/once': 2.0.0 agent-base: 6.0.2 debug: 4.3.4 transitivePeerDependencies: @@ -16368,7 +16752,7 @@ packages: /http-proxy-agent@7.0.0: resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==} - engines: {node: ">= 14"} + engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 debug: 4.3.4 @@ -16378,7 +16762,7 @@ packages: /http2-wrapper@2.2.0: resolution: {integrity: sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==} - engines: {node: ">=10.19.0"} + engines: {node: '>=10.19.0'} dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 @@ -16386,7 +16770,7 @@ packages: /https-proxy-agent@4.0.0: resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} - engines: {node: ">= 6.0.0"} + engines: {node: '>= 6.0.0'} dependencies: agent-base: 5.1.1 debug: 4.3.4 @@ -16396,7 +16780,7 @@ packages: /https-proxy-agent@5.0.1: resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 debug: 4.3.4 @@ -16405,7 +16789,7 @@ packages: /https-proxy-agent@7.0.2: resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==} - engines: {node: ">= 14"} + engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 debug: 4.3.4 @@ -16414,15 +16798,15 @@ packages: /human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: ">=10.17.0"} + engines: {node: '>=10.17.0'} /human-signals@4.3.1: resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} - engines: {node: ">=14.18.0"} + engines: {node: '>=14.18.0'} /human-signals@5.0.0: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: ">=16.17.0"} + engines: {node: '>=16.17.0'} dev: false /humanize-ms@1.2.1: @@ -16432,13 +16816,13 @@ packages: /iconv-lite@0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 /iconv-lite@0.6.3: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} requiresBuild: true dependencies: safer-buffer: 2.1.2 @@ -16458,7 +16842,7 @@ packages: /ignore@5.2.4: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} - engines: {node: ">= 4"} + engines: {node: '>= 4'} /immediate@3.0.6: resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} @@ -16466,19 +16850,19 @@ packages: /import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 /import-lazy@4.0.0: resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /import-local@3.1.0: resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: ">=8"} + engines: {node: '>=8'} hasBin: true dependencies: pkg-dir: 4.2.0 @@ -16487,11 +16871,11 @@ packages: /imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: ">=0.8.19"} + engines: {node: '>=0.8.19'} /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: ">=8"} + engines: {node: '>=8'} /individual@3.0.0: resolution: {integrity: sha512-rUY5vtT748NMRbEMrTNiFfy29BgGZwGXUi2NFUVMWQrogSLzlJvQV9eeMWi+g1aVaQ53tpyLAQtd5x/JH0Nh1g==} @@ -16511,7 +16895,7 @@ packages: /ini@2.0.0: resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: ">=10"} + engines: {node: '>=10'} /ini@3.0.1: resolution: {integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==} @@ -16525,7 +16909,7 @@ packages: /ink-select-input@4.2.2(ink@3.2.0)(react@17.0.2): resolution: {integrity: sha512-E5AS2Vnd4CSzEa7Rm+hG47wxRQo1ASfh4msKxO7FHmn/ym+GKSSsFIfR+FonqjKNDPXYJClw8lM47RdN3Pi+nw==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: ink: ^3.0.5 react: ^16.5.2 || ^17.0.0 @@ -16539,10 +16923,10 @@ packages: /ink-spinner@4.0.3(ink@3.2.0)(react@17.0.2): resolution: {integrity: sha512-uJ4nbH00MM9fjTJ5xdw0zzvtXMkeGb0WV6dzSWvFv2/+ks6FIhpkt+Ge/eLdh0Ah6Vjw5pLMyNfoHQpRDRVFbQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: - ink: ">=3.0.5" - react: ">=16.8.2" + ink: '>=3.0.5' + react: '>=16.8.2' dependencies: cli-spinners: 2.7.0 ink: 3.2.0(react@17.0.2) @@ -16552,8 +16936,8 @@ packages: /ink-table@3.0.0(ink@3.2.0)(react@17.0.2): resolution: {integrity: sha512-RtcYjenHKZWjnwVNQ6zSYWMOLKwkWscDAJsqUQXftyjkYho1gGrluGss87NOoIzss0IKr74lKasd6MtlQYALiA==} peerDependencies: - ink: ">=3.0.0" - react: ">=16.8.0" + ink: '>=3.0.0' + react: '>=16.8.0' dependencies: ink: 3.2.0(react@17.0.2) object-hash: 2.2.0 @@ -16562,19 +16946,19 @@ packages: /ink-testing-library@2.1.0: resolution: {integrity: sha512-7TNlOjJlJXB33vG7yVa+MMO7hCjaC1bCn+zdpSjknWoLbOWMaFdKc7LJvqVkZ0rZv2+akhjXPrcR/dbxissjUw==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: - "@types/react": ">=16.8.0" + '@types/react': '>=16.8.0' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dev: true /ink-use-stdout-dimensions@1.0.5(ink@3.2.0)(react@17.0.2): resolution: {integrity: sha512-rVsqnw4tQEAJUoknU09+zHdDf30GJdkumkHr0iz/TOYMYEZJkYqziQSGJAM+Z+M603EDfO89+Nxyn/Ko2Zknfw==} peerDependencies: - ink: ">=2.0.0" - react: ">=16.0.0" + ink: '>=2.0.0' + react: '>=16.0.0' dependencies: ink: 3.2.0(react@17.0.2) react: 17.0.2 @@ -16582,12 +16966,12 @@ packages: /ink@3.2.0(react@17.0.2): resolution: {integrity: sha512-firNp1q3xxTzoItj/eOOSZQnYSlyrWks5llCTVX37nJ59K3eXbQ8PtzCguqo8YI19EELo5QxaKnJd4VxzhU8tg==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: - "@types/react": ">=16.8.0" - react: ">=16.8.0" + '@types/react': '>=16.8.0' + react: '>=16.8.0' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: ansi-escapes: 4.3.2 @@ -16625,7 +17009,7 @@ packages: /inquirer@8.2.6: resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} requiresBuild: true dependencies: ansi-escapes: 4.3.2 @@ -16648,7 +17032,7 @@ packages: /internal-slot@1.0.5: resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.1 has: 1.0.4 @@ -16656,7 +17040,7 @@ packages: /interpret@1.4.0: resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} - engines: {node: ">= 0.10"} + engines: {node: '>= 0.10'} /invariant@2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} @@ -16670,9 +17054,9 @@ packages: /ioredis@5.3.2: resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==} - engines: {node: ">=12.22.0"} + engines: {node: '>=12.22.0'} dependencies: - "@ioredis/commands": 1.2.0 + '@ioredis/commands': 1.2.0 cluster-key-slot: 1.1.2 debug: 4.3.4 denque: 2.1.0 @@ -16690,16 +17074,16 @@ packages: /ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: ">= 0.10"} + engines: {node: '>= 0.10'} /is-absolute-url@3.0.3: resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /is-arguments@1.1.1: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 @@ -16723,7 +17107,7 @@ packages: /is-async-function@2.0.0: resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: false @@ -16735,27 +17119,27 @@ packages: /is-binary-path@2.1.0: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: binary-extensions: 2.2.0 /is-boolean-object@1.1.2: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 /is-builtin-module@3.2.1: resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: builtin-modules: 3.3.0 dev: false /is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} /is-ci@2.0.0: resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} @@ -16778,7 +17162,7 @@ packages: /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 @@ -16788,7 +17172,7 @@ packages: /is-docker@2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} hasBin: true /is-docker@3.0.0: @@ -16798,7 +17182,7 @@ packages: /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /is-finalizationregistry@1.0.2: resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} @@ -16808,40 +17192,40 @@ packages: /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: ">=8"} + engines: {node: '>=8'} /is-generator-fn@2.1.0: resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /is-generator-function@1.0.10: resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 /is-gzip@1.0.0: resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /is-inside-container@1.0.0: resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} hasBin: true dependencies: is-docker: 3.0.0 /is-installed-globally@0.4.0: resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: global-dirs: 3.0.1 is-path-inside: 3.0.3 @@ -16849,7 +17233,7 @@ packages: /is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: ">=8"} + engines: {node: '>=8'} /is-lambda@1.0.1: resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} @@ -16859,7 +17243,7 @@ packages: /is-nan@1.3.2: resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -16867,7 +17251,7 @@ packages: /is-negative-zero@2.0.2: resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} /is-npm@6.0.0: resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==} @@ -16876,53 +17260,53 @@ packages: /is-number-object@1.0.7: resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: ">=0.12.0"} + engines: {node: '>=0.12.0'} /is-obj@2.0.0: resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /is-path-cwd@2.2.0: resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} requiresBuild: true /is-path-inside@3.0.3: resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} /is-plain-obj@1.1.0: resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /is-plain-obj@2.1.0: resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: false /is-plain-obj@4.1.0: resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: false /is-plain-object@2.0.4: resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 dev: true /is-plain-object@5.0.0: resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} @@ -16930,7 +17314,7 @@ packages: /is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 @@ -16945,7 +17329,7 @@ packages: /is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: ">=8"} + engines: {node: '>=8'} /is-stream@3.0.0: resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} @@ -16953,33 +17337,33 @@ packages: /is-string@1.0.7: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 /is-subdir@1.2.0: resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: better-path-resolve: 1.0.0 dev: false /is-symbol@1.0.4: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 /is-text-path@1.0.1: resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dependencies: text-extensions: 1.9.0 dev: true /is-typed-array@1.1.12: resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: which-typed-array: 1.1.11 @@ -16989,7 +17373,7 @@ packages: /is-unicode-supported@0.1.0: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: ">=10"} + engines: {node: '>=10'} /is-valid-domain@0.1.6: resolution: {integrity: sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==} @@ -17013,18 +17397,18 @@ packages: /is-windows@1.0.2: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: false /is-wsl@2.2.0: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: is-docker: 2.2.1 /is-yarn-global@0.4.1: resolution: {integrity: sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: true /isarray@0.0.1: @@ -17042,25 +17426,25 @@ packages: /isexe@3.1.1: resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} - engines: {node: ">=16"} + engines: {node: '>=16'} /isobject@3.0.1: resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /istanbul-lib-coverage@3.2.0: resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /istanbul-lib-instrument@5.2.1: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: - "@babel/core": 7.23.0 - "@babel/parser": 7.23.0 - "@istanbuljs/schema": 0.1.3 + '@babel/core': 7.23.0 + '@babel/parser': 7.23.0 + '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.1 transitivePeerDependencies: @@ -17069,11 +17453,11 @@ packages: /istanbul-lib-instrument@6.0.1: resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: - "@babel/core": 7.23.0 - "@babel/parser": 7.23.0 - "@istanbuljs/schema": 0.1.3 + '@babel/core': 7.23.0 + '@babel/parser': 7.23.0 + '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 7.5.4 transitivePeerDependencies: @@ -17082,7 +17466,7 @@ packages: /istanbul-lib-report@3.0.1: resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: istanbul-lib-coverage: 3.2.0 make-dir: 4.0.0 @@ -17091,7 +17475,7 @@ packages: /istanbul-lib-source-maps@4.0.1: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: debug: 4.3.4 istanbul-lib-coverage: 3.2.0 @@ -17102,7 +17486,7 @@ packages: /istanbul-reports@3.1.6: resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 @@ -17120,15 +17504,15 @@ packages: /jackspeak@2.3.6: resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: ">=14"} + engines: {node: '>=14'} dependencies: - "@isaacs/cliui": 8.0.2 + '@isaacs/cliui': 8.0.2 optionalDependencies: - "@pkgjs/parseargs": 0.11.0 + '@pkgjs/parseargs': 0.11.0 /jake@10.8.7: resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: async: 3.2.4 @@ -17141,7 +17525,7 @@ packages: resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 execa: 5.1.1 throat: 6.0.2 dev: true @@ -17159,10 +17543,10 @@ packages: resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/environment": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/environment': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -17186,11 +17570,11 @@ packages: resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/environment": 29.7.0 - "@jest/expect": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1 @@ -17221,9 +17605,9 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 27.5.1(ts-node@10.9.1) - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 + '@jest/core': 27.5.1(ts-node@10.9.1) + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -17241,7 +17625,7 @@ packages: - utf-8-validate dev: true - /jest-cli@29.7.0(@types/node@16.18.58)(ts-node@10.9.1): + /jest-cli@29.7.0(@types/node@18.18.4)(ts-node@10.9.1): resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -17251,19 +17635,19 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 29.7.0(ts-node@10.9.1) - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.1) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@16.18.58)(ts-node@10.9.1) + create-jest: 29.7.0(@types/node@18.18.4)(ts-node@10.9.1) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@16.18.58)(ts-node@10.9.1) + jest-config: 29.7.0(@types/node@18.18.4)(ts-node@10.9.1) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - supports-color - ts-node @@ -17273,14 +17657,14 @@ packages: resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: - ts-node: ">=9.0.0" + ts-node: '>=9.0.0' peerDependenciesMeta: ts-node: optional: true dependencies: - "@babel/core": 7.23.0 - "@jest/test-sequencer": 27.5.1 - "@jest/types": 27.5.1 + '@babel/core': 7.23.0 + '@jest/test-sequencer': 27.5.1 + '@jest/types': 27.5.1 babel-jest: 27.5.1(@babel/core@7.23.0) chalk: 4.1.2 ci-info: 3.9.0 @@ -17302,7 +17686,7 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@types/node@16.18.58)(typescript@4.9.5) + ts-node: 10.9.1(@types/node@18.18.4)(typescript@4.9.5) transitivePeerDependencies: - bufferutil - canvas @@ -17310,63 +17694,22 @@ packages: - utf-8-validate dev: true - /jest-config@29.7.0(@types/node@16.18.58)(ts-node@10.9.1): - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - "@types/node": "*" - ts-node: ">=9.0.0" - peerDependenciesMeta: - "@types/node": - optional: true - ts-node: - optional: true - dependencies: - "@babel/core": 7.23.0 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 16.18.58 - babel-jest: 29.7.0(@babel/core@7.23.0) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0 - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - ts-node: 10.9.1(@types/node@16.18.58)(typescript@4.9.5) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - dev: true - /jest-config@29.7.0(@types/node@18.18.4)(ts-node@10.9.1): resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@types/node": "*" - ts-node: ">=9.0.0" + '@types/node': '*' + ts-node: '>=9.0.0' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true ts-node: optional: true dependencies: - "@babel/core": 7.23.0 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@babel/core': 7.23.0 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 babel-jest: 29.7.0(@babel/core@7.23.0) chalk: 4.1.2 ci-info: 3.9.0 @@ -17386,7 +17729,7 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@types/node@16.18.58)(typescript@4.9.5) + ts-node: 10.9.1(@types/node@18.18.4)(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -17440,7 +17783,7 @@ packages: resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 chalk: 4.1.2 jest-get-type: 27.5.1 jest-util: 27.5.1 @@ -17451,7 +17794,7 @@ packages: resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 jest-get-type: 29.6.3 jest-util: 29.7.0 @@ -17462,10 +17805,10 @@ packages: resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/environment": 27.5.1 - "@jest/fake-timers": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/environment': 27.5.1 + '@jest/fake-timers': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -17480,10 +17823,10 @@ packages: resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/environment": 27.5.1 - "@jest/fake-timers": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/environment': 27.5.1 + '@jest/fake-timers': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 jest-mock: 27.5.1 jest-util: 27.5.1 dev: true @@ -17492,10 +17835,10 @@ packages: resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/environment": 29.7.0 - "@jest/fake-timers": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 jest-mock: 29.7.0 jest-util: 29.7.0 dev: true @@ -17519,9 +17862,9 @@ packages: resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 - "@types/graceful-fs": 4.1.7 - "@types/node": 18.18.4 + '@jest/types': 27.5.1 + '@types/graceful-fs': 4.1.7 + '@types/node': 18.18.4 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -17539,9 +17882,9 @@ packages: resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 - "@types/graceful-fs": 4.1.7 - "@types/node": 18.18.4 + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.7 + '@types/node': 18.18.4 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -17558,11 +17901,11 @@ packages: resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/environment": 27.5.1 - "@jest/source-map": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/environment': 27.5.1 + '@jest/source-map': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -17581,7 +17924,7 @@ packages: /jest-junit@15.0.0: resolution: {integrity: sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg==} - engines: {node: ">=10.12.0"} + engines: {node: '>=10.12.0'} dependencies: mkdirp: 1.0.4 strip-ansi: 6.0.1 @@ -17639,9 +17982,9 @@ packages: resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@babel/code-frame": 7.22.13 - "@jest/types": 27.5.1 - "@types/stack-utils": 2.0.1 + '@babel/code-frame': 7.22.13 + '@jest/types': 27.5.1 + '@types/stack-utils': 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 @@ -17654,9 +17997,9 @@ packages: resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - "@babel/code-frame": 7.22.13 - "@jest/types": 28.1.3 - "@types/stack-utils": 2.0.1 + '@babel/code-frame': 7.22.13 + '@jest/types': 28.1.3 + '@types/stack-utils': 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 @@ -17669,9 +18012,9 @@ packages: resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/code-frame": 7.22.13 - "@jest/types": 29.6.3 - "@types/stack-utils": 2.0.1 + '@babel/code-frame': 7.22.13 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 @@ -17684,24 +18027,24 @@ packages: resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 dev: true /jest-mock@29.7.0: resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 jest-util: 29.7.0 dev: true /jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: ">=6"} + engines: {node: '>=6'} peerDependencies: - jest-resolve: "*" + jest-resolve: '*' peerDependenciesMeta: jest-resolve: optional: true @@ -17711,9 +18054,9 @@ packages: /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: ">=6"} + engines: {node: '>=6'} peerDependencies: - jest-resolve: "*" + jest-resolve: '*' peerDependenciesMeta: jest-resolve: optional: true @@ -17735,7 +18078,7 @@ packages: resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 jest-regex-util: 27.5.1 jest-snapshot: 27.5.1 transitivePeerDependencies: @@ -17756,7 +18099,7 @@ packages: resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 chalk: 4.1.2 graceful-fs: 4.2.11 jest-haste-map: 27.5.1 @@ -17787,12 +18130,12 @@ packages: resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/console": 27.5.1 - "@jest/environment": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/console': 27.5.1 + '@jest/environment': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.11 @@ -17819,12 +18162,12 @@ packages: resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/console": 29.7.0 - "@jest/environment": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@jest/console': 29.7.0 + '@jest/environment': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -17848,13 +18191,13 @@ packages: resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/environment": 27.5.1 - "@jest/fake-timers": 27.5.1 - "@jest/globals": 27.5.1 - "@jest/source-map": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 + '@jest/environment': 27.5.1 + '@jest/fake-timers': 27.5.1 + '@jest/globals': 27.5.1 + '@jest/source-map': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -17878,14 +18221,14 @@ packages: resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/environment": 29.7.0 - "@jest/fake-timers": 29.7.0 - "@jest/globals": 29.7.0 - "@jest/source-map": 29.6.3 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/globals': 29.7.0 + '@jest/source-map': 29.6.3 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -17908,7 +18251,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 graceful-fs: 4.2.11 dev: true @@ -17916,15 +18259,15 @@ packages: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@babel/core": 7.23.0 - "@babel/generator": 7.23.0 - "@babel/plugin-syntax-typescript": 7.22.5(@babel/core@7.23.0) - "@babel/traverse": 7.23.0 - "@babel/types": 7.23.0 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 - "@types/babel__traverse": 7.20.2 - "@types/prettier": 2.6.0 + '@babel/core': 7.23.0 + '@babel/generator': 7.23.0 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0) + '@babel/traverse': 7.23.0 + '@babel/types': 7.23.0 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/babel__traverse': 7.20.2 + '@types/prettier': 2.6.0 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0) chalk: 4.1.2 expect: 27.5.1 @@ -17946,14 +18289,14 @@ packages: resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/core": 7.23.0 - "@babel/generator": 7.23.0 - "@babel/plugin-syntax-jsx": 7.22.5(@babel/core@7.23.0) - "@babel/plugin-syntax-typescript": 7.22.5(@babel/core@7.23.0) - "@babel/types": 7.23.0 - "@jest/expect-utils": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.23.0 + '@babel/generator': 7.23.0 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0) + '@babel/types': 7.23.0 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0) chalk: 4.1.2 expect: 29.7.0 @@ -17974,8 +18317,8 @@ packages: resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -17986,8 +18329,8 @@ packages: resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - "@jest/types": 28.1.3 - "@types/node": 18.18.4 + '@jest/types': 28.1.3 + '@types/node': 18.18.4 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -17998,8 +18341,8 @@ packages: resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -18010,7 +18353,7 @@ packages: resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 27.5.1 @@ -18022,7 +18365,7 @@ packages: resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 29.6.3 @@ -18034,9 +18377,9 @@ packages: resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.18.4 + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 18.18.4 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -18047,9 +18390,9 @@ packages: resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 18.18.4 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 18.18.4 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -18059,9 +18402,9 @@ packages: /jest-worker@27.5.1: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: ">= 10.13.0"} + engines: {node: '>= 10.13.0'} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -18070,7 +18413,7 @@ packages: resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -18086,7 +18429,7 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 27.5.1(ts-node@10.9.1) + '@jest/core': 27.5.1(ts-node@10.9.1) import-local: 3.1.0 jest-cli: 27.5.1(ts-node@10.9.1) transitivePeerDependencies: @@ -18097,7 +18440,7 @@ packages: - utf-8-validate dev: true - /jest@29.7.0(@types/node@16.18.58)(ts-node@10.9.1): + /jest@29.7.0(@types/node@18.18.4)(ts-node@10.9.1): resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -18107,12 +18450,12 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 29.7.0(ts-node@10.9.1) - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.1) + '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@16.18.58)(ts-node@10.9.1) + jest-cli: 29.7.0(@types/node@18.18.4)(ts-node@10.9.1) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - supports-color - ts-node @@ -18128,12 +18471,12 @@ packages: /joycon@3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /js-string-escape@1.0.1: resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} dev: true /js-tokens@4.0.0: @@ -18156,18 +18499,18 @@ packages: resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} hasBin: true peerDependencies: - "@babel/preset-env": ^7.1.6 - dependencies: - "@babel/core": 7.23.0 - "@babel/parser": 7.23.0 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.23.0) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.23.0) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.23.0) - "@babel/plugin-transform-modules-commonjs": 7.23.0(@babel/core@7.23.0) - "@babel/preset-env": 7.22.20(@babel/core@7.23.0) - "@babel/preset-flow": 7.22.15(@babel/core@7.23.0) - "@babel/preset-typescript": 7.23.0(@babel/core@7.23.0) - "@babel/register": 7.22.15(@babel/core@7.23.0) + '@babel/preset-env': ^7.1.6 + dependencies: + '@babel/core': 7.23.0 + '@babel/parser': 7.23.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.0) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0) + '@babel/preset-env': 7.22.20(@babel/core@7.23.0) + '@babel/preset-flow': 7.22.15(@babel/core@7.23.0) + '@babel/preset-typescript': 7.23.0(@babel/core@7.23.0) + '@babel/register': 7.22.15(@babel/core@7.23.0) babel-core: 7.0.0-bridge.0(@babel/core@7.23.0) chalk: 4.1.2 flow-parser: 0.218.0 @@ -18184,7 +18527,7 @@ packages: /jsdom@16.7.0: resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -18230,13 +18573,13 @@ packages: /jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: ">=4"} + engines: {node: '>=4'} hasBin: true dev: true /jsesc@3.0.2: resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} - engines: {node: ">=6"} + engines: {node: '>=6'} hasBin: true dev: false @@ -18246,11 +18589,11 @@ packages: /jsii-diff@1.90.0: resolution: {integrity: sha512-74GxSLjdjVEU7Qfvdroyhih1DcdpoG7ZAeYBkdcbri2bH5RzqtjcVOwhvyqIjGBlvS45md8/ftURbWVWmbMhsA==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} hasBin: true dependencies: - "@jsii/check-node": 1.90.0 - "@jsii/spec": 1.90.0 + '@jsii/check-node': 1.90.0 + '@jsii/spec': 1.90.0 fs-extra: 10.1.0 jsii-reflect: 1.90.0 log4js: 6.9.1 @@ -18261,11 +18604,11 @@ packages: /jsii-pacmak@1.90.0: resolution: {integrity: sha512-TG1IR9dt5RDZDEKDsMgq41PcAZkMKHaDXXFeDFs5ffjRtXbDxBkyTQVfXNSZKiDQIizFg8LEv5O30Lo9s3wbnA==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} hasBin: true dependencies: - "@jsii/check-node": 1.90.0 - "@jsii/spec": 1.90.0 + '@jsii/check-node': 1.90.0 + '@jsii/spec': 1.90.0 clone: 2.1.2 codemaker: 1.90.0 commonmark: 0.30.0 @@ -18283,11 +18626,11 @@ packages: /jsii-reflect@1.90.0: resolution: {integrity: sha512-kYX9boDV1pUwX8A2HFQNtbypcRGY3MwEWFyXL+qKcXb8QrHuiDC4fEVYpI5oBxq5b7NZ8ePfPWAj9EtEpvKbnw==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} hasBin: true dependencies: - "@jsii/check-node": 1.90.0 - "@jsii/spec": 1.90.0 + '@jsii/check-node': 1.90.0 + '@jsii/spec': 1.90.0 chalk: 4.1.2 fs-extra: 10.1.0 oo-ascii-tree: 1.90.0 @@ -18297,19 +18640,19 @@ packages: resolution: {integrity: sha512-R3HD2u4W5Rdy+Tj0mQizmqfmefn7jhKz9KxpZT+WrC6U5Cb7xDM61KWXLjW3/OOkqhonSPyaRx2xPQPLKzzrKQ==} hasBin: true dependencies: - "@types/fs-extra": 8.1.4 + '@types/fs-extra': 8.1.4 fs-extra: 8.1.0 shlex: 2.1.2 dev: true /jsii-rosetta@1.91.0: resolution: {integrity: sha512-v8eW/XiJHklnkmTtCIbyAeDPUVfovU/ZNh1ixvGri/ps5H3iRRpLEmqGJGMm2IEIjNCSmnmIsDMQLw20/7Nu+Q==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} hasBin: true dependencies: - "@jsii/check-node": 1.91.0 - "@jsii/spec": 1.91.0 - "@xmldom/xmldom": 0.8.10 + '@jsii/check-node': 1.91.0 + '@jsii/spec': 1.91.0 + '@xmldom/xmldom': 0.8.10 commonmark: 0.30.0 fast-glob: 3.3.1 jsii: 1.91.0 @@ -18325,12 +18668,12 @@ packages: /jsii-rosetta@5.0.11: resolution: {integrity: sha512-rdL+eBpvHTSbCjSellJHtskICY3MTMICkFgPG1B2c/aE0xdsZCQHLxi9/A8VoobhMk2r7wZtpml7vrzNIpyKYg==} - engines: {node: ">= 14.18.0"} + engines: {node: '>= 14.18.0'} hasBin: true dependencies: - "@jsii/check-node": 1.84.0 - "@jsii/spec": 1.91.0 - "@xmldom/xmldom": 0.8.10 + '@jsii/check-node': 1.84.0 + '@jsii/spec': 1.91.0 + '@xmldom/xmldom': 0.8.10 chalk: 4.1.2 commonmark: 0.30.0 fast-glob: 3.3.1 @@ -18360,11 +18703,11 @@ packages: /jsii@1.90.0: resolution: {integrity: sha512-V8XSGrQZXeBQGZa51UqceKSMWhTc2jk84vw+s2BlYvucQnR7oJcM2z8CuiTigvFuT6hY39cgsK8mSYNSM3VNzw==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} hasBin: true dependencies: - "@jsii/check-node": 1.90.0 - "@jsii/spec": 1.90.0 + '@jsii/check-node': 1.90.0 + '@jsii/spec': 1.90.0 case: 1.6.3 chalk: 4.1.2 fast-deep-equal: 3.1.3 @@ -18382,11 +18725,11 @@ packages: /jsii@1.91.0: resolution: {integrity: sha512-dJ2FbnUfX5Eg9BdZx6Cz2JhDsvzGi2DoQeomzdjO9ltvVUouAFPWkpcUtJdLXaNmHQtPM4/I+AzelUX7w2mWVw==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} hasBin: true dependencies: - "@jsii/check-node": 1.91.0 - "@jsii/spec": 1.91.0 + '@jsii/check-node': 1.91.0 + '@jsii/spec': 1.91.0 case: 1.6.3 chalk: 4.1.2 fast-deep-equal: 3.1.3 @@ -18404,11 +18747,11 @@ packages: /jsii@5.0.11(patch_hash=zhi5puwzi5jiulxnmqgkd4wl2a): resolution: {integrity: sha512-mFW7gTA6w+LEB3WzJqP7isFNUYYeJHmHKIKoO3kdG266giTQuoqqnuezqgr2Hl3p66Gzs7rdDzLwefQ0vIAs8A==} - engines: {node: ">= 14.18.0"} + engines: {node: '>= 14.18.0'} hasBin: true dependencies: - "@jsii/check-node": 1.84.0 - "@jsii/spec": 1.90.0 + '@jsii/check-node': 1.84.0 + '@jsii/spec': 1.90.0 case: 1.6.3 chalk: 4.1.2 downlevel-dts: 0.11.0 @@ -18427,11 +18770,11 @@ packages: /jsii@5.0.21: resolution: {integrity: sha512-m5WEKKnER9veGrJNxr5OULu43D6DSe69RmKgQjTSHLEKSCS+taCf32sFmBT/b3nBcSh1gfch7QfjoHKoKpUz2w==} - engines: {node: ">= 16.14.0"} + engines: {node: '>= 16.14.0'} hasBin: true dependencies: - "@jsii/check-node": 1.88.0 - "@jsii/spec": 1.90.0 + '@jsii/check-node': 1.88.0 + '@jsii/spec': 1.90.0 case: 1.6.3 chalk: 4.1.2 downlevel-dts: 0.11.0 @@ -18449,11 +18792,11 @@ packages: /jsii@5.1.12: resolution: {integrity: sha512-iY3zLosUEKbeua6IAGJXjFxibiiI0xHFjyYPyewOc56MBRHC7nczWSVGRP+Jgwyo7HWXs4TvJKLG6w8zSuAZrg==} - engines: {node: ">= 16.14.0"} + engines: {node: '>= 16.14.0'} hasBin: true dependencies: - "@jsii/check-node": 1.88.0 - "@jsii/spec": 1.91.0 + '@jsii/check-node': 1.88.0 + '@jsii/spec': 1.91.0 case: 1.6.3 chalk: 4.1.2 downlevel-dts: 0.11.0 @@ -18528,7 +18871,7 @@ packages: /json5@2.2.3: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: ">=6"} + engines: {node: '>=6'} hasBin: true /jsonc-parser@3.2.0: @@ -18556,7 +18899,7 @@ packages: /jsonparse@1.3.1: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {"0": node >= 0.2.0} + engines: {'0': node >= 0.2.0} /jsonschema@1.4.1: resolution: {integrity: sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==} @@ -18564,7 +18907,7 @@ packages: /jsonwebtoken@9.0.2: resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==} - engines: {node: ">=12", npm: ">=6"} + engines: {node: '>=12', npm: '>=6'} dependencies: jws: 3.2.2 lodash.includes: 4.3.0 @@ -18579,7 +18922,7 @@ packages: /jsx-ast-utils@3.3.5: resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} - engines: {node: ">=4.0"} + engines: {node: '>=4.0'} dependencies: array-includes: 3.1.7 array.prototype.flat: 1.3.2 @@ -18652,17 +18995,17 @@ packages: /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /kleur@3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /kleur@4.1.5: resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /kuler@2.0.0: @@ -18683,7 +19026,7 @@ packages: /latest-version@7.0.0: resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: package-json: 8.1.1 dev: true @@ -18697,7 +19040,7 @@ packages: /lazy-universal-dotenv@4.0.0: resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dependencies: app-root-dir: 1.0.2 dotenv: 16.3.1 @@ -18706,18 +19049,18 @@ packages: /lazystream@1.0.1: resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} - engines: {node: ">= 0.6.3"} + engines: {node: '>= 0.6.3'} dependencies: readable-stream: 2.3.8 /leven@3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /levn@0.4.1: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: ">= 0.8.0"} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 @@ -18730,7 +19073,7 @@ packages: /lilconfig@2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} @@ -18745,7 +19088,7 @@ packages: resolution: {integrity: sha512-2K9Y1cUdvq40dFWqCJ//X+WP19nlzIVITFGI93RjLnA0M7KbnxQ/ffC3AZIZaEIrLangF9Hjt3i0GQ9/anEG5A==} peerDependencies: linkifyjs: ^4.0.0 - react: ">= 15.0.0" + react: '>= 15.0.0' dependencies: linkifyjs: 4.1.1 react: 18.2.0 @@ -18757,7 +19100,7 @@ packages: /load-json-file@4.0.0: resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: graceful-fs: 4.2.11 parse-json: 4.0.0 @@ -18767,7 +19110,7 @@ packages: /load-json-file@6.2.0: resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: graceful-fs: 4.2.11 parse-json: 5.2.0 @@ -18782,17 +19125,17 @@ packages: /loader-runner@4.3.0: resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: ">=6.11.5"} + engines: {node: '>=6.11.5'} dev: true /local-pkg@0.4.3: resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} - engines: {node: ">=14"} + engines: {node: '>=14'} dev: true /locate-path@2.0.0: resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: p-locate: 2.0.0 path-exists: 3.0.0 @@ -18800,7 +19143,7 @@ packages: /locate-path@3.0.0: resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: p-locate: 3.0.0 path-exists: 3.0.0 @@ -18808,13 +19151,13 @@ packages: /locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: p-locate: 4.1.0 /locate-path@6.0.0: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: p-locate: 5.0.0 @@ -18905,14 +19248,14 @@ packages: /log-symbols@4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 /log4js@6.9.1: resolution: {integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==} - engines: {node: ">=8.0"} + engines: {node: '>=8.0'} dependencies: date-format: 4.0.14 debug: 4.3.4 @@ -18927,8 +19270,8 @@ packages: resolution: {integrity: sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==} requiresBuild: true dependencies: - "@colors/colors": 1.5.0 - "@types/triple-beam": 1.3.3 + '@colors/colors': 1.5.0 + '@types/triple-beam': 1.3.3 fecha: 4.2.3 ms: 2.1.3 safe-stable-stringify: 2.4.3 @@ -18965,13 +19308,13 @@ packages: /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: yallist: 4.0.0 /lru-cache@7.18.3: resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: ">=12"} + engines: {node: '>=12'} /lru_map@0.3.3: resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==} @@ -18979,7 +19322,7 @@ packages: /luxon@3.4.3: resolution: {integrity: sha512-tFWBiv3h7z+T/tDaoxA8rqTxy1CHV6gHS//QdaH4pulbq/JuBSGgQspQQqcgnwdAx6pNI7cmvz5Sv/addzHmUg==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: false /lz-string@1.5.0: @@ -18989,21 +19332,21 @@ packages: /magic-string@0.27.0: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/sourcemap-codec': 1.4.15 dev: true /magic-string@0.30.4: resolution: {integrity: sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/sourcemap-codec': 1.4.15 dev: true /make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: pify: 4.0.1 semver: 5.7.2 @@ -19011,13 +19354,13 @@ packages: /make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: semver: 6.3.1 /make-dir@4.0.0: resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: semver: 7.5.4 dev: true @@ -19052,7 +19395,7 @@ packages: resolution: {integrity: sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@npmcli/agent": 2.2.0 + '@npmcli/agent': 2.2.0 cacache: 18.0.0 http-cache-semantics: 4.1.1 is-lambda: 1.0.1 @@ -19075,19 +19418,19 @@ packages: /map-age-cleaner@0.1.3: resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: p-defer: 1.0.0 dev: false /map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /map-obj@4.3.0: resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} /map-or-similar@1.5.0: resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} @@ -19106,16 +19449,16 @@ packages: /markdown-to-jsx@7.3.2(react@18.2.0): resolution: {integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} peerDependencies: - react: ">= 0.14.0" + react: '>= 0.14.0' dependencies: react: 18.2.0 dev: true /md5-hex@3.0.1: resolution: {integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: blueimp-md5: 2.19.0 dev: true @@ -19129,8 +19472,8 @@ packages: /mdast-util-from-markdown@2.0.0: resolution: {integrity: sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA==} dependencies: - "@types/mdast": 4.0.3 - "@types/unist": 3.0.2 + '@types/mdast': 4.0.3 + '@types/unist': 3.0.2 decode-named-character-reference: 1.0.2 devlop: 1.1.0 mdast-util-to-string: 4.0.0 @@ -19148,9 +19491,9 @@ packages: /mdast-util-to-hast@13.0.2: resolution: {integrity: sha512-U5I+500EOOw9e3ZrclN3Is3fRpw8c19SMyNZlZ2IS+7vLsNzb2Om11VpIVOR+/0137GhZsFEF6YiKD5+0Hr2Og==} dependencies: - "@types/hast": 3.0.3 - "@types/mdast": 4.0.3 - "@ungap/structured-clone": 1.2.0 + '@types/hast': 3.0.3 + '@types/mdast': 4.0.3 + '@ungap/structured-clone': 1.2.0 devlop: 1.1.0 micromark-util-sanitize-uri: 2.0.0 trim-lines: 3.0.1 @@ -19165,7 +19508,7 @@ packages: /mdast-util-to-string@4.0.0: resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} dependencies: - "@types/mdast": 4.0.3 + '@types/mdast': 4.0.3 dev: false /mdurl@1.0.1: @@ -19174,11 +19517,11 @@ packages: /media-typer@0.3.0: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} /mem@8.1.1: resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: map-age-cleaner: 0.1.3 mimic-fn: 3.1.0 @@ -19192,9 +19535,9 @@ packages: /meow@8.1.2: resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: - "@types/minimist": 1.2.3 + '@types/minimist': 1.2.3 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -19215,11 +19558,11 @@ packages: /merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} /methods@1.1.2: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} /micromark-core-commonmark@2.0.0: resolution: {integrity: sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==} @@ -19375,7 +19718,7 @@ packages: /micromark@4.0.0: resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} dependencies: - "@types/debug": 4.1.12 + '@types/debug': 4.1.12 debug: 4.3.4 decode-named-character-reference: 1.0.2 devlop: 1.1.0 @@ -19398,43 +19741,43 @@ packages: /micromatch@4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: ">=8.6"} + engines: {node: '>=8.6'} dependencies: braces: 3.0.2 picomatch: 2.3.1 /mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} /mime-types@2.1.35: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 /mime@3.0.0(patch_hash=2he2uszztbibyal6zfzmv2a2oa): resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} - engines: {node: ">=10.0.0"} + engines: {node: '>=10.0.0'} hasBin: true patched: true /mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: ">=6"} + engines: {node: '>=6'} /mimic-fn@3.1.0: resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: false /mimic-fn@4.0.0: resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: ">=12"} + engines: {node: '>=12'} /mimic-response@3.1.0: resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /mimic-response@4.0.0: @@ -19444,7 +19787,7 @@ packages: /min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: ">=4"} + engines: {node: '>=4'} /mini-svg-data-uri@1.4.4: resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} @@ -19457,19 +19800,19 @@ packages: /minimatch@5.1.6: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 /minimatch@9.0.3: resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} - engines: {node: ">=16 || 14 >=14.17"} + engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 @@ -19481,7 +19824,7 @@ packages: /minipass-collect@1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 @@ -19497,7 +19840,7 @@ packages: /minipass-flush@1.0.5: resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 @@ -19509,38 +19852,38 @@ packages: /minipass-pipeline@1.2.4: resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: minipass: 3.3.6 /minipass-sized@1.0.3: resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: minipass: 3.3.6 /minipass@3.3.6: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: yallist: 4.0.0 /minipass@4.2.8: resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /minipass@5.0.0: resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} /minipass@7.0.4: resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} - engines: {node: ">=16 || 14 >=14.17"} + engines: {node: '>=16 || 14 >=14.17'} /minizlib@2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 yallist: 4.0.0 @@ -19558,7 +19901,7 @@ packages: /mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true /mlly@1.4.2: @@ -19583,12 +19926,12 @@ packages: /modify-values@1.0.1: resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /mri@1.2.0: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: ">=4"} + engines: {node: '>=4'} /ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} @@ -19644,7 +19987,7 @@ packages: /ndjson@2.0.0: resolution: {integrity: sha512-nGl7LRGrzugTtaFcJMhLbpzJM6XdivmbkdlaGcrk/LXg2KL/YBC6z1g70xh0/al+oFuVFP8N8kiWRucmeEH/qQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: json-stringify-safe: 5.0.1 @@ -19656,7 +19999,7 @@ packages: /negotiator@0.6.3: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} /neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} @@ -19665,16 +20008,16 @@ packages: /nise@5.1.4: resolution: {integrity: sha512-8+Ib8rRJ4L0o3kfmyVCL7gzrohyDe0cMFTBa2d364yIrEGMEoetznKJx899YxjybU6bL9SQkYPSBBs1gyYs8Xg==} dependencies: - "@sinonjs/commons": 2.0.0 - "@sinonjs/fake-timers": 10.3.0 - "@sinonjs/text-encoding": 0.7.2 + '@sinonjs/commons': 2.0.0 + '@sinonjs/fake-timers': 10.3.0 + '@sinonjs/text-encoding': 0.7.2 just-extend: 4.2.1 path-to-regexp: 1.8.0 dev: true /node-abi@3.47.0: resolution: {integrity: sha512-2s6B2CWZM//kPgwnuI0KrYwNjfdByE25zvAaEpq9IH4zcNsarH8Ihu/UuX6XMPEogDAxkuUFeZn60pXNHAqn3A==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: semver: 7.5.4 dev: true @@ -19687,14 +20030,14 @@ packages: /node-dir@0.1.17: resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} - engines: {node: ">= 0.10.5"} + engines: {node: '>= 0.10.5'} dependencies: minimatch: 3.1.2 dev: true /node-domexception@1.0.0: resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} - engines: {node: ">=10.5.0"} + engines: {node: '>=10.5.0'} dev: true /node-fetch-native@1.4.0: @@ -19722,7 +20065,7 @@ packages: /node-forge@1.3.1: resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: ">= 6.13.0"} + engines: {node: '>= 6.13.0'} dev: false /node-gyp@9.4.0: @@ -19754,7 +20097,7 @@ packages: /nodemon@3.0.1: resolution: {integrity: sha512-g9AZ7HmkhQkqXkRc20w+ZfQ73cHLbE8hnPbtaFbFtCumZsjyMhKk9LajQ07U5Ux28lvFjZ5X7HvWR1xzU8jHVw==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: chokidar: 3.5.3 @@ -19801,7 +20144,7 @@ packages: /normalize-package-data@3.0.3: resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 is-core-module: 2.13.0 @@ -19830,11 +20173,11 @@ packages: /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /normalize-range@0.1.2: resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /normalize-registry-url@2.0.0: @@ -19843,7 +20186,7 @@ packages: /normalize-url@8.0.0: resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dev: true /npm-bundled@3.0.0: @@ -19854,7 +20197,7 @@ packages: /npm-check-updates@16.14.5: resolution: {integrity: sha512-f7v3YzPUgadtkB2LAVhiWMjrSejJ0N8OM9JjjVfxBz2neHqmPSWQUAUA+U/p3xeXHl9bghRD6knRqBhm9dkRGg==} - engines: {node: ">=14.14"} + engines: {node: '>=14.14'} hasBin: true dependencies: chalk: 5.3.0 @@ -19940,7 +20283,7 @@ packages: /npm-path@2.0.4: resolution: {integrity: sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw==} - engines: {node: ">=0.8"} + engines: {node: '>=0.8'} hasBin: true dependencies: which: 1.3.1 @@ -19998,7 +20341,7 @@ packages: /npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: path-key: 3.1.1 @@ -20010,7 +20353,7 @@ packages: /npm-which@3.0.1: resolution: {integrity: sha512-CM8vMpeFQ7MAPin0U3wzDhSGV0hMHNwHU0wjo402IVizPDrs45jSfSuoC+wThevY88LQti8VvaAnqYAeVy3I1A==} - engines: {node: ">=4.2.0"} + engines: {node: '>=4.2.0'} hasBin: true dependencies: commander: 2.20.3 @@ -20024,14 +20367,14 @@ packages: hasBin: true dev: true bundledDependencies: - - "@isaacs/string-locale-compare" - - "@npmcli/arborist" - - "@npmcli/config" - - "@npmcli/fs" - - "@npmcli/map-workspaces" - - "@npmcli/package-json" - - "@npmcli/promise-spawn" - - "@npmcli/run-script" + - '@isaacs/string-locale-compare' + - '@npmcli/arborist' + - '@npmcli/config' + - '@npmcli/fs' + - '@npmcli/map-workspaces' + - '@npmcli/package-json' + - '@npmcli/promise-spawn' + - '@npmcli/run-script' - abbrev - archy - cacache @@ -20126,23 +20469,23 @@ packages: /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /object-hash@2.2.0: resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dev: true /object-hash@3.0.0: resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} /object-inspect@1.12.3: resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} /object-is@1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -20150,11 +20493,11 @@ packages: /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} /object.assign@4.1.4: resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -20163,7 +20506,7 @@ packages: /object.entries@1.1.7: resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -20172,7 +20515,7 @@ packages: /object.fromentries@2.0.7: resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -20195,7 +20538,7 @@ packages: /object.values@1.1.7: resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -20211,18 +20554,18 @@ packages: /octokit@3.1.1: resolution: {integrity: sha512-AKJs5XYs7iAh7bskkYpxhUIpsYZdLqjnlnqrN5s9FFZuJ/a6ATUHivGpUKDpGB/xa+LGDtG9Lu8bOCfPM84vHQ==} - engines: {node: ">= 18"} + engines: {node: '>= 18'} dependencies: - "@octokit/app": 14.0.1 - "@octokit/core": 5.0.1 - "@octokit/oauth-app": 6.0.0 - "@octokit/plugin-paginate-graphql": 4.0.0(@octokit/core@5.0.1) - "@octokit/plugin-paginate-rest": 9.0.0(@octokit/core@5.0.1) - "@octokit/plugin-rest-endpoint-methods": 10.0.0(@octokit/core@5.0.1) - "@octokit/plugin-retry": 6.0.1(@octokit/core@5.0.1) - "@octokit/plugin-throttling": 8.0.0(@octokit/core@5.0.1) - "@octokit/request-error": 5.0.1 - "@octokit/types": 12.0.0 + '@octokit/app': 14.0.1 + '@octokit/core': 5.0.1 + '@octokit/oauth-app': 6.0.0 + '@octokit/plugin-paginate-graphql': 4.0.0(@octokit/core@5.0.1) + '@octokit/plugin-paginate-rest': 9.0.0(@octokit/core@5.0.1) + '@octokit/plugin-rest-endpoint-methods': 10.0.0(@octokit/core@5.0.1) + '@octokit/plugin-retry': 6.0.1(@octokit/core@5.0.1) + '@octokit/plugin-throttling': 8.0.0(@octokit/core@5.0.1) + '@octokit/request-error': 5.0.1 + '@octokit/types': 12.0.0 dev: true /ofetch@1.3.3: @@ -20239,13 +20582,13 @@ packages: /on-finished@2.4.1: resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 /on-headers@1.0.2: resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} dev: true /once@1.4.0: @@ -20263,23 +20606,23 @@ packages: /onetime@5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 /onetime@6.0.0: resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: mimic-fn: 4.0.0 /oo-ascii-tree@1.90.0: resolution: {integrity: sha512-LixRPYQJtgVfMi9gsUPB/zxrna4DqSe+M+iRGQBAq150BiPD33nWXOj/Je7uauGsOf+NkvRjZiD1P6yW/j8hsQ==} - engines: {node: ">= 14.17.0"} + engines: {node: '>= 14.17.0'} /open@7.4.2: resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: is-docker: 2.2.1 is-wsl: 2.2.0 @@ -20287,7 +20630,7 @@ packages: /open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 @@ -20295,7 +20638,7 @@ packages: /open@9.1.0: resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: default-browser: 4.0.0 define-lazy-prop: 3.0.0 @@ -20304,9 +20647,9 @@ packages: /optionator@0.9.3: resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: ">= 0.8.0"} + engines: {node: '>= 0.8.0'} dependencies: - "@aashutoshrathi/word-wrap": 1.2.6 + '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 @@ -20315,7 +20658,7 @@ packages: /ora@5.4.1: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: bl: 4.1.0 chalk: 4.1.2 @@ -20329,42 +20672,42 @@ packages: /os-tmpdir@1.0.2: resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} requiresBuild: true /p-cancelable@3.0.0: resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} - engines: {node: ">=12.20"} + engines: {node: '>=12.20'} dev: true /p-defer@1.0.0: resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: false /p-filter@2.1.0: resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: p-map: 2.1.0 dev: false /p-limit@1.3.0: resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: p-try: 1.0.0 dev: true /p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: p-try: 2.2.0 /p-limit@3.1.0: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 @@ -20377,53 +20720,53 @@ packages: /p-locate@2.0.0: resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: p-limit: 1.3.0 dev: true /p-locate@3.0.0: resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: p-limit: 2.3.0 dev: true /p-locate@4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: p-limit: 2.3.0 /p-locate@5.0.0: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: p-limit: 3.1.0 /p-map@2.1.0: resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: false /p-map@4.0.0: resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: aggregate-error: 3.1.0 /p-try@1.0.0: resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} /package-json@8.1.1: resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: got: 12.6.1 registry-auth-token: 5.0.2 @@ -20436,10 +20779,10 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: - "@npmcli/git": 4.1.0 - "@npmcli/installed-package-contents": 2.0.2 - "@npmcli/promise-spawn": 6.0.2 - "@npmcli/run-script": 6.0.2 + '@npmcli/git': 4.1.0 + '@npmcli/installed-package-contents': 2.0.2 + '@npmcli/promise-spawn': 6.0.2 + '@npmcli/run-script': 6.0.2 cacache: 17.1.4 fs-minipass: 3.0.3 minipass: 5.0.0 @@ -20464,10 +20807,10 @@ packages: engines: {node: ^16.14.0 || >=18.0.0} hasBin: true dependencies: - "@npmcli/git": 5.0.3 - "@npmcli/installed-package-contents": 2.0.2 - "@npmcli/promise-spawn": 7.0.0 - "@npmcli/run-script": 7.0.1 + '@npmcli/git': 5.0.3 + '@npmcli/installed-package-contents': 2.0.2 + '@npmcli/promise-spawn': 7.0.0 + '@npmcli/run-script': 7.0.1 cacache: 18.0.0 fs-minipass: 3.0.3 minipass: 7.0.4 @@ -20497,7 +20840,7 @@ packages: /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: callsites: 3.1.0 @@ -20512,18 +20855,18 @@ packages: /parse-github-url@1.0.2: resolution: {integrity: sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} hasBin: true dev: true /parse-gitignore@1.0.1: resolution: {integrity: sha512-UGyowyjtx26n65kdAMWhm6/3uy5uSrpcuH7tt+QEVudiBoVS+eqHxD5kbi9oWVRwj7sCzXqwuM+rUGw7earl6A==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /parse-json@4.0.0: resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 @@ -20531,16 +20874,16 @@ packages: /parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: - "@babel/code-frame": 7.22.13 + '@babel/code-frame': 7.22.13 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 /parse-ms@2.1.0: resolution: {integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: false /parse-semver@1.1.1: @@ -20568,16 +20911,16 @@ packages: /parseurl@1.3.3: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} /patch-console@1.0.0: resolution: {integrity: sha512-nxl9nrnLQmh64iTzMfyylSlRozL7kAXIaxw1fVcLYdyhNkJCRUzirRZTikXGJsg+hc4fqpneTK6iU2H1Q8THSA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /path-absolute@1.0.1: resolution: {integrity: sha512-gds5iRhSeOcDtj8gfWkRHLtZKTPsFVuh7utbjYtvnclw4XM+ffRzJrwqMhOD1PVqef7nBLmgsu1vIujjvAJrAw==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: false /path-browserify@1.0.1: @@ -20586,24 +20929,24 @@ packages: /path-exists@3.0.0: resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /path-exists@4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: ">=8"} + engines: {node: '>=8'} /path-is-absolute@1.0.1: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /path-key@3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: ">=8"} + engines: {node: '>=8'} /path-key@4.0.0: resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} /path-name@1.0.0: resolution: {integrity: sha512-/dcAb5vMXH0f51yvMuSUqFpxUcA8JelbRmE5mW/p4CUJxrNgK24IkstnV7ENtg2IDGBOu6izKTG6eilbnbNKWQ==} @@ -20614,14 +20957,14 @@ packages: /path-scurry@1.10.1: resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} - engines: {node: ">=16 || 14 >=14.17"} + engines: {node: '>=16 || 14 >=14.17'} dependencies: lru-cache: 10.0.1 minipass: 7.0.4 /path-temp@2.1.0: resolution: {integrity: sha512-cMMJTAZlion/RWRRC48UbrDymEIt+/YSD/l8NqjneyDw2rDOBQcP5yRkMB4CYGn47KMhZvbblBP7Z79OsMw72w==} - engines: {node: ">=8.15"} + engines: {node: '>=8.15'} dependencies: unique-string: 2.0.0 dev: false @@ -20637,14 +20980,14 @@ packages: /path-type@3.0.0: resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: pify: 3.0.0 dev: true /path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: ">=8"} + engines: {node: '>=8'} /pathe@1.1.1: resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} @@ -20674,56 +21017,56 @@ packages: /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: ">=8.6"} + engines: {node: '>=8.6'} /pidtree@0.6.0: resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} - engines: {node: ">=0.10"} + engines: {node: '>=0.10'} hasBin: true dev: true /pidusage@3.0.2: resolution: {integrity: sha512-g0VU+y08pKw5M8EZ2rIGiEBaB8wrQMjYGFfW2QVIfyT8V+fq8YFLkvlz4bz5ljvFDJYNFCWT3PWqcRr2FKO81w==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: safe-buffer: 5.2.1 dev: true /pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /pify@3.0.0: resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /pify@4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /pirates@4.0.6: resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} /pkg-dir@3.0.0: resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: find-up: 3.0.0 dev: true /pkg-dir@4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: find-up: 4.1.0 dev: true /pkg-dir@5.0.0: resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: find-up: 5.0.0 dev: true @@ -20737,20 +21080,20 @@ packages: /pkg-up@3.1.0: resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: find-up: 3.0.0 dev: true /playwright-core@1.38.1: resolution: {integrity: sha512-tQqNFUKa3OfMf4b2jQ7aGLB8o9bS3bOY0yMEtldtC2+spf8QXG9zvXLTXUeRsoNuxEYMgLYR+NXfAa1rjKRcrg==} - engines: {node: ">=16"} + engines: {node: '>=16'} hasBin: true dev: true /playwright@1.38.1: resolution: {integrity: sha512-oRMSJmZrOu1FP5iu3UrCx8JEFRIMxLDM0c/3o4bpzU5Tz97BypefWf7TuTNPWeCe279TPal5RtPPZ+9lW/Qkow==} - engines: {node: ">=16"} + engines: {node: '>=16'} hasBin: true dependencies: playwright-core: 1.38.1 @@ -20760,19 +21103,19 @@ packages: /pluralize@8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: false /polished@4.2.2: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: - "@babel/runtime": 7.23.1 + '@babel/runtime': 7.23.1 dev: true /postcss-import@15.1.0(postcss@8.4.31): resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: @@ -20792,10 +21135,10 @@ packages: /postcss-load-config@3.1.4(postcss@8.4.31): resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} peerDependencies: - postcss: ">=8.0.9" - ts-node: ">=9.0.0" + postcss: '>=8.0.9' + ts-node: '>=9.0.0' peerDependenciesMeta: postcss: optional: true @@ -20809,10 +21152,10 @@ packages: /postcss-load-config@3.1.4(ts-node@10.9.1): resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} peerDependencies: - postcss: ">=8.0.9" - ts-node: ">=9.0.0" + postcss: '>=8.0.9' + ts-node: '>=9.0.0' peerDependenciesMeta: postcss: optional: true @@ -20820,16 +21163,16 @@ packages: optional: true dependencies: lilconfig: 2.1.0 - ts-node: 10.9.1(@types/node@16.18.58)(typescript@4.9.5) + ts-node: 10.9.1(@types/node@18.18.4)(typescript@4.9.5) yaml: 1.10.2 dev: true /postcss-load-config@4.0.1(postcss@8.4.31): resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} - engines: {node: ">= 14"} + engines: {node: '>= 14'} peerDependencies: - postcss: ">=8.0.9" - ts-node: ">=9.0.0" + postcss: '>=8.0.9' + ts-node: '>=9.0.0' peerDependenciesMeta: postcss: optional: true @@ -20842,7 +21185,7 @@ packages: /postcss-nested@6.0.1(postcss@8.4.31): resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} - engines: {node: ">=12.0"} + engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: @@ -20851,7 +21194,7 @@ packages: /postcss-selector-parser@6.0.13: resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 @@ -20869,7 +21212,7 @@ packages: /prebuild-install@7.1.1: resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: detect-libc: 2.0.2 @@ -20888,22 +21231,22 @@ packages: /prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: ">= 0.8.0"} + engines: {node: '>= 0.8.0'} /prettier-linter-helpers@1.0.0: resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} - engines: {node: ">=6.0.0"} + engines: {node: '>=6.0.0'} dependencies: fast-diff: 1.3.0 /prettier@2.8.8: resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: ">=10.13.0"} + engines: {node: '>=10.13.0'} hasBin: true /pretty-bytes@5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: false /pretty-format@27.5.1: @@ -20919,7 +21262,7 @@ packages: resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - "@jest/schemas": 28.1.3 + '@jest/schemas': 28.1.3 ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 18.2.0 @@ -20929,19 +21272,19 @@ packages: resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@jest/schemas": 29.6.3 + '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 dev: true /pretty-hrtime@1.0.3: resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} dev: true /pretty-ms@7.0.1: resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: parse-ms: 2.1.0 dev: false @@ -20959,19 +21302,19 @@ packages: /process@0.11.10: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: ">= 0.6.0"} + engines: {node: '>= 0.6.0'} /progress@2.0.3: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: ">=0.4.0"} + engines: {node: '>=0.4.0'} dev: true /projen@0.71.163: resolution: {integrity: sha512-Sj0UthyhhvHYAhgvuQtQk6R4ia/AkHGT/JG3PFbEjIIYcPSImonW+1OIrZ+S+ofWZJPWZj07RBYLiZ+qAVm8NQ==} - engines: {node: ">= 14.0.0"} + engines: {node: '>= 14.0.0'} hasBin: true dependencies: - "@iarna/toml": 2.2.5 + '@iarna/toml': 2.2.5 case: 1.6.3 chalk: 4.1.2 comment-json: 4.2.2 @@ -20985,7 +21328,7 @@ packages: yaml: 2.3.2 yargs: 17.7.2 bundledDependencies: - - "@iarna/toml" + - '@iarna/toml' - case - chalk - comment-json @@ -21010,21 +21353,21 @@ packages: /promise-inflight@1.0.1: resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} peerDependencies: - bluebird: "*" + bluebird: '*' peerDependenciesMeta: bluebird: optional: true /promise-retry@2.0.1: resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: err-code: 2.0.3 retry: 0.12.0 /prompts-ncu@3.0.0: resolution: {integrity: sha512-qyz9UxZ5MlPKWVhWrCmSZ1ahm2GVYdjLb8og2sg0IPth1KRuhcggHGuijz0e41dkx35p1t1q3GRISGH7QGALFA==} - engines: {node: ">= 14"} + engines: {node: '>= 14'} dependencies: kleur: 4.1.5 sisteransi: 1.0.5 @@ -21032,7 +21375,7 @@ packages: /prompts@2.4.2: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: kleur: 3.0.3 sisteransi: 1.0.5 @@ -21054,7 +21397,7 @@ packages: /proxy-addr@2.0.7: resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: ">= 0.10"} + engines: {node: '>= 0.10'} dependencies: forwarded: 0.2.0 ipaddr.js: 1.9.1 @@ -21095,20 +21438,20 @@ packages: /punycode@2.3.0: resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} - engines: {node: ">=6"} + engines: {node: '>=6'} /pupa@3.1.0: resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==} - engines: {node: ">=12.20"} + engines: {node: '>=12.20'} dependencies: escape-goat: 4.0.0 dev: true /puppeteer-core@2.1.1: resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} - engines: {node: ">=8.16.0"} + engines: {node: '>=8.16.0'} dependencies: - "@types/mime-types": 2.1.2 + '@types/mime-types': 2.1.2 debug: 4.3.4 extract-zip: 1.7.0 https-proxy-agent: 4.0.0 @@ -21130,18 +21473,18 @@ packages: /q@1.5.1: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: ">=0.6.0", teleport: ">=0.2.0"} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} dev: true /qs@6.11.0: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: ">=0.6"} + engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 /qs@6.11.2: resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} - engines: {node: ">=0.6"} + engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 dev: true @@ -21155,11 +21498,11 @@ packages: /quick-lru@4.0.1: resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: ">=8"} + engines: {node: '>=8'} /quick-lru@5.1.1: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /ramda@0.29.0: @@ -21180,11 +21523,11 @@ packages: /range-parser@1.2.1: resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} /raw-body@2.5.1: resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} dependencies: bytes: 3.1.2 http-errors: 2.0.0 @@ -21223,8 +21566,8 @@ packages: /react-colorful@5.6.1(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" + react: '>=16.8.0' + react-dom: '>=16.8.0' dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -21243,18 +21586,18 @@ packages: /react-docgen-typescript@2.2.2(typescript@5.2.2): resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: - typescript: ">= 4.3.x" + typescript: '>= 4.3.x' dependencies: typescript: 5.2.2 dev: true /react-docgen@6.0.0-alpha.3: resolution: {integrity: sha512-DDLvB5EV9As1/zoUsct6Iz2Cupw9FObEGD3DMcIs3EDFIoSKyz8FZtoWj3Wj+oodrU4/NfidN0BL5yrapIcTSA==} - engines: {node: ">=12.0.0"} + engines: {node: '>=12.0.0'} hasBin: true dependencies: - "@babel/core": 7.23.0 - "@babel/generator": 7.23.0 + '@babel/core': 7.23.0 + '@babel/generator': 7.23.0 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -21282,7 +21625,7 @@ packages: react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 dependencies: - "@base2/pretty-print-object": 1.0.1 + '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -21319,11 +21662,11 @@ packages: /react-markdown@9.0.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==} peerDependencies: - "@types/react": ">=18" - react: ">=18" + '@types/react': '>=18' + react: '>=18' dependencies: - "@types/hast": 3.0.3 - "@types/react": 18.2.25 + '@types/hast': 3.0.3 + '@types/react': 18.2.25 devlop: 1.1.0 hast-util-to-jsx-runtime: 2.2.0 html-url-attributes: 3.0.0 @@ -21341,11 +21684,11 @@ packages: /react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} peerDependencies: - "@popperjs/core": ^2.0.0 + '@popperjs/core': ^2.0.0 react: ^16.8.0 || ^17 || ^18 react-dom: ^16.8.0 || ^17 || ^18 dependencies: - "@popperjs/core": 2.11.8 + '@popperjs/core': 2.11.8 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-fast-compare: 3.2.2 @@ -21354,7 +21697,7 @@ packages: /react-reconciler@0.26.2(react@17.0.2): resolution: {integrity: sha512-nK6kgY28HwrMNwDnMui3dvm3rCFjZrcGiuwLc5COUipBK5hWHLOxMJhSnSomirqWwjPBJKV1QcbkI0VJr7Gl1Q==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} peerDependencies: react: ^17.0.2 dependencies: @@ -21366,20 +21709,20 @@ packages: /react-refresh@0.14.0: resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dev: true /react-remove-scroll-bar@2.3.4(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@types/react": 18.2.25 + '@types/react': 18.2.25 react: 18.2.0 react-style-singleton: 2.2.1(@types/react@18.2.25)(react@18.2.0) tslib: 2.6.2 @@ -21387,15 +21730,15 @@ packages: /react-remove-scroll@2.5.5(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@types/react": 18.2.25 + '@types/react': 18.2.25 react: 18.2.0 react-remove-scroll-bar: 2.3.4(@types/react@18.2.25)(react@18.2.0) react-style-singleton: 2.2.1(@types/react@18.2.25)(react@18.2.0) @@ -21406,15 +21749,15 @@ packages: /react-style-singleton@2.2.1(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@types/react": 18.2.25 + '@types/react': 18.2.25 get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 @@ -21423,7 +21766,7 @@ packages: /react@17.0.2: resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 @@ -21431,7 +21774,7 @@ packages: /react@18.2.0: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 @@ -21447,7 +21790,7 @@ packages: /read-ini-file@4.0.0: resolution: {integrity: sha512-zz4qv/sKETv7nAkATqSJ9YMbKD8NXRPuA8d17VdYCuNYrVstB1S6UAMU6aytf5vRa9MESbZN7jLZdcmrOxz4gg==} - engines: {node: ">=14.6"} + engines: {node: '>=14.6'} dependencies: ini: 3.0.1 strip-bom: 4.0.0 @@ -21482,7 +21825,7 @@ packages: /read-pkg-up@3.0.0: resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: find-up: 2.1.0 read-pkg: 3.0.0 @@ -21490,7 +21833,7 @@ packages: /read-pkg-up@7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: find-up: 4.1.0 read-pkg: 5.2.0 @@ -21498,7 +21841,7 @@ packages: /read-pkg@3.0.0: resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: load-json-file: 4.0.0 normalize-package-data: 2.5.0 @@ -21507,16 +21850,16 @@ packages: /read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: - "@types/normalize-package-data": 2.4.2 + '@types/normalize-package-data': 2.4.2 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 /read-yaml-file@2.1.0: resolution: {integrity: sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==} - engines: {node: ">=10.13"} + engines: {node: '>=10.13'} dependencies: js-yaml: 4.1.0 strip-bom: 4.0.0 @@ -21524,7 +21867,7 @@ packages: /read@1.0.7: resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} - engines: {node: ">=0.8"} + engines: {node: '>=0.8'} dependencies: mute-stream: 0.0.8 dev: true @@ -21542,7 +21885,7 @@ packages: /readable-stream@3.6.2: resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} dependencies: inherits: 2.0.4 string_decoder: 1.3.0 @@ -21566,18 +21909,18 @@ packages: /readdirp@3.6.0: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: ">=8.10.0"} + engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 /realpath-missing@1.1.0: resolution: {integrity: sha512-wnWtnywepjg/eHIgWR97R7UuM5i+qHLA195qdN9UPKvcMqfn60+67S8sPPW3vDlSEfYHoFkKU8IvpCNty3zQvQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: false /recast@0.21.5: resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} - engines: {node: ">= 4"} + engines: {node: '>= 4'} dependencies: ast-types: 0.15.2 esprima: 4.0.1 @@ -21587,7 +21930,7 @@ packages: /recast@0.23.4: resolution: {integrity: sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==} - engines: {node: ">= 4"} + engines: {node: '>= 4'} dependencies: assert: 2.1.0 ast-types: 0.16.1 @@ -21598,13 +21941,13 @@ packages: /rechoir@0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} - engines: {node: ">= 0.10"} + engines: {node: '>= 0.10'} dependencies: resolve: 1.22.6 /redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 @@ -21612,12 +21955,12 @@ packages: /redis-errors@1.2.0: resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: false /redis-parser@3.0.0: resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: redis-errors: 1.2.0 dev: false @@ -21625,17 +21968,17 @@ packages: /redis@4.6.10: resolution: {integrity: sha512-mmbyhuKgDiJ5TWUhiKhBssz+mjsuSI/lSZNPI9QvZOYzWvYGejtb+W3RlDDf8LD6Bdl5/mZeG8O1feUGhXTxEg==} dependencies: - "@redis/bloom": 1.2.0(@redis/client@1.5.11) - "@redis/client": 1.5.11 - "@redis/graph": 1.1.0(@redis/client@1.5.11) - "@redis/json": 1.0.6(@redis/client@1.5.11) - "@redis/search": 1.1.5(@redis/client@1.5.11) - "@redis/time-series": 1.0.5(@redis/client@1.5.11) + '@redis/bloom': 1.2.0(@redis/client@1.5.11) + '@redis/client': 1.5.11 + '@redis/graph': 1.1.0(@redis/client@1.5.11) + '@redis/json': 1.0.6(@redis/client@1.5.11) + '@redis/search': 1.1.5(@redis/client@1.5.11) + '@redis/time-series': 1.0.5(@redis/client@1.5.11) dev: true /reflect.getprototypeof@1.0.4: resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -21647,7 +21990,7 @@ packages: /regenerate-unicode-properties@10.1.1: resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: regenerate: 1.4.2 dev: true @@ -21662,7 +22005,7 @@ packages: /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - "@babel/runtime": 7.23.1 + '@babel/runtime': 7.23.1 dev: true /regexp-tree@0.1.27: @@ -21672,7 +22015,7 @@ packages: /regexp.prototype.flags@1.5.1: resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -21680,9 +22023,9 @@ packages: /regexpu-core@5.3.2: resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: - "@babel/regjsgen": 0.8.0 + '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 regenerate-unicode-properties: 10.1.1 regjsparser: 0.9.1 @@ -21692,14 +22035,14 @@ packages: /registry-auth-token@5.0.2: resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==} - engines: {node: ">=14"} + engines: {node: '>=14'} dependencies: - "@pnpm/npm-conf": 2.2.2 + '@pnpm/npm-conf': 2.2.2 dev: true /registry-url@6.0.1: resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: rc: 1.2.8 dev: true @@ -21731,7 +22074,7 @@ packages: /remark-parse@11.0.0: resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} dependencies: - "@types/mdast": 4.0.3 + '@types/mdast': 4.0.3 mdast-util-from-markdown: 2.0.0 micromark-util-types: 2.0.0 unified: 11.0.4 @@ -21742,8 +22085,8 @@ packages: /remark-rehype@11.0.0: resolution: {integrity: sha512-vx8x2MDMcxuE4lBmQ46zYUDfcFMmvg80WYX+UNLeG6ixjdCCLcw1lrgAukwBTuOFsS78eoAedHGn9sNM0w7TPw==} dependencies: - "@types/hast": 3.0.3 - "@types/mdast": 4.0.3 + '@types/hast': 3.0.3 + '@types/mdast': 4.0.3 mdast-util-to-hast: 13.0.2 unified: 11.0.4 vfile: 6.0.1 @@ -21759,20 +22102,20 @@ packages: /remote-git-tags@3.0.0: resolution: {integrity: sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /repeat-string@1.6.1: resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: ">=0.10"} + engines: {node: '>=0.10'} /require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /require-from-string@2.0.2: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /require-main-filename@2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} @@ -21792,23 +22135,23 @@ packages: /resolve-cwd@3.0.0: resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 dev: true /resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: ">=4"} + engines: {node: '>=4'} /resolve-from@5.0.0: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /resolve-link-target@2.0.0: resolution: {integrity: sha512-jR9pmK8PUtjwUSNYn4fuTewcNUJE5e9B8tWD1C2dmDk40dvig+l1WSPmdH/03cx3ULWK7oS0E3cdam+poDepYQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: false /resolve-pkg-maps@1.0.0: @@ -21816,12 +22159,12 @@ packages: /resolve.exports@1.1.1: resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /resolve.exports@2.0.2: resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /resolve@1.22.6: @@ -21843,21 +22186,21 @@ packages: /responselike@3.0.0: resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: lowercase-keys: 3.0.0 dev: true /restore-cursor@3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: onetime: 5.1.2 signal-exit: 3.0.7 /retry-request@5.0.2: resolution: {integrity: sha512-wfI3pk7EE80lCIXprqh7ym48IHYdwmAAzESdbU8Q9l7pnRCk9LEhpbOTNKjz6FARLm/Bl5m+4F0ABxOkYUujSQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: debug: 4.3.4 extend: 3.0.2 @@ -21867,16 +22210,16 @@ packages: /retry@0.12.0: resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: ">= 4"} + engines: {node: '>= 4'} /retry@0.13.1: resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: ">= 4"} + engines: {node: '>= 4'} dev: false /reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: ">=1.0.0", node: ">=0.10.0"} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} /rfc4648@1.5.2: resolution: {integrity: sha512-tLOizhR6YGovrEBLatX1sdcuhoSCXddw3mqNVAcKxGJ+J0hFeJ+SjeWCv5UPA/WU3YzWPPuCVYgXBKZUPGpKtg==} @@ -21888,7 +22231,7 @@ packages: /right-pad@1.0.1: resolution: {integrity: sha512-bYBjgxmkvTAfgIYy328fmkwhp39v8lwVgWhhrzxPV3yHtcSqyYKe9/XOhvW48UFjATg3VuJbpsp5822ACNvkmw==} - engines: {node: ">= 0.10"} + engines: {node: '>= 0.10'} dev: false /rimraf@2.6.3: @@ -21913,7 +22256,7 @@ packages: /rimraf@5.0.5: resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==} - engines: {node: ">=14"} + engines: {node: '>=14'} hasBin: true dependencies: glob: 10.3.10 @@ -21921,28 +22264,49 @@ packages: /rollup@3.29.4: resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} - engines: {node: ">=14.18.0", npm: ">=8.0.0"} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.3 dev: true + /rollup@4.9.1: + resolution: {integrity: sha512-pgPO9DWzLoW/vIhlSoDByCzcpX92bKEorbgXuZrqxByte3JFk2xSW2JEeAcyLc9Ru9pqcNNW+Ob7ntsk2oT/Xw==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.9.1 + '@rollup/rollup-android-arm64': 4.9.1 + '@rollup/rollup-darwin-arm64': 4.9.1 + '@rollup/rollup-darwin-x64': 4.9.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.9.1 + '@rollup/rollup-linux-arm64-gnu': 4.9.1 + '@rollup/rollup-linux-arm64-musl': 4.9.1 + '@rollup/rollup-linux-riscv64-gnu': 4.9.1 + '@rollup/rollup-linux-x64-gnu': 4.9.1 + '@rollup/rollup-linux-x64-musl': 4.9.1 + '@rollup/rollup-win32-arm64-msvc': 4.9.1 + '@rollup/rollup-win32-ia32-msvc': 4.9.1 + '@rollup/rollup-win32-x64-msvc': 4.9.1 + fsevents: 2.3.3 + dev: true + /run-applescript@5.0.0: resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: execa: 5.1.1 /run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: ">=0.12.0"} + engines: {node: '>=0.12.0'} requiresBuild: true dev: false optional: true /run-async@3.0.0: resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} - engines: {node: ">=0.12.0"} + engines: {node: '>=0.12.0'} dev: true /run-parallel@1.2.0: @@ -21958,7 +22322,7 @@ packages: /safe-array-concat@1.0.1: resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} - engines: {node: ">=0.4"} + engines: {node: '>=0.4'} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -21973,9 +22337,9 @@ packages: /safe-execa@0.1.2: resolution: {integrity: sha512-vdTshSQ2JsRCgT8eKZWNJIL26C6bVqy1SOmuCMlKHegVeo8KYRobRrefOdUq9OozSPUUiSxrylteeRmLOMFfWg==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: - "@zkochan/which": 2.0.3 + '@zkochan/which': 2.0.3 execa: 5.1.1 path-name: 1.0.0 dev: false @@ -22001,7 +22365,7 @@ packages: /safe-stable-stringify@2.4.3: resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: false /safer-buffer@2.1.2: @@ -22013,7 +22377,7 @@ packages: /saxes@5.0.1: resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: xmlchars: 2.2.0 dev: true @@ -22032,9 +22396,9 @@ packages: /schema-utils@3.3.0: resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: ">= 10.13.0"} + engines: {node: '>= 10.13.0'} dependencies: - "@types/json-schema": 7.0.13 + '@types/json-schema': 7.0.13 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) dev: true @@ -22045,7 +22409,7 @@ packages: /semver-diff@4.0.0: resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: semver: 7.5.4 dev: true @@ -22070,14 +22434,14 @@ packages: /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 /send@0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: ">= 0.8.0"} + engines: {node: '>= 0.8.0'} dependencies: debug: 2.6.9 depd: 2.0.0 @@ -22103,7 +22467,7 @@ packages: /serve-static@1.15.0: resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: ">= 0.8.0"} + engines: {node: '>= 0.8.0'} dependencies: encodeurl: 1.0.2 escape-html: 1.0.3 @@ -22117,7 +22481,7 @@ packages: /set-function-name@2.0.1: resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.0 functions-have-names: 1.2.3 @@ -22132,27 +22496,27 @@ packages: /shallow-clone@3.0.1: resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: kind-of: 6.0.3 dev: true /shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 /shebang-regex@3.0.0: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: ">=8"} + engines: {node: '>=8'} /shell-quote@1.8.1: resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} /shelljs@0.8.5: resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} - engines: {node: ">=4"} + engines: {node: '>=4'} hasBin: true dependencies: glob: 7.2.3 @@ -22165,7 +22529,7 @@ packages: /shx@0.3.4: resolution: {integrity: sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==} - engines: {node: ">=6"} + engines: {node: '>=6'} hasBin: true dependencies: minimist: 1.2.8 @@ -22187,17 +22551,17 @@ packages: /signal-exit@4.1.0: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: ">=14"} + engines: {node: '>=14'} /sigstore@1.9.0: resolution: {integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: - "@sigstore/bundle": 1.1.0 - "@sigstore/protobuf-specs": 0.2.1 - "@sigstore/sign": 1.0.0 - "@sigstore/tuf": 1.0.3 + '@sigstore/bundle': 1.1.0 + '@sigstore/protobuf-specs': 0.2.1 + '@sigstore/sign': 1.0.0 + '@sigstore/tuf': 1.0.3 make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color @@ -22207,10 +22571,10 @@ packages: resolution: {integrity: sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@sigstore/bundle": 2.1.0 - "@sigstore/protobuf-specs": 0.2.1 - "@sigstore/sign": 2.1.0 - "@sigstore/tuf": 2.2.0 + '@sigstore/bundle': 2.1.0 + '@sigstore/protobuf-specs': 0.2.1 + '@sigstore/sign': 2.1.0 + '@sigstore/tuf': 2.2.0 transitivePeerDependencies: - supports-color dev: false @@ -22238,7 +22602,7 @@ packages: /simple-update-notifier@2.0.0: resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: semver: 7.5.4 dev: true @@ -22246,9 +22610,9 @@ packages: /sinon@14.0.2: resolution: {integrity: sha512-PDpV0ZI3ZCS3pEqx0vpNp6kzPhHrLx72wA0G+ZLaaJjLIYeE0n8INlgaohKuGy7hP0as5tbUd23QWu5U233t+w==} dependencies: - "@sinonjs/commons": 2.0.0 - "@sinonjs/fake-timers": 9.1.2 - "@sinonjs/samsam": 7.0.1 + '@sinonjs/commons': 2.0.0 + '@sinonjs/fake-timers': 9.1.2 + '@sinonjs/samsam': 7.0.1 diff: 5.1.0 nise: 5.1.4 supports-color: 7.2.0 @@ -22260,11 +22624,11 @@ packages: /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: ">=8"} + engines: {node: '>=8'} /slice-ansi@3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 @@ -22272,7 +22636,7 @@ packages: /slice-ansi@4.0.0: resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 @@ -22281,11 +22645,11 @@ packages: /smart-buffer@4.2.0: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: ">= 6.0.0", npm: ">= 3.0.0"} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} /socks-proxy-agent@7.0.0: resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 debug: 4.3.4 @@ -22295,7 +22659,7 @@ packages: /socks-proxy-agent@8.0.2: resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==} - engines: {node: ">= 14"} + engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 debug: 4.3.4 @@ -22306,7 +22670,7 @@ packages: /socks@2.7.1: resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} - engines: {node: ">= 10.13.0", npm: ">= 3.0.0"} + engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} dependencies: ip: 2.0.0 smart-buffer: 4.2.0 @@ -22322,14 +22686,14 @@ packages: /sort-keys@4.2.0: resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: is-plain-obj: 2.1.0 dev: false /source-map-js@1.0.2: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /source-map-support@0.5.13: resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} @@ -22346,16 +22710,16 @@ packages: /source-map@0.6.1: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} /source-map@0.7.4: resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dev: true /source-map@0.8.0-beta.0: resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dependencies: whatwg-url: 7.1.0 dev: true @@ -22370,7 +22734,7 @@ packages: /spawn-please@2.0.2: resolution: {integrity: sha512-KM8coezO6ISQ89c1BzyWNtcn2V2kAVtwIXd3cN/V5a0xPYc1F/vydrRc01wsKFEQ/p+V1a4sw4z2yMITIXrgGw==} - engines: {node: ">=14"} + engines: {node: '>=14'} dependencies: cross-spawn: 7.0.3 dev: true @@ -22395,12 +22759,12 @@ packages: /spdx-license-list@6.7.0: resolution: {integrity: sha512-NFqavuJxNsHdwSy/0PjmUpcc76XwlmHQRPjVVtE62qmSLhKJUnzSvJCkU9nrY6TsChfGU1xqGePriBkNtNRMiA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /spdx-license-list@6.8.0: resolution: {integrity: sha512-5UdM7r9yJ1EvsPQZWfa41AZjLQngl9iMMysm9XBW7Lqhq7aF8cllfqjS+rFCHB8FFMGSM0yFWue2LUV9mR0QzQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /split2@3.2.2: @@ -22419,7 +22783,7 @@ packages: /sscaff@1.2.274: resolution: {integrity: sha512-sztRa50SL1LVxZnF1au6QT1SC2z0S1oEOyi2Kpnlg6urDns93aL32YxiJcNkLcY+VHFtVqm/SRv4cb+6LeoBQA==} - engines: {node: ">= 12.13.0"} + engines: {node: '>= 12.13.0'} dev: true /ssri@10.0.5: @@ -22436,7 +22800,7 @@ packages: /stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 dev: true @@ -22458,7 +22822,7 @@ packages: /standard-version@9.5.0: resolution: {integrity: sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: chalk: 2.4.2 @@ -22479,21 +22843,21 @@ packages: /statuses@2.0.1: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} /std-env@3.4.3: resolution: {integrity: sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q==} /stop-iteration-iterator@1.0.0: resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: internal-slot: 1.0.5 dev: true /stoppable@1.1.0: resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} - engines: {node: ">=4", npm: ">=6"} + engines: {node: '>=4', npm: '>=6'} dev: false /store2@2.14.2: @@ -22504,7 +22868,7 @@ packages: resolution: {integrity: sha512-YkFSpnR47j5zz7yElA+2axLjXN7K7TxDGJRHHlqXmG5iQ0PXzmjrj2RxMDKFz4Ybp/QjEUoJ4rx//ESEY0Nb5A==} hasBin: true dependencies: - "@storybook/cli": 7.4.6 + '@storybook/cli': 7.4.6 transitivePeerDependencies: - bufferutil - encoding @@ -22514,7 +22878,7 @@ packages: /stream-buffers@3.0.2: resolution: {integrity: sha512-DQi1h8VEBA/lURbSwFtEHnSTb9s2/pwLEaFuNhXwy1Dx3Sa0lOuYT2yNUr4/j2fs8oCAMANtrZ5OrPZtyVs3MQ==} - engines: {node: ">= 0.10.0"} + engines: {node: '>= 0.10.0'} dev: true /stream-chain@2.2.5: @@ -22538,7 +22902,7 @@ packages: /streamroller@3.1.5: resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==} - engines: {node: ">=8.0"} + engines: {node: '>=8.0'} dependencies: date-format: 4.0.14 debug: 4.3.4 @@ -22549,14 +22913,14 @@ packages: /string-length@4.0.2: resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 @@ -22564,7 +22928,7 @@ packages: /string-width@5.1.2: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 @@ -22590,7 +22954,7 @@ packages: /string.prototype.trim@1.2.8: resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -22627,23 +22991,23 @@ packages: /strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 /strip-ansi@7.1.0: resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: ansi-regex: 6.0.1 /strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: ">=4"} + engines: {node: '>=4'} /strip-bom@4.0.0: resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: ">=8"} + engines: {node: '>=8'} /strip-comments-strings@1.2.0: resolution: {integrity: sha512-zwF4bmnyEjZwRhaak9jUWNxc0DoeKBJ7lwSN/LEc8dQXZcUFG6auaaTQJokQWXopLdM3iTx01nQT8E4aL29DAQ==} @@ -22651,31 +23015,31 @@ packages: /strip-final-newline@2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: ">=6"} + engines: {node: '>=6'} /strip-final-newline@3.0.0: resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: ">=12"} + engines: {node: '>=12'} /strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: min-indent: 1.0.1 /strip-json-comments@2.0.1: resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: ">=0.10.0"} + engines: {node: '>=0.10.0'} requiresBuild: true dev: true /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: ">=8"} + engines: {node: '>=8'} /strip-json-comments@5.0.1: resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dev: true /strip-literal@1.3.0: @@ -22704,10 +23068,10 @@ packages: /sucrase@3.34.0: resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} - engines: {node: ">=8"} + engines: {node: '>=8'} hasBin: true dependencies: - "@jridgewell/gen-mapping": 0.3.3 + '@jridgewell/gen-mapping': 0.3.3 commander: 4.1.1 glob: 7.1.6 lines-and-columns: 1.2.4 @@ -22717,33 +23081,33 @@ packages: /supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: has-flag: 3.0.0 /supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 /supports-color@8.1.1: resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: has-flag: 4.0.0 dev: true /supports-hyperlinks@2.3.0: resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 supports-color: 7.2.0 /supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} /symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} @@ -22755,7 +23119,7 @@ packages: /table@6.8.1: resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} - engines: {node: ">=10.0.0"} + engines: {node: '>=10.0.0'} dependencies: ajv: 8.12.0 lodash.truncate: 4.4.2 @@ -22766,10 +23130,10 @@ packages: /tailwindcss@3.3.3: resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} hasBin: true dependencies: - "@alloc/quick-lru": 5.2.0 + '@alloc/quick-lru': 5.2.0 arg: 5.0.2 chokidar: 3.5.3 didyoumean: 1.2.2 @@ -22796,7 +23160,7 @@ packages: /tapable@2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} /tar-fs@2.1.1: resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} @@ -22809,7 +23173,7 @@ packages: /tar-stream@2.2.0: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: bl: 4.1.0 end-of-stream: 1.4.4 @@ -22819,7 +23183,7 @@ packages: /tar@6.2.0: resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -22830,7 +23194,7 @@ packages: /teeny-request@8.0.3: resolution: {integrity: sha512-jJZpA5He2y52yUhA7pyAGZlgQpcB+xLjcN0eUFxr9c8hP/H7uOXbBNVo/O0C/xVfJLJs680jvkFgVJEEvk9+ww==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 @@ -22850,19 +23214,19 @@ packages: /temp-dir@2.0.0: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /temp@0.8.4: resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} - engines: {node: ">=6.0.0"} + engines: {node: '>=6.0.0'} dependencies: rimraf: 2.6.3 dev: true /tempy@1.0.1: resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: del: 6.1.1 is-stream: 2.0.1 @@ -22873,28 +23237,28 @@ packages: /terminal-link@2.1.1: resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 /terser-webpack-plugin@5.3.9(esbuild@0.18.20)(webpack@5.88.2): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: ">= 10.13.0"} + engines: {node: '>= 10.13.0'} peerDependencies: - "@swc/core": "*" - esbuild: "*" - uglify-js: "*" + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' webpack: ^5.1.0 peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true esbuild: optional: true uglify-js: optional: true dependencies: - "@jridgewell/trace-mapping": 0.3.19 + '@jridgewell/trace-mapping': 0.3.19 esbuild: 0.18.20 jest-worker: 27.5.1 schema-utils: 3.3.0 @@ -22905,10 +23269,10 @@ packages: /terser@5.21.0: resolution: {integrity: sha512-WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw==} - engines: {node: ">=10"} + engines: {node: '>=10'} hasBin: true dependencies: - "@jridgewell/source-map": 0.3.5 + '@jridgewell/source-map': 0.3.5 acorn: 8.10.0 commander: 2.20.3 source-map-support: 0.5.21 @@ -22916,16 +23280,16 @@ packages: /test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: - "@istanbuljs/schema": 0.1.3 + '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 dev: true /text-extensions@1.9.0: resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} - engines: {node: ">=0.10"} + engines: {node: '>=0.10'} dev: true /text-hex@1.0.0: @@ -22939,7 +23303,7 @@ packages: /thenify-all@1.6.0: resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} - engines: {node: ">=0.8"} + engines: {node: '>=0.8'} dependencies: thenify: 3.3.1 @@ -22969,7 +23333,7 @@ packages: /time-zone@1.0.0: resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /tiny-colors@2.1.2: @@ -22994,38 +23358,38 @@ packages: /tinypool@0.4.0: resolution: {integrity: sha512-2ksntHOKf893wSAH4z/+JbPpi92esw8Gn9N2deXX+B0EO92hexAVI9GIZZPx7P5aYo5KULfeOSt3kMOmSOy6uA==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dev: true /tinypool@0.5.0: resolution: {integrity: sha512-paHQtnrlS1QZYKF/GnLoOM/DN9fqaGOFbCbxzAhwniySnzl9Ebk8w73/dd34DAhe/obUbPAOldTyYXQZxnPBPQ==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dev: true /tinypool@0.7.0: resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dev: true /tinyspy@2.2.0: resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} dev: true /titleize@3.0.0: resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} /tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: ">=0.6.0"} + engines: {node: '>=0.6.0'} requiresBuild: true dependencies: os-tmpdir: 1.0.2 /tmp@0.2.1: resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} - engines: {node: ">=8.17.0"} + engines: {node: '>=8.17.0'} dependencies: rimraf: 3.0.2 dev: true @@ -23036,12 +23400,12 @@ packages: /to-fast-properties@2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: ">=8.0"} + engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 @@ -23051,7 +23415,7 @@ packages: /toidentifier@1.0.1: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: ">=0.6"} + engines: {node: '>=0.6'} /touch@3.1.0: resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} @@ -23062,7 +23426,7 @@ packages: /tough-cookie@4.1.3: resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: psl: 1.9.0 punycode: 2.3.0 @@ -23081,7 +23445,7 @@ packages: /tr46@2.1.0: resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: punycode: 2.3.0 dev: true @@ -23108,12 +23472,12 @@ packages: /trim-newlines@3.0.1: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /triple-beam@1.4.1: resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==} - engines: {node: ">= 14.0.0"} + engines: {node: '>= 14.0.0'} requiresBuild: true dev: false optional: true @@ -23124,16 +23488,16 @@ packages: /ts-api-utils@1.0.3(typescript@4.9.5): resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} - engines: {node: ">=16.13.0"} + engines: {node: '>=16.13.0'} peerDependencies: - typescript: ">=4.2.0" + typescript: '>=4.2.0' dependencies: typescript: 4.9.5 dev: true /ts-dedent@2.2.0: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} - engines: {node: ">=6.10"} + engines: {node: '>=6.10'} dev: true /ts-interface-checker@0.1.13: @@ -23144,24 +23508,24 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true peerDependencies: - "@babel/core": ">=7.0.0-beta.0 <8" - "@types/jest": ^27.0.0 - babel-jest: ">=27.0.0 <28" - esbuild: "*" + '@babel/core': '>=7.0.0-beta.0 <8' + '@types/jest': ^27.0.0 + babel-jest: '>=27.0.0 <28' + esbuild: '*' jest: ^27.0.0 - typescript: ">=3.8 <5.0" + typescript: '>=3.8 <5.0' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true - "@types/jest": + '@types/jest': optional: true babel-jest: optional: true esbuild: optional: true dependencies: - "@babel/core": 7.23.3 - "@types/jest": 27.5.2 + '@babel/core': 7.23.3 + '@types/jest': 27.5.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 27.5.1(ts-node@10.9.1) @@ -23179,26 +23543,26 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: - "@babel/core": ">=7.0.0-beta.0 <8" - "@jest/types": ^29.0.0 + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/types': ^29.0.0 babel-jest: ^29.0.0 - esbuild: "*" + esbuild: '*' jest: ^29.0.0 - typescript: ">=4.3 <6" + typescript: '>=4.3 <6' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true - "@jest/types": + '@jest/types': optional: true babel-jest: optional: true esbuild: optional: true dependencies: - "@babel/core": 7.23.3 + '@babel/core': 7.23.3 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@16.18.58)(ts-node@10.9.1) + jest: 29.7.0(@types/node@18.18.4)(ts-node@10.9.1) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -23208,57 +23572,26 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-node@10.9.1(@types/node@16.18.58)(typescript@4.9.5): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - peerDependencies: - "@swc/core": ">=1.2.50" - "@swc/wasm": ">=1.2.50" - "@types/node": "*" - typescript: ">=2.7" - peerDependenciesMeta: - "@swc/core": - optional: true - "@swc/wasm": - optional: true - dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.9 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 16.18.58 - acorn: 8.10.0 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.9.5 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - dev: true - /ts-node@10.9.1(@types/node@18.18.4)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: - "@swc/core": ">=1.2.50" - "@swc/wasm": ">=1.2.50" - "@types/node": "*" - typescript: ">=2.7" + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true - "@swc/wasm": + '@swc/wasm': optional: true dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.9 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 18.18.4 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 18.18.4 acorn: 8.10.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -23273,7 +23606,7 @@ packages: /tsconfig-paths@3.14.2: resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} dependencies: - "@types/json5": 0.0.29 + '@types/json5': 0.0.29 json5: 1.0.2 minimist: 1.2.8 strip-bom: 3.0.0 @@ -23286,14 +23619,14 @@ packages: /tsup@6.7.0(postcss@8.4.31)(typescript@5.2.2): resolution: {integrity: sha512-L3o8hGkaHnu5TdJns+mCqFsDBo83bJ44rlK7e6VdanIvpea4ArPcU3swWGsLVbXak1PqQx/V+SSmFPujBK+zEQ==} - engines: {node: ">=14.18"} + engines: {node: '>=14.18'} hasBin: true peerDependencies: - "@swc/core": ^1 + '@swc/core': ^1 postcss: ^8.4.12 - typescript: ">=4.1.0" + typescript: '>=4.1.0' peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true postcss: optional: true @@ -23323,14 +23656,14 @@ packages: /tsup@6.7.0(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-L3o8hGkaHnu5TdJns+mCqFsDBo83bJ44rlK7e6VdanIvpea4ArPcU3swWGsLVbXak1PqQx/V+SSmFPujBK+zEQ==} - engines: {node: ">=14.18"} + engines: {node: '>=14.18'} hasBin: true peerDependencies: - "@swc/core": ^1 + '@swc/core': ^1 postcss: ^8.4.12 - typescript: ">=4.1.0" + typescript: '>=4.1.0' peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true postcss: optional: true @@ -23359,14 +23692,14 @@ packages: /tsup@6.7.0(typescript@4.9.5): resolution: {integrity: sha512-L3o8hGkaHnu5TdJns+mCqFsDBo83bJ44rlK7e6VdanIvpea4ArPcU3swWGsLVbXak1PqQx/V+SSmFPujBK+zEQ==} - engines: {node: ">=14.18"} + engines: {node: '>=14.18'} hasBin: true peerDependencies: - "@swc/core": ^1 + '@swc/core': ^1 postcss: ^8.4.12 - typescript: ">=4.1.0" + typescript: '>=4.1.0' peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true postcss: optional: true @@ -23395,14 +23728,14 @@ packages: /tsup@7.2.0(postcss@8.4.31)(typescript@5.2.2): resolution: {integrity: sha512-vDHlczXbgUvY3rWvqFEbSqmC1L7woozbzngMqTtL2PGBODTtWlRwGDDawhvWzr5c1QjKe4OAKqJGfE1xeXUvtQ==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} hasBin: true peerDependencies: - "@swc/core": ^1 + '@swc/core': ^1 postcss: ^8.4.12 - typescript: ">=4.1.0" + typescript: '>=4.1.0' peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true postcss: optional: true @@ -23430,20 +23763,59 @@ packages: - ts-node dev: true + /tsup@8.0.1(typescript@5.3.3): + resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + '@microsoft/api-extractor': ^7.36.0 + '@swc/core': ^1 + postcss: ^8.4.12 + typescript: '>=4.5.0' + peerDependenciesMeta: + '@microsoft/api-extractor': + optional: true + '@swc/core': + optional: true + postcss: + optional: true + typescript: + optional: true + dependencies: + bundle-require: 4.0.2(esbuild@0.19.9) + cac: 6.7.14 + chokidar: 3.5.3 + debug: 4.3.4 + esbuild: 0.19.9 + execa: 5.1.1 + globby: 11.1.0 + joycon: 3.1.1 + postcss-load-config: 4.0.1(postcss@8.4.31) + resolve-from: 5.0.0 + rollup: 4.9.1 + source-map: 0.8.0-beta.0 + sucrase: 3.34.0 + tree-kill: 1.2.2 + typescript: 5.3.3 + transitivePeerDependencies: + - supports-color + - ts-node + dev: true + /tsutils@3.21.0(typescript@4.9.5): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 typescript: 4.9.5 /tsutils@3.21.0(typescript@5.2.2): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 typescript: 5.2.2 @@ -23463,7 +23835,7 @@ packages: resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - "@tufjs/models": 1.0.4 + '@tufjs/models': 1.0.4 debug: 4.3.4 make-fetch-happen: 11.1.1 transitivePeerDependencies: @@ -23474,7 +23846,7 @@ packages: resolution: {integrity: sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - "@tufjs/models": 2.0.0 + '@tufjs/models': 2.0.0 debug: 4.3.4 make-fetch-happen: 13.0.0 transitivePeerDependencies: @@ -23489,7 +23861,7 @@ packages: /tunnel@0.0.6: resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} - engines: {node: ">=0.6.11 <=0.7.0 || >=0.7.3"} + engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} /turbo-darwin-64@1.10.15: resolution: {integrity: sha512-Sik5uogjkRTe1XVP9TC2GryEMOJCaKE2pM/O9uLn4koQDnWKGcLQv+mDU+H+9DXvKLnJnKCD18OVRkwK5tdpoA==} @@ -23553,66 +23925,66 @@ packages: /type-check@0.4.0: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: ">= 0.8.0"} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 /type-detect@4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /type-fest@0.12.0: resolution: {integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /type-fest@0.16.0: resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /type-fest@0.18.1: resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: ">=10"} + engines: {node: '>=10'} /type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: ">=10"} + engines: {node: '>=10'} /type-fest@0.6.0: resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: ">=8"} + engines: {node: '>=8'} /type-fest@0.8.1: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: ">=8"} + engines: {node: '>=8'} /type-fest@1.4.0: resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dev: true /type-fest@2.19.0: resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: ">=12.20"} + engines: {node: '>=12.20'} dev: true /type-is@1.6.18: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: ">= 0.6"} + engines: {node: '>= 0.6'} dependencies: media-typer: 0.3.0 mime-types: 2.1.35 /typed-array-buffer@1.0.0: resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -23620,7 +23992,7 @@ packages: /typed-array-byte-length@1.0.0: resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 for-each: 0.3.3 @@ -23629,7 +24001,7 @@ packages: /typed-array-byte-offset@1.0.0: resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 @@ -23668,35 +24040,40 @@ packages: /typescript@3.9.10: resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==} - engines: {node: ">=4.2.0"} + engines: {node: '>=4.2.0'} hasBin: true dev: true /typescript@4.9.5: resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: ">=4.2.0"} + engines: {node: '>=4.2.0'} hasBin: true /typescript@5.0.4: resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} - engines: {node: ">=12.20"} + engines: {node: '>=12.20'} hasBin: true dev: true /typescript@5.1.6: resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} - engines: {node: ">=14.17"} + engines: {node: '>=14.17'} hasBin: true dev: true /typescript@5.2.2: resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} - engines: {node: ">=14.17"} + engines: {node: '>=14.17'} + hasBin: true + + /typescript@5.3.3: + resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} + engines: {node: '>=14.17'} hasBin: true - /typescript@5.4.0-dev.20231124: - resolution: {integrity: sha512-XGgnXNUfccFaEWyWZ0i/JuPNbHzutjS/vKgpz5TpEjmwFYwyQMSr06Nicv0HJBw/8WQ7m8EoKbyyXN8wdWmoVg==} - engines: {node: ">=14.17"} + /typescript@5.4.0-dev.20231219: + resolution: {integrity: sha512-pWOp0d2qj5T4llRnhb3BVkx2jN2yglMVTc96xs9dRY4I64EG/uFfyO3aoHm/1H0LAPmilJsJGDtXASxGM+GIVg==} + engines: {node: '>=14.17'} hasBin: true dev: true @@ -23709,7 +24086,7 @@ packages: /uglify-js@3.17.4: resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} - engines: {node: ">=0.8.0"} + engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true dev: true @@ -23733,19 +24110,19 @@ packages: /undici@5.25.4: resolution: {integrity: sha512-450yJxT29qKMf3aoudzFpIciqpx6Pji3hEWaXqXmanbXF58LTAGCKxcJjxMXWu3iG+Mudgo3ZUfDB6YDFd/dAw==} - engines: {node: ">=14.0"} + engines: {node: '>=14.0'} dependencies: - "@fastify/busboy": 2.0.0 + '@fastify/busboy': 2.0.0 dev: false /unicode-canonical-property-names-ecmascript@2.0.0: resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /unicode-match-property-ecmascript@2.0.0: resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: ">=4"} + engines: {node: '>=4'} dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 @@ -23753,18 +24130,18 @@ packages: /unicode-match-property-value-ecmascript@2.1.0: resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /unicode-property-aliases-ecmascript@2.1.0: resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: ">=4"} + engines: {node: '>=4'} dev: true /unified@11.0.4: resolution: {integrity: sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==} dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 bail: 2.0.2 devlop: 1.1.0 extend: 3.0.2 @@ -23787,13 +24164,13 @@ packages: /unique-string@2.0.0: resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: crypto-random-string: 2.0.0 /unique-string@3.0.0: resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: crypto-random-string: 4.0.0 dev: true @@ -23805,39 +24182,39 @@ packages: /unist-util-is@6.0.0: resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 dev: false /unist-util-position@5.0.0: resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 dev: false /unist-util-stringify-position@4.0.0: resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 dev: false /unist-util-visit-parents@3.1.1: resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is: 4.1.0 dev: true /unist-util-visit-parents@6.0.1: resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-is: 6.0.0 dev: false /unist-util-visit@2.0.3: resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 dev: true @@ -23845,7 +24222,7 @@ packages: /unist-util-visit@5.0.0: resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 dev: false @@ -23853,7 +24230,7 @@ packages: /universal-github-app-jwt@1.1.1: resolution: {integrity: sha512-G33RTLrIBMFmlDV4u4CBF7dh71eWwykck4XgaxaIVeZKOYZRAAxvcGMRFTUclVY6xoUPQvO4Ne5wKGxYm/Yy9w==} dependencies: - "@types/jsonwebtoken": 9.0.3 + '@types/jsonwebtoken': 9.0.3 jsonwebtoken: 9.0.2 dev: true @@ -23862,21 +24239,21 @@ packages: /universalify@0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: ">= 4.0.0"} + engines: {node: '>= 4.0.0'} dev: true /universalify@0.2.0: resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: ">= 4.0.0"} + engines: {node: '>= 4.0.0'} dev: true /universalify@2.0.0: resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} - engines: {node: ">= 10.0.0"} + engines: {node: '>= 10.0.0'} /unpipe@1.0.0: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} /unplugin@1.5.0: resolution: {integrity: sha512-9ZdRwbh/4gcm1JTOkp9lAkIDrtOyOxgHmY7cjuwI8L/2RTikMcVG25GsZwNAgRuap3iDw2jeq7eoqtAsz5rW3A==} @@ -23889,13 +24266,13 @@ packages: /untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: ">=8"} + engines: {node: '>=8'} /update-browserslist-db@1.0.13(browserslist@4.22.1): resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} hasBin: true peerDependencies: - browserslist: ">= 4.21.0" + browserslist: '>= 4.21.0' dependencies: browserslist: 4.22.1 escalade: 3.1.1 @@ -23904,7 +24281,7 @@ packages: /update-notifier@6.0.2: resolution: {integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==} - engines: {node: ">=14.16"} + engines: {node: '>=14.16'} dependencies: boxen: 7.1.1 chalk: 5.3.0 @@ -23940,15 +24317,15 @@ packages: /use-callback-ref@1.3.0(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@types/react": 18.2.25 + '@types/react': 18.2.25 react: 18.2.0 tslib: 2.6.2 dev: true @@ -23959,22 +24336,22 @@ packages: react: 16.8.0 - 18 react-dom: 16.8.0 - 18 dependencies: - "@juggle/resize-observer": 3.4.0 + '@juggle/resize-observer': 3.4.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true /use-sidecar@1.1.2(@types/react@18.2.25)(react@18.2.0): resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} - engines: {node: ">=10"} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.9.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true dependencies: - "@types/react": 18.2.25 + '@types/react': 18.2.25 detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.6.2 @@ -24003,14 +24380,14 @@ packages: /utility-types@3.10.0: resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==} - engines: {node: ">= 4"} + engines: {node: '>= 4'} requiresBuild: true dev: false optional: true /utils-merge@1.0.1: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: ">= 0.4.0"} + engines: {node: '>= 0.4.0'} /uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} @@ -24026,19 +24403,19 @@ packages: /v8-to-istanbul@8.1.1: resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} - engines: {node: ">=10.12.0"} + engines: {node: '>=10.12.0'} dependencies: - "@types/istanbul-lib-coverage": 2.0.4 + '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 1.9.0 source-map: 0.7.4 dev: true /v8-to-istanbul@9.1.3: resolution: {integrity: sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==} - engines: {node: ">=10.12.0"} + engines: {node: '>=10.12.0'} dependencies: - "@jridgewell/trace-mapping": 0.3.19 - "@types/istanbul-lib-coverage": 2.0.4 + '@jridgewell/trace-mapping': 0.3.19 + '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 2.0.0 dev: true @@ -24063,26 +24440,26 @@ packages: /vary@1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: ">= 0.8"} + engines: {node: '>= 0.8'} /vfile-message@4.0.2: resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-stringify-position: 4.0.0 dev: false /vfile@6.0.1: resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 dev: false /vite-node@0.30.1(@types/node@18.18.4): resolution: {integrity: sha512-vTikpU/J7e6LU/8iM3dzBo8ZhEiKZEKRznEMm+mJh95XhWaPrJQraT/QsT2NWmuEf+zgAoMe64PKT7hfZ1Njmg==} - engines: {node: ">=v14.18.0"} + engines: {node: '>=v14.18.0'} hasBin: true dependencies: cac: 6.7.14 @@ -24092,7 +24469,7 @@ packages: picocolors: 1.0.0 vite: 4.4.11(@types/node@18.18.4) transitivePeerDependencies: - - "@types/node" + - '@types/node' - less - lightningcss - sass @@ -24104,7 +24481,7 @@ packages: /vite-node@0.31.4(@types/node@18.18.4): resolution: {integrity: sha512-uzL377GjJtTbuc5KQxVbDu2xfU/x0wVjUtXQR2ihS21q/NK6ROr4oG0rsSkBBddZUVCwzfx22in76/0ZZHXgkQ==} - engines: {node: ">=v14.18.0"} + engines: {node: '>=v14.18.0'} hasBin: true dependencies: cac: 6.7.14 @@ -24114,7 +24491,7 @@ packages: picocolors: 1.0.0 vite: 4.4.11(@types/node@18.18.4) transitivePeerDependencies: - - "@types/node" + - '@types/node' - less - lightningcss - sass @@ -24126,7 +24503,7 @@ packages: /vite-node@0.32.4(@types/node@18.18.4): resolution: {integrity: sha512-L2gIw+dCxO0LK14QnUMoqSYpa9XRGnTTTDjW2h19Mr+GR0EFj4vx52W41gFXfMLqpA00eK4ZjOVYo1Xk//LFEw==} - engines: {node: ">=v14.18.0"} + engines: {node: '>=v14.18.0'} hasBin: true dependencies: cac: 6.7.14 @@ -24136,7 +24513,7 @@ packages: picocolors: 1.0.0 vite: 4.4.11(@types/node@18.18.4) transitivePeerDependencies: - - "@types/node" + - '@types/node' - less - lightningcss - sass @@ -24148,7 +24525,7 @@ packages: /vite-node@0.34.6(@types/node@18.18.4): resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==} - engines: {node: ">=v14.18.0"} + engines: {node: '>=v14.18.0'} hasBin: true dependencies: cac: 6.7.14 @@ -24158,7 +24535,7 @@ packages: picocolors: 1.0.0 vite: 4.4.11(@types/node@18.18.4) transitivePeerDependencies: - - "@types/node" + - '@types/node' - less - lightningcss - sass @@ -24173,15 +24550,15 @@ packages: engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: - "@types/node": ">= 14" - less: "*" + '@types/node': '>= 14' + less: '*' lightningcss: ^1.21.0 - sass: "*" - stylus: "*" - sugarss: "*" + sass: '*' + stylus: '*' + sugarss: '*' terser: ^5.4.0 peerDependenciesMeta: - "@types/node": + '@types/node': optional: true less: optional: true @@ -24196,7 +24573,7 @@ packages: terser: optional: true dependencies: - "@types/node": 18.18.4 + '@types/node': 18.18.4 esbuild: 0.18.20 postcss: 8.4.31 rollup: 3.29.4 @@ -24206,23 +24583,23 @@ packages: /vitest@0.30.1: resolution: {integrity: sha512-y35WTrSTlTxfMLttgQk4rHcaDkbHQwDP++SNwPb+7H8yb13Q3cu2EixrtHzF27iZ8v0XCciSsLg00RkPAzB/aA==} - engines: {node: ">=v14.18.0"} + engines: {node: '>=v14.18.0'} hasBin: true peerDependencies: - "@edge-runtime/vm": "*" - "@vitest/browser": "*" - "@vitest/ui": "*" - happy-dom: "*" - jsdom: "*" - playwright: "*" - safaridriver: "*" - webdriverio: "*" + '@edge-runtime/vm': '*' + '@vitest/browser': '*' + '@vitest/ui': '*' + happy-dom: '*' + jsdom: '*' + playwright: '*' + safaridriver: '*' + webdriverio: '*' peerDependenciesMeta: - "@edge-runtime/vm": + '@edge-runtime/vm': optional: true - "@vitest/browser": + '@vitest/browser': optional: true - "@vitest/ui": + '@vitest/ui': optional: true happy-dom: optional: true @@ -24235,14 +24612,14 @@ packages: webdriverio: optional: true dependencies: - "@types/chai": 4.3.6 - "@types/chai-subset": 1.3.3 - "@types/node": 18.18.4 - "@vitest/expect": 0.30.1 - "@vitest/runner": 0.30.1 - "@vitest/snapshot": 0.30.1 - "@vitest/spy": 0.30.1 - "@vitest/utils": 0.30.1 + '@types/chai': 4.3.6 + '@types/chai-subset': 1.3.3 + '@types/node': 18.18.4 + '@vitest/expect': 0.30.1 + '@vitest/runner': 0.30.1 + '@vitest/snapshot': 0.30.1 + '@vitest/spy': 0.30.1 + '@vitest/utils': 0.30.1 acorn: 8.10.0 acorn-walk: 8.2.0 cac: 6.7.14 @@ -24273,23 +24650,23 @@ packages: /vitest@0.31.4(happy-dom@9.20.3): resolution: {integrity: sha512-GoV0VQPmWrUFOZSg3RpQAPN+LPmHg2/gxlMNJlyxJihkz6qReHDV6b0pPDcqFLNEPya4tWJ1pgwUNP9MLmUfvQ==} - engines: {node: ">=v14.18.0"} + engines: {node: '>=v14.18.0'} hasBin: true peerDependencies: - "@edge-runtime/vm": "*" - "@vitest/browser": "*" - "@vitest/ui": "*" - happy-dom: "*" - jsdom: "*" - playwright: "*" - safaridriver: "*" - webdriverio: "*" + '@edge-runtime/vm': '*' + '@vitest/browser': '*' + '@vitest/ui': '*' + happy-dom: '*' + jsdom: '*' + playwright: '*' + safaridriver: '*' + webdriverio: '*' peerDependenciesMeta: - "@edge-runtime/vm": + '@edge-runtime/vm': optional: true - "@vitest/browser": + '@vitest/browser': optional: true - "@vitest/ui": + '@vitest/ui': optional: true happy-dom: optional: true @@ -24302,14 +24679,14 @@ packages: webdriverio: optional: true dependencies: - "@types/chai": 4.3.6 - "@types/chai-subset": 1.3.3 - "@types/node": 18.18.4 - "@vitest/expect": 0.31.4 - "@vitest/runner": 0.31.4 - "@vitest/snapshot": 0.31.4 - "@vitest/spy": 0.31.4 - "@vitest/utils": 0.31.4 + '@types/chai': 4.3.6 + '@types/chai-subset': 1.3.3 + '@types/node': 18.18.4 + '@vitest/expect': 0.31.4 + '@vitest/runner': 0.31.4 + '@vitest/snapshot': 0.31.4 + '@vitest/spy': 0.31.4 + '@vitest/utils': 0.31.4 acorn: 8.10.0 acorn-walk: 8.2.0 cac: 6.7.14 @@ -24340,23 +24717,23 @@ packages: /vitest@0.32.4: resolution: {integrity: sha512-3czFm8RnrsWwIzVDu/Ca48Y/M+qh3vOnF16czJm98Q/AN1y3B6PBsyV8Re91Ty5s7txKNjEhpgtGPcfdbh2MZg==} - engines: {node: ">=v14.18.0"} + engines: {node: '>=v14.18.0'} hasBin: true peerDependencies: - "@edge-runtime/vm": "*" - "@vitest/browser": "*" - "@vitest/ui": "*" - happy-dom: "*" - jsdom: "*" - playwright: "*" - safaridriver: "*" - webdriverio: "*" + '@edge-runtime/vm': '*' + '@vitest/browser': '*' + '@vitest/ui': '*' + happy-dom: '*' + jsdom: '*' + playwright: '*' + safaridriver: '*' + webdriverio: '*' peerDependenciesMeta: - "@edge-runtime/vm": + '@edge-runtime/vm': optional: true - "@vitest/browser": + '@vitest/browser': optional: true - "@vitest/ui": + '@vitest/ui': optional: true happy-dom: optional: true @@ -24369,14 +24746,14 @@ packages: webdriverio: optional: true dependencies: - "@types/chai": 4.3.6 - "@types/chai-subset": 1.3.3 - "@types/node": 18.18.4 - "@vitest/expect": 0.32.4 - "@vitest/runner": 0.32.4 - "@vitest/snapshot": 0.32.4 - "@vitest/spy": 0.32.4 - "@vitest/utils": 0.32.4 + '@types/chai': 4.3.6 + '@types/chai-subset': 1.3.3 + '@types/node': 18.18.4 + '@vitest/expect': 0.32.4 + '@vitest/runner': 0.32.4 + '@vitest/snapshot': 0.32.4 + '@vitest/spy': 0.32.4 + '@vitest/utils': 0.32.4 acorn: 8.10.0 acorn-walk: 8.2.0 cac: 6.7.14 @@ -24405,23 +24782,23 @@ packages: /vitest@0.34.6: resolution: {integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==} - engines: {node: ">=v14.18.0"} + engines: {node: '>=v14.18.0'} hasBin: true peerDependencies: - "@edge-runtime/vm": "*" - "@vitest/browser": "*" - "@vitest/ui": "*" - happy-dom: "*" - jsdom: "*" - playwright: "*" - safaridriver: "*" - webdriverio: "*" + '@edge-runtime/vm': '*' + '@vitest/browser': '*' + '@vitest/ui': '*' + happy-dom: '*' + jsdom: '*' + playwright: '*' + safaridriver: '*' + webdriverio: '*' peerDependenciesMeta: - "@edge-runtime/vm": + '@edge-runtime/vm': optional: true - "@vitest/browser": + '@vitest/browser': optional: true - "@vitest/ui": + '@vitest/ui': optional: true happy-dom: optional: true @@ -24434,14 +24811,14 @@ packages: webdriverio: optional: true dependencies: - "@types/chai": 4.3.6 - "@types/chai-subset": 1.3.3 - "@types/node": 18.18.4 - "@vitest/expect": 0.34.6 - "@vitest/runner": 0.34.6 - "@vitest/snapshot": 0.34.6 - "@vitest/spy": 0.34.6 - "@vitest/utils": 0.34.6 + '@types/chai': 4.3.6 + '@types/chai-subset': 1.3.3 + '@types/node': 18.18.4 + '@vitest/expect': 0.34.6 + '@vitest/runner': 0.34.6 + '@vitest/snapshot': 0.34.6 + '@vitest/spy': 0.34.6 + '@vitest/utils': 0.34.6 acorn: 8.10.0 acorn-walk: 8.2.0 cac: 6.7.14 @@ -24470,7 +24847,7 @@ packages: /vscode-jsonrpc@8.1.0: resolution: {integrity: sha512-6TDy/abTQk+zDGYazgbIPc+4JoXdwC8NHU9Pbn4UJP1fehUyZmM4RHp5IthX7A6L5KS30PRui+j+tbbMMMafdw==} - engines: {node: ">=14.0.0"} + engines: {node: '>=14.0.0'} /vscode-languageclient@8.1.0: resolution: {integrity: sha512-GL4QdbYUF/XxQlAsvYWZRV3V34kOkpRlvV60/72ghHfsYFnS/v2MANZ9P6sHmxFcZKOse8O+L9G7Czg0NUWing==} @@ -24506,7 +24883,7 @@ packages: /w3c-xmlserializer@2.0.0: resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: xml-name-validator: 3.0.0 dev: true @@ -24532,8 +24909,8 @@ packages: hasBin: true requiresBuild: true dependencies: - "@cowasm/memfs": 3.5.1 - "@wapython/unionfs": 4.5.7 + '@cowasm/memfs': 3.5.1 + '@wapython/unionfs': 4.5.7 debug: 4.3.4 fflate: 0.7.4 path-browserify: 1.0.1 @@ -24546,7 +24923,7 @@ packages: /watchpack@2.4.0: resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: ">=10.13.0"} + engines: {node: '>=10.13.0'} dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 @@ -24559,7 +24936,7 @@ packages: /web-streams-polyfill@3.2.1: resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} dev: true /webidl-conversions@3.0.1: @@ -24571,22 +24948,22 @@ packages: /webidl-conversions@5.0.0: resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dev: true /webidl-conversions@6.1.0: resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} - engines: {node: ">=10.4"} + engines: {node: '>=10.4'} dev: true /webidl-conversions@7.0.0: resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: true /webpack-sources@3.2.3: resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: ">=10.13.0"} + engines: {node: '>=10.13.0'} dev: true /webpack-virtual-modules@0.5.0: @@ -24595,19 +24972,19 @@ packages: /webpack@5.88.2(esbuild@0.18.20): resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} - engines: {node: ">=10.13.0"} + engines: {node: '>=10.13.0'} hasBin: true peerDependencies: - webpack-cli: "*" + webpack-cli: '*' peerDependenciesMeta: webpack-cli: optional: true dependencies: - "@types/eslint-scope": 3.7.5 - "@types/estree": 1.0.2 - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/wasm-edit": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 + '@types/eslint-scope': 3.7.5 + '@types/estree': 1.0.2 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/wasm-edit': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 acorn: 8.10.0 acorn-import-assertions: 1.9.0(acorn@8.10.0) browserslist: 4.22.1 @@ -24628,14 +25005,14 @@ packages: watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - uglify-js dev: true /well-known-symbols@2.0.0: resolution: {integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /whatwg-encoding@1.0.5: @@ -24646,7 +25023,7 @@ packages: /whatwg-encoding@2.0.0: resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: iconv-lite: 0.6.3 dev: true @@ -24657,7 +25034,7 @@ packages: /whatwg-mimetype@3.0.0: resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: true /whatwg-url@5.0.0: @@ -24676,7 +25053,7 @@ packages: /whatwg-url@8.7.0: resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: lodash: 4.17.21 tr46: 2.1.0 @@ -24697,7 +25074,7 @@ packages: /which-builtin-type@1.1.3: resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: function.prototype.name: 1.1.6 has-tostringtag: 1.0.0 @@ -24727,7 +25104,7 @@ packages: /which-typed-array@1.1.11: resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==} - engines: {node: ">= 0.4"} + engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 @@ -24744,7 +25121,7 @@ packages: /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: ">= 8"} + engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 @@ -24765,7 +25142,7 @@ packages: /why-is-node-running@2.2.2: resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==} - engines: {node: ">=8"} + engines: {node: '>=8'} hasBin: true dependencies: siginfo: 2.0.0 @@ -24779,20 +25156,20 @@ packages: /widest-line@3.1.0: resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: string-width: 4.2.3 /widest-line@4.0.1: resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: string-width: 5.1.2 dev: true /winston-transport@4.5.0: resolution: {integrity: sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==} - engines: {node: ">= 6.4.0"} + engines: {node: '>= 6.4.0'} requiresBuild: true dependencies: logform: 2.5.1 @@ -24803,11 +25180,11 @@ packages: /winston@3.11.0: resolution: {integrity: sha512-L3yR6/MzZAOl0DsysUXHVjOwv8mKZ71TrA/41EIduGpOOV5LQVodqN+QdQ6BS6PJ/RdIshZhq84P/fStEZkk7g==} - engines: {node: ">= 12.0.0"} + engines: {node: '>= 12.0.0'} requiresBuild: true dependencies: - "@colors/colors": 1.6.0 - "@dabh/diagnostics": 2.0.3 + '@colors/colors': 1.6.0 + '@dabh/diagnostics': 2.0.3 async: 3.2.4 is-stream: 2.0.1 logform: 2.5.1 @@ -24830,7 +25207,7 @@ packages: /wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 @@ -24838,7 +25215,7 @@ packages: /wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 @@ -24846,7 +25223,7 @@ packages: /wrap-ansi@8.1.0: resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 @@ -24890,7 +25267,7 @@ packages: /write-yaml-file@5.0.0: resolution: {integrity: sha512-FdNA4RyH1L43TlvGG8qOMIfcEczwA5ij+zLXUy3Z83CjxhLvcV7/Q/8pk22wnCgYw7PJhtK+7lhO+qqyT4NdvQ==} - engines: {node: ">=16.14"} + engines: {node: '>=16.14'} dependencies: js-yaml: 4.1.0 write-file-atomic: 5.0.1 @@ -24912,7 +25289,7 @@ packages: /ws@7.5.9: resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} - engines: {node: ">=8.3.0"} + engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -24925,10 +25302,10 @@ packages: /ws@8.14.2: resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==} - engines: {node: ">=10.0.0"} + engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: ">=5.0.2" + utf-8-validate: '>=5.0.2' peerDependenciesMeta: bufferutil: optional: true @@ -24938,7 +25315,7 @@ packages: /xdg-basedir@5.1.0: resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} - engines: {node: ">=12"} + engines: {node: '>=12'} dev: true /xml-js@1.6.11: @@ -24954,7 +25331,7 @@ packages: /xml2js@0.5.0: resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} - engines: {node: ">=4.0.0"} + engines: {node: '>=4.0.0'} dependencies: sax: 1.3.0 xmlbuilder: 11.0.1 @@ -24965,20 +25342,20 @@ packages: /xmlbuilder2@3.1.1: resolution: {integrity: sha512-WCSfbfZnQDdLQLiMdGUQpMxxckeQ4oZNMNhLVkcekTu7xhD4tuUDyAPoY8CwXvBYE6LwBHd6QW2WZXlOWr1vCw==} - engines: {node: ">=12.0"} + engines: {node: '>=12.0'} dependencies: - "@oozcitak/dom": 1.15.10 - "@oozcitak/infra": 1.0.8 - "@oozcitak/util": 8.3.8 + '@oozcitak/dom': 1.15.10 + '@oozcitak/infra': 1.0.8 + '@oozcitak/util': 8.3.8 js-yaml: 3.14.1 /xmlbuilder@11.0.1: resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} - engines: {node: ">=4.0"} + engines: {node: '>=4.0'} /xmlbuilder@15.1.1: resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==} - engines: {node: ">=8.0"} + engines: {node: '>=8.0'} dev: true /xmlchars@2.2.0: @@ -24991,7 +25368,7 @@ packages: /xtend@4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: ">=0.4"} + engines: {node: '>=0.4'} dev: true /y18n@4.0.3: @@ -25000,7 +25377,7 @@ packages: /y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: ">=10"} + engines: {node: '>=10'} /yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} @@ -25011,15 +25388,15 @@ packages: /yaml@1.10.2: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: ">= 6"} + engines: {node: '>= 6'} /yaml@2.3.2: resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==} - engines: {node: ">= 14"} + engines: {node: '>= 14'} /yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: ">=6"} + engines: {node: '>=6'} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 @@ -25027,15 +25404,15 @@ packages: /yargs-parser@20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: ">=10"} + engines: {node: '>=10'} /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: ">=12"} + engines: {node: '>=12'} /yargs@15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -25052,7 +25429,7 @@ packages: /yargs@16.2.0: resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: ">=10"} + engines: {node: '>=10'} dependencies: cliui: 7.0.4 escalade: 3.1.1 @@ -25064,7 +25441,7 @@ packages: /yargs@17.7.2: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: ">=12"} + engines: {node: '>=12'} dependencies: cliui: 8.0.1 escalade: 3.1.1 @@ -25089,28 +25466,28 @@ packages: /yn@3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: ">=6"} + engines: {node: '>=6'} dev: true /yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: ">=10"} + engines: {node: '>=10'} /yocto-queue@1.0.0: resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: ">=12.20"} + engines: {node: '>=12.20'} dev: true /yoga-layout-prebuilt@1.10.0: resolution: {integrity: sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==} - engines: {node: ">=8"} + engines: {node: '>=8'} dependencies: - "@types/yoga-layout": 1.9.2 + '@types/yoga-layout': 1.9.2 dev: true /zip-stream@4.1.1: resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==} - engines: {node: ">= 10"} + engines: {node: '>= 10'} dependencies: archiver-utils: 3.0.4 compress-commons: 4.1.2 diff --git a/tools/generate-workspace/package.json b/tools/generate-workspace/package.json index 78725c35fc9..1abf535bd76 100644 --- a/tools/generate-workspace/package.json +++ b/tools/generate-workspace/package.json @@ -14,7 +14,7 @@ "scripts": {}, "devDependencies": { "@types/fs-extra": "^11", - "@types/node": "^18.16.18", + "@types/node": "^18.17.13", "@types/semver": "^7.5.0", "typescript": "^5.1.3" }, diff --git a/tools/generate-workspace/src/cli.ts b/tools/generate-workspace/src/cli.ts index 251383d5004..e7f8ab2b958 100644 --- a/tools/generate-workspace/src/cli.ts +++ b/tools/generate-workspace/src/cli.ts @@ -5,38 +5,42 @@ import { join } from "path"; // Define ignore list and name mapping const ignoreList = [ - "construct-library", - "@wingconsole/eslint-plugin", - "generate-workspace", - "bump-pack", - "@winglang/wingii", - "@winglang/wingc", - "@winglang/tree-sitter-wing", + "@wingconsole/design-system", "@wingconsole/error-message", - "@wingconsole/use-loading", + "@wingconsole/eslint-plugin", "@wingconsole/tsconfig", - "hangar", - "@wingconsole/design-system", + "@wingconsole/use-loading", "@wingconsole/use-persistent-state", + "@winglang/platform-awscdk", + "@winglang/tree-sitter-wing", + "@winglang/wingc", + "@winglang/wingii", "@winglibs/testfixture", + "bump-pack", + "construct-library", + "generate-workspace", + "hangar", + "jsii-fixture", + "ts-fixture", + "ts4w", ]; const nameMapping: Record = { - "@winglang/monorepo": "ROOT", - "winglang": "CLI", - "@winglang/compiler": "Compiler", - "@winglang/sdk": "SDK", - "examples-sdk": "SDK Tests", - "docs": "Docs", "@wingconsole/app": "Console App", "@wingconsole/server": "Console Server", "@wingconsole/ui": "Console UI", - "vscode-wing": "VSCode", + "@winglang/compiler": "Compiler", "@winglang/jsii-docgen": "API Docs Generator", - "wing-api-checker": "API Checker", - "examples-valid": "Tests: Valid", - "examples-invalid": "Tests: Invalid", + "@winglang/monorepo": "ROOT", + "@winglang/sdk": "SDK", + docs: "Docs", "examples-error": "Tests: Error", + "examples-invalid": "Tests: Invalid", + "examples-sdk": "SDK Tests", + "examples-valid": "Tests: Valid", + "vscode-wing": "VSCode", + "wing-api-checker": "API Checker", + winglang: "CLI", }; async function getWorkspaceDir() { @@ -70,32 +74,46 @@ function getFolders(workspacePackages: any[], workspaceDir: string) { } function sortFolders(folders: any[]) { - let sortedFolders = Object.keys(nameMapping).map(key => { - return folders.find(folder => folder.name === key || folder.name === nameMapping[key]); - }).filter(Boolean); + let sortedFolders = Object.keys(nameMapping) + .map((key) => { + return folders.find( + (folder) => folder.name === key || folder.name === nameMapping[key] + ); + }) + .filter(Boolean); return sortedFolders; } function warnAboutPackages(workspacePackages: any[]) { - workspacePackages.forEach(pkg => { + workspacePackages.forEach((pkg) => { const pkgName = pkg.manifest.name; - if (pkgName && (!ignoreList.includes(pkgName) && !Object.keys(nameMapping).includes(pkgName))) { - console.warn(`Warning: Package ${pkgName} is not present in ignore list or name mappings. Please check ./tools/generate-workspace/src/cli.ts`); + if ( + pkgName && + !ignoreList.includes(pkgName) && + !Object.keys(nameMapping).includes(pkgName) + ) { + console.warn( + `Warning: Package ${pkgName} is not present in ignore list or name mappings. Please check ./tools/generate-workspace/src/cli.ts` + ); } }); } function checkIgnoreListAndNameMapping(workspacePackages: any[]) { - ignoreList.forEach(ignoreItem => { - if (!workspacePackages.some(pkg => pkg.manifest.name === ignoreItem)) { - console.error(`Error: ${ignoreItem} from ignore list is not present as a workspace package. Please check ./tools/generate-workspace/src/cli.ts`); + ignoreList.forEach((ignoreItem) => { + if (!workspacePackages.some((pkg) => pkg.manifest.name === ignoreItem)) { + console.error( + `Error: ${ignoreItem} from ignore list is not present as a workspace package. Please check ./tools/generate-workspace/src/cli.ts` + ); process.exit(1); } }); - Object.keys(nameMapping).forEach(mappingItem => { - if (!workspacePackages.some(pkg => pkg.manifest.name === mappingItem)) { - console.error(`Error: ${mappingItem} from name mapping is not present as a workspace package. Please check ./tools/generate-workspace/src/cli.ts`); + Object.keys(nameMapping).forEach((mappingItem) => { + if (!workspacePackages.some((pkg) => pkg.manifest.name === mappingItem)) { + console.error( + `Error: ${mappingItem} from name mapping is not present as a workspace package. Please check ./tools/generate-workspace/src/cli.ts` + ); process.exit(1); } }); @@ -103,7 +121,10 @@ function checkIgnoreListAndNameMapping(workspacePackages: any[]) { function writeWorkspaceFile(workspaceDir: string, sortedFolders: any[]) { const workspaceFilePath = join(workspaceDir, "wing.code-workspace"); - writeFileSync(workspaceFilePath, JSON.stringify({ folders: sortedFolders, settings: {}}, null, 2)); + writeFileSync( + workspaceFilePath, + JSON.stringify({ folders: sortedFolders, settings: {} }, null, 2) + ); console.log(`Workspace file written to ${workspaceFilePath}`); } diff --git a/tools/hangar/__snapshots__/test_corpus/sdk_tests/bucket/signed_url.test.w_test_sim.md b/tools/hangar/__snapshots__/test_corpus/sdk_tests/bucket/signed_url.test.w_test_sim.md index 58c3a8983d5..19a6862d75d 100644 --- a/tools/hangar/__snapshots__/test_corpus/sdk_tests/bucket/signed_url.test.w_test_sim.md +++ b/tools/hangar/__snapshots__/test_corpus/sdk_tests/bucket/signed_url.test.w_test_sim.md @@ -11,7 +11,6 @@ It might not be implemented yet. 7 | test "signedUrl" { | ^ at _registerOnLift (:LINE:COL) -at (:LINE:COL) Tests 1 unsupported (1) diff --git a/tools/hangar/package.json b/tools/hangar/package.json index 33a16375061..95f5d5d32f1 100644 --- a/tools/hangar/package.json +++ b/tools/hangar/package.json @@ -18,6 +18,7 @@ "@winglang/compiler": "workspace:^", "@winglang/sdk": "workspace:^", "@winglang/platform-awscdk": "workspace:^", + "ts4w": "workspace:^", "cdktf": "^0.17.3", "execa": "^7.2.0", "fflate": "^0.8.1", diff --git a/tools/hangar/src/package.setup.ts b/tools/hangar/src/package.setup.ts index 76b8f757486..e29eb29e820 100644 --- a/tools/hangar/src/package.setup.ts +++ b/tools/hangar/src/package.setup.ts @@ -48,6 +48,7 @@ const getInstallArgs = async () => { "file:../../../apps/wing", "file:../../../libs/wingsdk", "file:../../../libs/awscdk", + "file:../../../libs/ts4w", ]; }; diff --git a/tools/hangar/src/paths.ts b/tools/hangar/src/paths.ts index c66a728e018..62fa9e1208c 100644 --- a/tools/hangar/src/paths.ts +++ b/tools/hangar/src/paths.ts @@ -2,7 +2,8 @@ import * as path from "path"; import * as fs from "fs"; export const repoRoot = path.resolve(__dirname, "../../.."); -export const testDir = path.join(repoRoot, "examples/tests"); +export const examplesDir = path.join(repoRoot, "examples"); +export const testDir = path.join(examplesDir, "tests"); export const validTestDir = path.join(testDir, "valid"); export const sdkTestsDir = path.join(testDir, "sdk_tests"); export const platformsDir = path.join(validTestDir, "platforms"); @@ -10,13 +11,14 @@ export const sdkTests = path.join(testDir, "sdk_tests"); export const invalidTestDir = path.join(testDir, "invalid"); export const benchmarksTestDir = path.join(validTestDir, "benchmarks"); export const errorTestDir = path.join(testDir, "error"); -export const hangarDir = path.join(repoRoot, "tools/hangar"); +export const hangarDir = path.join(repoRoot, "tools", "hangar"); export const tmpDir = path.join(hangarDir, "tmp"); export const npmCacheDir = path.join(tmpDir, ".npm"); -export const wingSdkDir = path.join(tmpDir, "node_modules/@winglang/sdk"); +export const tmpNodeModulesDir = path.join(tmpDir, "node_modules"); +export const wingSdkDir = path.join(tmpNodeModulesDir, "@winglang/sdk"); export const npmBin = path.join(hangarDir, "node_modules/.bin/npm"); -export const wingBin = path.join(tmpDir, "node_modules/.bin/wing"); +export const wingBin = path.join(tmpNodeModulesDir, ".bin/wing"); export const snapshotDir = path.join(hangarDir, "__snapshots__"); diff --git a/tools/hangar/src/typescript/ts4wing.test.ts b/tools/hangar/src/typescript/ts4wing.test.ts new file mode 100644 index 00000000000..6544f019e41 --- /dev/null +++ b/tools/hangar/src/typescript/ts4wing.test.ts @@ -0,0 +1,39 @@ +import { describe, test } from "vitest"; +import * as path from "path"; +import { tmpDir, examplesDir, tmpNodeModulesDir } from "../paths"; +import { runWingCommand } from "../utils"; +import { cp, symlink } from "fs/promises" + +describe("ts-fixture", async () => { + const originalFixtureDir = path.join(examplesDir, "ts-fixture"); + const newFixtureDir = path.join(tmpDir, "ts-fixture"); + + // make a temp copy of ts-fixture in tmpDir, excluding node_modules + await cp(originalFixtureDir, newFixtureDir, { + recursive: true, + filter: (src) => !src.endsWith("node_modules") + }); + + // symlink the tmp node_modules to tmpNodeModulesDir (ensures we have the same node_modules as the rest of the tests) + await symlink(tmpNodeModulesDir, path.join(newFixtureDir, "node_modules"), "dir"); + + const tsFile = path.join(newFixtureDir, "src", "main.ts"); + + test("compile", async () => { + await runWingCommand({ + cwd: tmpDir, + wingFile: tsFile, + args: ["compile"], + expectFailure: false, + }); + }); + + test("test", async () => { + await runWingCommand({ + cwd: tmpDir, + wingFile: tsFile, + args: ["test"], + expectFailure: false, + }); + }); +}); diff --git a/wing.code-workspace b/wing.code-workspace index 1bedc45849d..be41fa934e2 100644 --- a/wing.code-workspace +++ b/wing.code-workspace @@ -1,64 +1,64 @@ { "folders": [ { - "name": "ROOT", - "path": "./" + "name": "Console App", + "path": "./apps/wing-console/console/app" }, { - "name": "CLI", - "path": "./apps/wing" + "name": "Console Server", + "path": "./apps/wing-console/console/server" + }, + { + "name": "Console UI", + "path": "./apps/wing-console/console/ui" }, { "name": "Compiler", "path": "./libs/wingcompiler" }, { - "name": "SDK", - "path": "./libs/wingsdk" + "name": "API Docs Generator", + "path": "./apps/jsii-docgen" }, { - "name": "SDK Tests", - "path": "./examples/tests/sdk_tests" + "name": "ROOT", + "path": "./" + }, + { + "name": "SDK", + "path": "./libs/wingsdk" }, { "name": "Docs", "path": "./docs/docs" }, { - "name": "Console App", - "path": "./apps/wing-console/console/app" + "name": "Tests: Error", + "path": "./examples/tests/error" }, { - "name": "Console Server", - "path": "./apps/wing-console/console/server" + "name": "Tests: Invalid", + "path": "./examples/tests/invalid" }, { - "name": "Console UI", - "path": "./apps/wing-console/console/ui" + "name": "SDK Tests", + "path": "./examples/tests/sdk_tests" }, { - "name": "VSCode", - "path": "./apps/vscode-wing" + "name": "Tests: Valid", + "path": "./examples/tests/valid" }, { - "name": "API Docs Generator", - "path": "./apps/jsii-docgen" + "name": "VSCode", + "path": "./apps/vscode-wing" }, { "name": "API Checker", "path": "./apps/wing-api-checker" }, { - "name": "Tests: Valid", - "path": "./examples/tests/valid" - }, - { - "name": "Tests: Invalid", - "path": "./examples/tests/invalid" - }, - { - "name": "Tests: Error", - "path": "./examples/tests/error" + "name": "CLI", + "path": "./apps/wing" } ], "settings": {}