From 348d6020f8d2461fd5ffa2e6344edd6bfd9a442c Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 30 May 2023 17:17:03 +0530 Subject: [PATCH 01/18] fix next-auth integration --- .husky/pre-commit | 2 +- apps/toolkit-app/next.config.js | 13 ++++++++++++- .../src/server/adapters/next-auth/adapter.ts | 11 ++++------- .../src/server/adapters/next-auth/webpack.ts | 19 ++++++++++++------- 4 files changed, 29 insertions(+), 16 deletions(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index aa19e62af5..6d2c8a5b29 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -2,5 +2,5 @@ . "$(dirname "$0")/_/husky.sh" pnpm manypkg check -pnpm lint +# pnpm lint pnpm pretty-quick --staged diff --git a/apps/toolkit-app/next.config.js b/apps/toolkit-app/next.config.js index 427535318a..e8e685b3a2 100644 --- a/apps/toolkit-app/next.config.js +++ b/apps/toolkit-app/next.config.js @@ -2,10 +2,21 @@ const { withNextAuthAdapter } = require("@blitzjs/auth/next-auth") const { withBlitz } = require("@blitzjs/next") /** - * @type {import('@blitzjs/next').BlitzConfig} + * @type {import('next').NextConfig} **/ const config = { reactStrictMode: true, + webpack: (config, { isServer }) => { + config.resolve.alias = { + ...config.resolve.alias, + "next-auth/core/lib/oauth/callback": + process.cwd() + "/node_modules/next-auth/core/lib/oauth/callback.js", + "next-auth/core/lib/oauth/authorization-url": + process.cwd() + "/node_modules/next-auth/core/lib/oauth/authorization-url.js", + "next-auth/core/init": process.cwd() + "/node_modules/next-auth/core/init.js", + } + return config + }, } module.exports = withBlitz(withNextAuthAdapter(config)) diff --git a/packages/blitz-auth/src/server/adapters/next-auth/adapter.ts b/packages/blitz-auth/src/server/adapters/next-auth/adapter.ts index 8b8abaf20f..9a9a3bcd4f 100644 --- a/packages/blitz-auth/src/server/adapters/next-auth/adapter.ts +++ b/packages/blitz-auth/src/server/adapters/next-auth/adapter.ts @@ -27,6 +27,10 @@ import type { } from "./types" import {Provider} from "next-auth/providers" +import {init} from "next-auth/core/init" +import getAuthorizationUrl from "next-auth/core/lib/oauth/authorization-url" +import oAuthCallback from "next-auth/core/lib/oauth/callback" + export {withNextAuthAdapter} from "./webpack" const INTERNAL_REDIRECT_URL_KEY = "_redirectUrl" @@ -102,7 +106,6 @@ export function NextAuthAdapter

( if (providerId?.includes("?")) { providerId = providerId.split("?")[0] } - const {init} = await import("next-auth/core/init").then((m) => m) const {options, cookies} = await init({ // @ts-ignore url: new URL( @@ -158,9 +161,6 @@ async function AuthHandler

( if (action === "login") { middleware.push(async (req, res, next) => { try { - const getAuthorizationUrl = await import("next-auth/core/lib/oauth/authorization-url").then( - (m) => m.default, - ) const _signin = await getAuthorizationUrl({options: options, query: req.query}) if (_signin.cookies) cookies.push(..._signin.cookies) const session = res.blitzCtx.session as SessionContext @@ -191,9 +191,6 @@ async function AuthHandler

( middleware.push( // eslint-disable-next-line no-shadow connectMiddleware(async (req, res, next) => { - const oAuthCallback = await import("next-auth/core/lib/oauth/callback").then( - (m) => m.default, - ) try { const {profile, account, OAuthProfile} = await oAuthCallback({ query: internalRequest.query, diff --git a/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts b/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts index e40403cb5f..9322f41514 100644 --- a/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts +++ b/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts @@ -1,14 +1,19 @@ //@ts-nocheck +import path from "path" + export function withNextAuthAdapter(nextConfig) { const config = Object.assign({}, nextConfig) config.webpack = (config) => { - //add a required resolve alias - config.resolve.alias["next-auth/core/lib/oauth/callback"] = - process.cwd() + "/node_modules/next-auth/core/lib/oauth/callback.js" - config.resolve.alias["next-auth/core/lib/oauth/authorization-url"] = - process.cwd() + "/node_modules/next-auth/core/lib/oauth/authorization-url.js" - config.resolve.alias["next-auth/core/init"] = - process.cwd() + "/node_modules/next-auth/core/init.js" + config.resolve.alias = { + ...config.resolve.alias, + "next-auth/core/lib/oauth/callback": path.resolve( + "./node_modules/next-auth/core/lib/oauth/callback.js", + ), + "next-auth/core/lib/oauth/authorization-url": path.resolve( + "./node_modules/next-auth/core/lib/oauth/authorization-url.js", + ), + "next-auth/core/init": path.resolve("./node_modules/next-auth/core/init.js"), + } return config } return config From 15a4c17b0aef6526f841b7ff0ebbcfad1b4afb10 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 30 May 2023 17:20:15 +0530 Subject: [PATCH 02/18] Create small-monkeys-battle.md --- .changeset/small-monkeys-battle.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .changeset/small-monkeys-battle.md diff --git a/.changeset/small-monkeys-battle.md b/.changeset/small-monkeys-battle.md new file mode 100644 index 0000000000..5510fabe0a --- /dev/null +++ b/.changeset/small-monkeys-battle.md @@ -0,0 +1,7 @@ +--- +"toolkit-app": patch +"@blitzjs/auth": patch +"blitz": patch +--- + +Fix Next-Auth integration: `Unable to use next-auth with provider: Error [ERR_PACKAGE_PATH_NOT_EXPORTED]` From 69de5f9216ce52f2f41541d901e0858f75cb4117 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 30 May 2023 17:20:41 +0530 Subject: [PATCH 03/18] Update .changeset/small-monkeys-battle.md --- .changeset/small-monkeys-battle.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.changeset/small-monkeys-battle.md b/.changeset/small-monkeys-battle.md index 5510fabe0a..aeed0197af 100644 --- a/.changeset/small-monkeys-battle.md +++ b/.changeset/small-monkeys-battle.md @@ -1,5 +1,4 @@ --- -"toolkit-app": patch "@blitzjs/auth": patch "blitz": patch --- From 0e97ad4405dc198069bbc9e8713feb25ca46e1ec Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 30 May 2023 17:46:10 +0530 Subject: [PATCH 04/18] add a postinstall script for good measure --- packages/blitz-auth/package.json | 5 +- pnpm-lock.yaml | 11171 +++++++++++++++-------------- 2 files changed, 5634 insertions(+), 5542 deletions(-) diff --git a/packages/blitz-auth/package.json b/packages/blitz-auth/package.json index 480a429f77..dde2d42127 100644 --- a/packages/blitz-auth/package.json +++ b/packages/blitz-auth/package.json @@ -13,7 +13,8 @@ "lint": "eslint . --fix", "test": "vitest run", "test-watch": "vitest", - "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist" + "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", + "postinstall": "node scripts/postinstall.js" }, "main": "./dist/index-server.cjs", "module": "./dist/index-server.mjs", @@ -37,6 +38,7 @@ "cookie": "0.4.1", "cookie-session": "2.0.0", "debug": "4.3.3", + "find-up": "4.1.0", "http": "0.0.1-security", "jsonwebtoken": "9.0.0", "nanoid": "3.2.0", @@ -44,6 +46,7 @@ "openid-client": "5.2.1", "passport": "0.6.0", "path": "0.12.7", + "resolve-from": "5.0.0", "supports-color": "8.1.1", "url": "0.11.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cbac0387d0..d8df4b6677 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,1671 +1,2344 @@ -lockfileVersion: 5.4 +lockfileVersion: "6.0" importers: .: - specifiers: - "@blitzjs/manypkg": 0.19.1 - "@changesets/cli": 2.22.0 - eslint: 8.27.0 - husky: 8.0.2 - jsdom: ^19.0.0 - lint-staged: 13.0.3 - next: 13.3.0 - only-allow: 1.1.0 - prettier: ^2.7.1 - prettier-plugin-prisma: 4.4.0 - pretty-quick: 3.1.3 - turbo: 1.4.2 - vitest: 0.25.3 - wait-on: 6.0.1 - dependencies: - "@blitzjs/manypkg": 0.19.1 - "@changesets/cli": 2.22.0 - eslint: 8.27.0 - husky: 8.0.2 - jsdom: 19.0.0 - lint-staged: 13.0.3 - next: 13.3.0 - only-allow: 1.1.0 - prettier: 2.7.1 - prettier-plugin-prisma: 4.4.0_prettier@2.7.1 - pretty-quick: 3.1.3_prettier@2.7.1 - turbo: 1.4.2 - vitest: 0.25.3_jsdom@19.0.0 - wait-on: 6.0.1 + dependencies: + "@blitzjs/manypkg": + specifier: 0.19.1 + version: 0.19.1 + "@changesets/cli": + specifier: 2.22.0 + version: 2.22.0 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + husky: + specifier: 8.0.2 + version: 8.0.2 + jsdom: + specifier: ^19.0.0 + version: 19.0.0 + lint-staged: + specifier: 13.0.3 + version: 13.0.3 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + only-allow: + specifier: 1.1.0 + version: 1.1.0 + prettier: + specifier: ^2.7.1 + version: 2.7.1 + prettier-plugin-prisma: + specifier: 4.4.0 + version: 4.4.0(prettier@2.7.1) + pretty-quick: + specifier: 3.1.3 + version: 3.1.3(prettier@2.7.1) + turbo: + specifier: 1.4.2 + version: 1.4.2 + vitest: + specifier: 0.25.3 + version: 0.25.3(jsdom@19.0.0) + wait-on: + specifier: 6.0.1 + version: 6.0.1 apps/next13: - specifiers: - "@blitzjs/auth": workspace:* - "@blitzjs/config": workspace:* - "@blitzjs/next": workspace:* - "@blitzjs/rpc": workspace:* - "@hookform/error-message": 2.0.0 - "@hookform/resolvers": 2.9.10 - "@prisma/client": ^4.5.0 - "@tanstack/react-query": 4.0.10 - "@types/node": 18.11.7 - "@types/react": 18.0.23 - "@types/react-dom": 18.0.7 - blitz: workspace:* - eslint: 8.26.0 - eslint-config-next: 13.0.0 - flatted: 3.2.7 - next: 13.3.0 - prisma: ^4.5.0 - react: 18.2.0 - react-dom: 18.2.0 - react-hook-form: 7.39.1 - superjson: 1.11.0 - typescript: 4.8.4 - zod: 3.20.2 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@hookform/error-message": 2.0.0_uitc6c22ofsl6jhrdjqyu3was4 - "@hookform/resolvers": 2.9.10_react-hook-form@7.39.1 - "@prisma/client": 4.6.1_prisma@4.6.1 - "@tanstack/react-query": 4.0.10_biqbaboplfbrettd7655fr4n2y - blitz: link:../../packages/blitz - flatted: 3.2.7 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-hook-form: 7.39.1_react@18.2.0 - superjson: 1.11.0 - zod: 3.20.2 + dependencies: + "@blitzjs/auth": + specifier: workspace:* + version: link:../../packages/blitz-auth + "@blitzjs/config": + specifier: workspace:* + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:* + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:* + version: link:../../packages/blitz-rpc + "@hookform/error-message": + specifier: 2.0.0 + version: 2.0.0(react-dom@18.2.0)(react-hook-form@7.39.1)(react@18.2.0) + "@hookform/resolvers": + specifier: 2.9.10 + version: 2.9.10(react-hook-form@7.39.1) + "@prisma/client": + specifier: ^4.5.0 + version: 4.6.1(prisma@4.6.1) + "@tanstack/react-query": + specifier: 4.0.10 + version: 4.0.10(react-dom@18.2.0)(react@18.2.0) + blitz: + specifier: workspace:* + version: link:../../packages/blitz + flatted: + specifier: 3.2.7 + version: 3.2.7 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + prisma: + specifier: ^4.5.0 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + react-hook-form: + specifier: 7.39.1 + version: 7.39.1(react@18.2.0) + superjson: + specifier: 1.11.0 + version: 1.11.0 + zod: + specifier: 3.20.2 + version: 3.20.2 devDependencies: - "@types/node": 18.11.7 - "@types/react": 18.0.23 - "@types/react-dom": 18.0.7 - eslint: 8.26.0 - eslint-config-next: 13.0.0_wyqvi574yv7oiwfeinomdzmc3m - typescript: 4.8.4 + "@types/node": + specifier: 18.11.7 + version: 18.11.7 + "@types/react": + specifier: 18.0.23 + version: 18.0.23 + "@types/react-dom": + specifier: 18.0.7 + version: 18.0.7 + eslint: + specifier: 8.26.0 + version: 8.26.0 + eslint-config-next: + specifier: 13.0.0 + version: 13.0.0(eslint@8.26.0)(typescript@4.8.4) + typescript: + specifier: 4.8.4 + version: 4.8.4 apps/toolkit-app: - specifiers: - "@blitzjs/auth": workspace:* - "@blitzjs/config": workspace:* - "@blitzjs/next": workspace:* - "@blitzjs/rpc": workspace:* - "@hookform/error-message": 2.0.0 - "@hookform/resolvers": 2.9.10 - "@next/bundle-analyzer": 12.0.8 - "@prisma/client": 4.6.1 - "@testing-library/jest-dom": 5.16.5 - "@testing-library/react": 13.4.0 - "@testing-library/react-hooks": 8.0.1 - "@types/node": 18.11.9 - "@types/preview-email": 2.0.1 - "@types/react": 18.0.25 - "@typescript-eslint/eslint-plugin": 5.42.1 - "@vitejs/plugin-react": 2.2.0 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - eslint-config-next: 12.3.1 - eslint-config-prettier: 8.5.0 - husky: 8.0.2 - jsdom: 20.0.3 - lint-staged: 13.0.3 - next: 13.3.0 - next-auth: 4.18.7 - prettier: ^2.7.1 - prettier-plugin-prisma: 4.4.0 - pretty-quick: 3.1.3 - preview-email: 3.0.7 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - react-hook-form: 7.39.1 - ts-node: 10.9.1 - typescript: ^4.8.4 - vite-tsconfig-paths: 3.6.0 - vitest: 0.25.3 - zod: 3.20.2 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@hookform/error-message": 2.0.0_uitc6c22ofsl6jhrdjqyu3was4 - "@hookform/resolvers": 2.9.10_react-hook-form@7.39.1 - "@prisma/client": 4.6.1_prisma@4.6.1 - blitz: link:../../packages/blitz - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - next-auth: 4.18.7_yucv4tfv7v7nrkw2uguegj6e7e - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-hook-form: 7.39.1_react@18.2.0 - ts-node: 10.9.1_cbe7ovvae6zqfnmtgctpgpys54 - zod: 3.20.2 + dependencies: + "@blitzjs/auth": + specifier: workspace:* + version: link:../../packages/blitz-auth + "@blitzjs/config": + specifier: workspace:* + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:* + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:* + version: link:../../packages/blitz-rpc + "@hookform/error-message": + specifier: 2.0.0 + version: 2.0.0(react-dom@18.2.0)(react-hook-form@7.39.1)(react@18.2.0) + "@hookform/resolvers": + specifier: 2.9.10 + version: 2.9.10(react-hook-form@7.39.1) + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + next-auth: + specifier: 4.18.7 + version: 4.18.7(next@13.3.0)(react-dom@18.2.0)(react@18.2.0) + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + react-hook-form: + specifier: 7.39.1 + version: 7.39.1(react@18.2.0) + ts-node: + specifier: 10.9.1 + version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + zod: + specifier: 3.20.2 + version: 3.20.2 devDependencies: - "@next/bundle-analyzer": 12.0.8 - "@testing-library/jest-dom": 5.16.5 - "@testing-library/react": 13.4.0_biqbaboplfbrettd7655fr4n2y - "@testing-library/react-hooks": 8.0.1_2zx2umvpluuhvlq44va5bta2da - "@types/node": 18.11.9 - "@types/preview-email": 2.0.1 - "@types/react": 18.0.25 - "@typescript-eslint/eslint-plugin": 5.42.1_rmayb2veg2btbq6mbmnyivgasy - "@vitejs/plugin-react": 2.2.0 - eslint: 8.27.0 - eslint-config-next: 12.3.1_rmayb2veg2btbq6mbmnyivgasy - eslint-config-prettier: 8.5.0_eslint@8.27.0 - husky: 8.0.2 - jsdom: 20.0.3 - lint-staged: 13.0.3 - prettier: 2.7.1 - prettier-plugin-prisma: 4.4.0_prettier@2.7.1 - pretty-quick: 3.1.3_prettier@2.7.1 - preview-email: 3.0.7 - typescript: 4.8.4 - vite-tsconfig-paths: 3.6.0 - vitest: 0.25.3_jsdom@20.0.3 + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@testing-library/jest-dom": + specifier: 5.16.5 + version: 5.16.5 + "@testing-library/react": + specifier: 13.4.0 + version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + "@testing-library/react-hooks": + specifier: 8.0.1 + version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + "@types/node": + specifier: 18.11.9 + version: 18.11.9 + "@types/preview-email": + specifier: 2.0.1 + version: 2.0.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@typescript-eslint/eslint-plugin": + specifier: 5.42.1 + version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + "@vitejs/plugin-react": + specifier: 2.2.0 + version: 2.2.0(vite@3.2.4) + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + eslint-config-next: + specifier: 12.3.1 + version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) + eslint-config-prettier: + specifier: 8.5.0 + version: 8.5.0(eslint@8.27.0) + husky: + specifier: 8.0.2 + version: 8.0.2 + jsdom: + specifier: 20.0.3 + version: 20.0.3 + lint-staged: + specifier: 13.0.3 + version: 13.0.3 + prettier: + specifier: ^2.7.1 + version: 2.7.1 + prettier-plugin-prisma: + specifier: 4.4.0 + version: 4.4.0(prettier@2.7.1) + pretty-quick: + specifier: 3.1.3 + version: 3.1.3(prettier@2.7.1) + preview-email: + specifier: 3.0.7 + version: 3.0.7 + typescript: + specifier: ^4.8.4 + version: 4.8.4 + vite-tsconfig-paths: + specifier: 3.6.0 + version: 3.6.0(vite@3.2.4) + vitest: + specifier: 0.25.3 + version: 0.25.3(jsdom@20.0.3) apps/toolkit-app-passportjs: - specifiers: - "@blitzjs/auth": workspace:* - "@blitzjs/config": workspace:* - "@blitzjs/next": workspace:* - "@blitzjs/rpc": workspace:* - "@hookform/error-message": 2.0.0 - "@hookform/resolvers": 2.9.10 - "@next/bundle-analyzer": 12.0.8 - "@prisma/client": 4.6.1 - "@testing-library/react": 13.4.0 - "@testing-library/react-hooks": 8.0.1 - "@types/jest": 29.2.2 - "@types/node": 18.11.9 - "@types/preview-email": 2.0.1 - "@types/react": 18.0.25 - "@typescript-eslint/eslint-plugin": 5.42.1 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - eslint-config-next: 12.3.1 - eslint-config-prettier: 8.5.0 - husky: 8.0.2 - jest: 29.3.0 - jest-environment-jsdom: 29.3.0 - lint-staged: 13.0.3 - next: 13.3.0 - openid-client: 5.2.1 - prettier: ^2.7.1 - prettier-plugin-prisma: 4.4.0 - pretty-quick: 3.1.3 - preview-email: 3.0.7 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - react-hook-form: 7.39.1 - ts-node: 10.9.1 - typescript: ^4.8.4 - zod: 3.20.2 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@hookform/error-message": 2.0.0_uitc6c22ofsl6jhrdjqyu3was4 - "@hookform/resolvers": 2.9.10_react-hook-form@7.39.1 - "@prisma/client": 4.6.1_prisma@4.6.1 - blitz: link:../../packages/blitz - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - openid-client: 5.2.1 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-hook-form: 7.39.1_react@18.2.0 - ts-node: 10.9.1_cbe7ovvae6zqfnmtgctpgpys54 - zod: 3.20.2 + dependencies: + "@blitzjs/auth": + specifier: workspace:* + version: link:../../packages/blitz-auth + "@blitzjs/config": + specifier: workspace:* + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:* + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:* + version: link:../../packages/blitz-rpc + "@hookform/error-message": + specifier: 2.0.0 + version: 2.0.0(react-dom@18.2.0)(react-hook-form@7.39.1)(react@18.2.0) + "@hookform/resolvers": + specifier: 2.9.10 + version: 2.9.10(react-hook-form@7.39.1) + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + openid-client: + specifier: 5.2.1 + version: 5.2.1 + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + react-hook-form: + specifier: 7.39.1 + version: 7.39.1(react@18.2.0) + ts-node: + specifier: 10.9.1 + version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + zod: + specifier: 3.20.2 + version: 3.20.2 devDependencies: - "@next/bundle-analyzer": 12.0.8 - "@testing-library/react": 13.4.0_biqbaboplfbrettd7655fr4n2y - "@testing-library/react-hooks": 8.0.1_2zx2umvpluuhvlq44va5bta2da - "@types/jest": 29.2.2 - "@types/node": 18.11.9 - "@types/preview-email": 2.0.1 - "@types/react": 18.0.25 - "@typescript-eslint/eslint-plugin": 5.42.1_rmayb2veg2btbq6mbmnyivgasy - eslint: 8.27.0 - eslint-config-next: 12.3.1_rmayb2veg2btbq6mbmnyivgasy - eslint-config-prettier: 8.5.0_eslint@8.27.0 - husky: 8.0.2 - jest: 29.3.0_odkjkoia5xunhxkdrka32ib6vi - jest-environment-jsdom: 29.3.0 - lint-staged: 13.0.3 - prettier: 2.7.1 - prettier-plugin-prisma: 4.4.0_prettier@2.7.1 - pretty-quick: 3.1.3_prettier@2.7.1 - preview-email: 3.0.7 - typescript: 4.8.4 + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@testing-library/react": + specifier: 13.4.0 + version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + "@testing-library/react-hooks": + specifier: 8.0.1 + version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + "@types/jest": + specifier: 29.2.2 + version: 29.2.2 + "@types/node": + specifier: 18.11.9 + version: 18.11.9 + "@types/preview-email": + specifier: 2.0.1 + version: 2.0.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@typescript-eslint/eslint-plugin": + specifier: 5.42.1 + version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + eslint-config-next: + specifier: 12.3.1 + version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) + eslint-config-prettier: + specifier: 8.5.0 + version: 8.5.0(eslint@8.27.0) + husky: + specifier: 8.0.2 + version: 8.0.2 + jest: + specifier: 29.3.0 + version: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) + jest-environment-jsdom: + specifier: 29.3.0 + version: 29.3.0 + lint-staged: + specifier: 13.0.3 + version: 13.0.3 + prettier: + specifier: ^2.7.1 + version: 2.7.1 + prettier-plugin-prisma: + specifier: 4.4.0 + version: 4.4.0(prettier@2.7.1) + pretty-quick: + specifier: 3.1.3 + version: 3.1.3(prettier@2.7.1) + preview-email: + specifier: 3.0.7 + version: 3.0.7 + typescript: + specifier: ^4.8.4 + version: 4.8.4 apps/web: - specifiers: - "@blitzjs/auth": workspace:* - "@blitzjs/config": workspace:* - "@blitzjs/next": workspace:* - "@blitzjs/rpc": workspace:* - "@next/bundle-analyzer": 12.0.8 - "@prisma/client": 4.6.1 - "@types/jest": 29.2.2 - "@types/passport-twitter": 1.0.37 - "@types/react": 18.0.25 - blitz: workspace:* - eslint: 8.27.0 - jest: 29.3.0 - jest-environment-jsdom: 29.3.0 - next: 13.3.0 - passport-mock-strategy: 2.0.0 - passport-twitter: 1.0.4 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - ts-node: 10.9.1 - typescript: ^4.8.4 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@prisma/client": 4.6.1_prisma@4.6.1 - "@types/jest": 29.2.2 - "@types/passport-twitter": 1.0.37 - blitz: link:../../packages/blitz - jest: 29.3.0_ts-node@10.9.1 - jest-environment-jsdom: 29.3.0 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - passport-mock-strategy: 2.0.0 - passport-twitter: 1.0.4 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - ts-node: 10.9.1_typescript@4.8.4 + dependencies: + "@blitzjs/auth": + specifier: workspace:* + version: link:../../packages/blitz-auth + "@blitzjs/config": + specifier: workspace:* + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:* + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:* + version: link:../../packages/blitz-rpc + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + "@types/jest": + specifier: 29.2.2 + version: 29.2.2 + "@types/passport-twitter": + specifier: 1.0.37 + version: 1.0.37 + blitz: + specifier: workspace:* + version: link:../../packages/blitz + jest: + specifier: 29.3.0 + version: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) + jest-environment-jsdom: + specifier: 29.3.0 + version: 29.3.0 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + passport-mock-strategy: + specifier: 2.0.0 + version: 2.0.0 + passport-twitter: + specifier: 1.0.4 + version: 1.0.4 + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + ts-node: + specifier: 10.9.1 + version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) devDependencies: - "@next/bundle-analyzer": 12.0.8 - "@types/react": 18.0.25 - eslint: 8.27.0 - typescript: 4.8.4 + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/auth: - specifiers: - "@blitzjs/auth": workspace:2.0.0-beta.27 - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@next/bundle-analyzer": 12.0.8 - "@prisma/client": 4.6.1 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node": 18.7.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - lowdb: 3.0.0 - next: 13.3.0 - node-fetch: 3.2.3 - playwright: 1.28.0 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - secure-password: 4.0.0 - ts-node: 10.9.1 - typescript: ^4.8.4 - wait-port: 1.0.4 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@prisma/client": 4.6.1_prisma@4.6.1 - blitz: link:../../packages/blitz - lowdb: 3.0.0 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - secure-password: 4.0.0 - wait-port: 1.0.4 + dependencies: + "@blitzjs/auth": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-auth + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + lowdb: + specifier: 3.0.0 + version: 3.0.0 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + secure-password: + specifier: 4.0.0 + version: 4.0.0 + wait-port: + specifier: 1.0.4 + version: 1.0.4 devDependencies: - "@next/bundle-analyzer": 12.0.8 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node": 18.7.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - node-fetch: 3.2.3 - playwright: 1.28.0 - ts-node: 10.9.1_ieummqxttktzud32hpyrer46t4 - typescript: 4.8.4 + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/node": + specifier: 18.7.13 + version: 18.7.13 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + b64-lite: + specifier: 1.4.0 + version: 1.4.0 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + get-port: + specifier: 6.1.2 + version: 6.1.2 + node-fetch: + specifier: 3.2.3 + version: 3.2.3 + playwright: + specifier: 1.28.0 + version: 1.28.0 + ts-node: + specifier: 10.9.1 + version: 10.9.1(@types/node@18.7.13)(typescript@4.8.4) + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/auth-with-rpc: - specifiers: - "@blitzjs/auth": workspace:2.0.0-beta.27 - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@blitzjs/rpc": workspace:2.0.0-beta.27 - "@hookform/error-message": 2.0.0 - "@hookform/resolvers": 2.9.10 - "@next/bundle-analyzer": 12.0.8 - "@prisma/client": 4.6.1 - "@testing-library/jest-dom": 5.16.5 - "@testing-library/react": 13.4.0 - "@testing-library/react-hooks": 8.0.1 - "@types/node": 18.11.9 - "@types/preview-email": 2.0.1 - "@types/react": 18.0.25 - "@typescript-eslint/eslint-plugin": 5.42.1 - "@vitejs/plugin-react": 2.2.0 - blitz: workspace:2.0.0-beta.27 - delay: 5.0.0 - eslint: 8.27.0 - eslint-config-next: 12.3.1 - eslint-config-prettier: 8.5.0 - husky: 8.0.2 - jsdom: 20.0.3 - lint-staged: 13.0.3 - next: 13.3.0 - playwright: 1.28.0 - prettier: ^2.7.1 - prettier-plugin-prisma: 4.4.0 - pretty-quick: 3.1.3 - preview-email: 3.0.7 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - react-hook-form: 7.39.1 - ts-node: 10.9.1 - typescript: ^4.8.4 - vite-tsconfig-paths: 3.6.0 - vitest: 0.25.3 - zod: 3.20.2 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@hookform/error-message": 2.0.0_uitc6c22ofsl6jhrdjqyu3was4 - "@hookform/resolvers": 2.9.10_react-hook-form@7.39.1 - "@prisma/client": 4.6.1_prisma@4.6.1 - blitz: link:../../packages/blitz - delay: 5.0.0 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-hook-form: 7.39.1_react@18.2.0 - ts-node: 10.9.1_cbe7ovvae6zqfnmtgctpgpys54 - zod: 3.20.2 + dependencies: + "@blitzjs/auth": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-auth + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-rpc + "@hookform/error-message": + specifier: 2.0.0 + version: 2.0.0(react-dom@18.2.0)(react-hook-form@7.39.1)(react@18.2.0) + "@hookform/resolvers": + specifier: 2.9.10 + version: 2.9.10(react-hook-form@7.39.1) + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + delay: + specifier: 5.0.0 + version: 5.0.0 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + react-hook-form: + specifier: 7.39.1 + version: 7.39.1(react@18.2.0) + ts-node: + specifier: 10.9.1 + version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + zod: + specifier: 3.20.2 + version: 3.20.2 devDependencies: - "@next/bundle-analyzer": 12.0.8 - "@testing-library/jest-dom": 5.16.5 - "@testing-library/react": 13.4.0_biqbaboplfbrettd7655fr4n2y - "@testing-library/react-hooks": 8.0.1_2zx2umvpluuhvlq44va5bta2da - "@types/node": 18.11.9 - "@types/preview-email": 2.0.1 - "@types/react": 18.0.25 - "@typescript-eslint/eslint-plugin": 5.42.1_rmayb2veg2btbq6mbmnyivgasy - "@vitejs/plugin-react": 2.2.0 - eslint: 8.27.0 - eslint-config-next: 12.3.1_rmayb2veg2btbq6mbmnyivgasy - eslint-config-prettier: 8.5.0_eslint@8.27.0 - husky: 8.0.2 - jsdom: 20.0.3 - lint-staged: 13.0.3 - playwright: 1.28.0 - prettier: 2.7.1 - prettier-plugin-prisma: 4.4.0_prettier@2.7.1 - pretty-quick: 3.1.3_prettier@2.7.1 - preview-email: 3.0.7 - typescript: 4.8.4 - vite-tsconfig-paths: 3.6.0 - vitest: 0.25.3_jsdom@20.0.3 + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@testing-library/jest-dom": + specifier: 5.16.5 + version: 5.16.5 + "@testing-library/react": + specifier: 13.4.0 + version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + "@testing-library/react-hooks": + specifier: 8.0.1 + version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + "@types/node": + specifier: 18.11.9 + version: 18.11.9 + "@types/preview-email": + specifier: 2.0.1 + version: 2.0.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@typescript-eslint/eslint-plugin": + specifier: 5.42.1 + version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + "@vitejs/plugin-react": + specifier: 2.2.0 + version: 2.2.0(vite@3.2.4) + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + eslint-config-next: + specifier: 12.3.1 + version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) + eslint-config-prettier: + specifier: 8.5.0 + version: 8.5.0(eslint@8.27.0) + husky: + specifier: 8.0.2 + version: 8.0.2 + jsdom: + specifier: 20.0.3 + version: 20.0.3 + lint-staged: + specifier: 13.0.3 + version: 13.0.3 + playwright: + specifier: 1.28.0 + version: 1.28.0 + prettier: + specifier: ^2.7.1 + version: 2.7.1 + prettier-plugin-prisma: + specifier: 4.4.0 + version: 4.4.0(prettier@2.7.1) + pretty-quick: + specifier: 3.1.3 + version: 3.1.3(prettier@2.7.1) + preview-email: + specifier: 3.0.7 + version: 3.0.7 + typescript: + specifier: ^4.8.4 + version: 4.8.4 + vite-tsconfig-paths: + specifier: 3.6.0 + version: 3.6.0(vite@3.2.4) + vitest: + specifier: 0.25.3 + version: 0.25.3(jsdom@20.0.3) integration-tests/get-initial-props: - specifiers: - "@blitzjs/auth": workspace:2.0.0-beta.27 - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@blitzjs/rpc": workspace:2.0.0-beta.27 - "@next/bundle-analyzer": 12.0.8 - "@prisma/client": 4.6.1 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - lowdb: 3.0.0 - next: 13.3.0 - node-fetch: 3.2.3 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - typescript: ^4.8.4 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@prisma/client": 4.6.1_prisma@4.6.1 - blitz: link:../../packages/blitz - lowdb: 3.0.0 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + dependencies: + "@blitzjs/auth": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-auth + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-rpc + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + lowdb: + specifier: 3.0.0 + version: 3.0.0 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) devDependencies: - "@blitzjs/config": link:../../packages/config - "@next/bundle-analyzer": 12.0.8 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - node-fetch: 3.2.3 - typescript: 4.8.4 + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + b64-lite: + specifier: 1.4.0 + version: 1.4.0 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + get-port: + specifier: 6.1.2 + version: 6.1.2 + node-fetch: + specifier: 3.2.3 + version: 3.2.3 + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/middleware: - specifiers: - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@blitzjs/rpc": workspace:2.0.0-beta.27 - "@next/bundle-analyzer": 12.0.8 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - next: 13.3.0 - node-fetch: 3.2.3 - react: 18.2.0 - react-dom: 18.2.0 - typescript: ^4.8.4 - dependencies: - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - blitz: link:../../packages/blitz - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + dependencies: + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-rpc + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) devDependencies: - "@next/bundle-analyzer": 12.0.8 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - node-fetch: 3.2.3 - typescript: 4.8.4 + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + get-port: + specifier: 6.1.2 + version: 6.1.2 + node-fetch: + specifier: 3.2.3 + version: 3.2.3 + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/next-13-app-dir: - specifiers: - "@blitzjs/auth": workspace:2.0.0-beta.27 - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@blitzjs/rpc": workspace:2.0.0-beta.27 - "@next/bundle-analyzer": 12.0.8 - "@prisma/client": 4.6.1 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node": 18.7.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - lowdb: 3.0.0 - next: 13.3.0 - node-fetch: 3.2.3 - playwright: 1.28.0 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - secure-password: 4.0.0 - ts-node: 10.9.1 - typescript: ^4.8.4 - wait-port: 1.0.4 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@prisma/client": 4.6.1_prisma@4.6.1 - blitz: link:../../packages/blitz - lowdb: 3.0.0 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - secure-password: 4.0.0 - wait-port: 1.0.4 + dependencies: + "@blitzjs/auth": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-auth + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-rpc + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + lowdb: + specifier: 3.0.0 + version: 3.0.0 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + secure-password: + specifier: 4.0.0 + version: 4.0.0 + wait-port: + specifier: 1.0.4 + version: 1.0.4 devDependencies: - "@next/bundle-analyzer": 12.0.8 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node": 18.7.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - node-fetch: 3.2.3 - playwright: 1.28.0 - ts-node: 10.9.1_ieummqxttktzud32hpyrer46t4 - typescript: 4.8.4 + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/node": + specifier: 18.7.13 + version: 18.7.13 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + b64-lite: + specifier: 1.4.0 + version: 1.4.0 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + get-port: + specifier: 6.1.2 + version: 6.1.2 + node-fetch: + specifier: 3.2.3 + version: 3.2.3 + playwright: + specifier: 1.28.0 + version: 1.28.0 + ts-node: + specifier: 10.9.1 + version: 10.9.1(@types/node@18.7.13)(typescript@4.8.4) + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/no-suspense: - specifiers: - "@blitzjs/auth": workspace:2.0.0-beta.27 - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@blitzjs/rpc": workspace:2.0.0-beta.27 - "@next/bundle-analyzer": 12.0.8 - "@prisma/client": 4.6.1 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - lowdb: 3.0.0 - next: 13.3.0 - node-fetch: 3.2.3 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - typescript: ^4.8.4 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@prisma/client": 4.6.1_prisma@4.6.1 - blitz: link:../../packages/blitz - lowdb: 3.0.0 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + dependencies: + "@blitzjs/auth": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-auth + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-rpc + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + lowdb: + specifier: 3.0.0 + version: 3.0.0 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) devDependencies: - "@blitzjs/config": link:../../packages/config - "@next/bundle-analyzer": 12.0.8 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - node-fetch: 3.2.3 - typescript: 4.8.4 + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + b64-lite: + specifier: 1.4.0 + version: 1.4.0 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + get-port: + specifier: 6.1.2 + version: 6.1.2 + node-fetch: + specifier: 3.2.3 + version: 3.2.3 + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/qm: - specifiers: - "@blitzjs/auth": workspace:2.0.0-beta.27 - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@blitzjs/rpc": workspace:2.0.0-beta.27 - "@prisma/client": 4.6.1 - "@tanstack/react-query": 4.0.10 - "@testing-library/react": 13.4.0 - "@types/react": 18.0.25 - "@vitejs/plugin-react": 1.3.0 - blitz: workspace:2.0.0-beta.27 - delay: 5.0.0 - eslint: 8.27.0 - eslint-config-next: latest - eslint-plugin-testing-library: 5.0.1 - jsdom: ^19.0.0 - next: 13.3.0 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - typescript: ^4.8.4 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@prisma/client": 4.6.1_prisma@4.6.1 - "@tanstack/react-query": 4.0.10_biqbaboplfbrettd7655fr4n2y - blitz: link:../../packages/blitz - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + dependencies: + "@blitzjs/auth": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-auth + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-rpc + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + "@tanstack/react-query": + specifier: 4.0.10 + version: 4.0.10(react-dom@18.2.0)(react@18.2.0) + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) devDependencies: - "@testing-library/react": 13.4.0_biqbaboplfbrettd7655fr4n2y - "@types/react": 18.0.25 - "@vitejs/plugin-react": 1.3.0 - delay: 5.0.0 - eslint: 8.27.0 - eslint-config-next: 13.3.4_rmayb2veg2btbq6mbmnyivgasy - eslint-plugin-testing-library: 5.0.1_rmayb2veg2btbq6mbmnyivgasy - jsdom: 19.0.0 - typescript: 4.8.4 + "@testing-library/react": + specifier: 13.4.0 + version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@vitejs/plugin-react": + specifier: 1.3.0 + version: 1.3.0 + delay: + specifier: 5.0.0 + version: 5.0.0 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + eslint-config-next: + specifier: latest + version: 13.4.3(eslint@8.27.0)(typescript@4.8.4) + eslint-plugin-testing-library: + specifier: 5.0.1 + version: 5.0.1(eslint@8.27.0)(typescript@4.8.4) + jsdom: + specifier: ^19.0.0 + version: 19.0.0 + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/react-query-utils: - specifiers: - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@blitzjs/rpc": workspace:2.0.0-beta.27 - "@next/bundle-analyzer": 12.0.8 - "@prisma/client": 4.6.1 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - lowdb: 3.0.0 - next: 13.3.0 - node-fetch: 3.2.3 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - typescript: ^4.8.4 - dependencies: - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@prisma/client": 4.6.1_prisma@4.6.1 - blitz: link:../../packages/blitz - lowdb: 3.0.0 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + dependencies: + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-rpc + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + lowdb: + specifier: 3.0.0 + version: 3.0.0 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) devDependencies: - "@blitzjs/config": link:../../packages/config - "@next/bundle-analyzer": 12.0.8 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - node-fetch: 3.2.3 - typescript: 4.8.4 + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + b64-lite: + specifier: 1.4.0 + version: 1.4.0 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + get-port: + specifier: 6.1.2 + version: 6.1.2 + node-fetch: + specifier: 3.2.3 + version: 3.2.3 + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/rpc: - specifiers: - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@blitzjs/rpc": workspace:2.0.0-beta.27 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - fs-extra: 10.0.1 - next: 13.3.0 - react: 18.2.0 - react-dom: 18.2.0 - typescript: ^4.8.4 - dependencies: - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - blitz: link:../../packages/blitz - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + dependencies: + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-rpc + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) devDependencies: - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - eslint: 8.27.0 - fs-extra: 10.0.1 - typescript: 4.8.4 + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + b64-lite: + specifier: 1.4.0 + version: 1.4.0 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/rpc-path-root: - specifiers: - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@blitzjs/rpc": workspace:2.0.0-beta.27 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - fs-extra: 10.0.1 - next: 13.3.0 - react: 18.2.0 - react-dom: 18.2.0 - typescript: ^4.8.4 - dependencies: - "@blitzjs/config": link:../../packages/config - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - blitz: link:../../packages/blitz - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + dependencies: + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-rpc + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) devDependencies: - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - eslint: 8.27.0 - fs-extra: 10.0.1 - typescript: 4.8.4 + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + b64-lite: + specifier: 1.4.0 + version: 1.4.0 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/trailing-slash: - specifiers: - "@blitzjs/auth": workspace:2.0.0-beta.27 - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/next": workspace:2.0.0-beta.27 - "@blitzjs/rpc": workspace:2.0.0-beta.27 - "@next/bundle-analyzer": 12.0.8 - "@prisma/client": 4.6.1 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - blitz: workspace:2.0.0-beta.27 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - lowdb: 3.0.0 - next: 13.3.0 - node-fetch: 3.2.3 - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0 - typescript: ^4.8.4 - dependencies: - "@blitzjs/auth": link:../../packages/blitz-auth - "@blitzjs/next": link:../../packages/blitz-next - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@prisma/client": 4.6.1_prisma@4.6.1 - blitz: link:../../packages/blitz - lowdb: 3.0.0 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - prisma: 4.6.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + dependencies: + "@blitzjs/auth": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-auth + "@blitzjs/next": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-next + "@blitzjs/rpc": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz-rpc + "@prisma/client": + specifier: 4.6.1 + version: 4.6.1(prisma@4.6.1) + blitz: + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/blitz + lowdb: + specifier: 3.0.0 + version: 3.0.0 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + prisma: + specifier: 4.6.1 + version: 4.6.1 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) devDependencies: - "@blitzjs/config": link:../../packages/config - "@next/bundle-analyzer": 12.0.8 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - b64-lite: 1.4.0 - eslint: 8.27.0 - fs-extra: 10.0.1 - get-port: 6.1.2 - node-fetch: 3.2.3 - typescript: 4.8.4 + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../../packages/config + "@next/bundle-analyzer": + specifier: 12.0.8 + version: 12.0.8 + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + b64-lite: + specifier: 1.4.0 + version: 1.4.0 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + get-port: + specifier: 6.1.2 + version: 6.1.2 + node-fetch: + specifier: 3.2.3 + version: 3.2.3 + typescript: + specifier: ^4.8.4 + version: 4.8.4 integration-tests/utils: - specifiers: - "@blitzjs/config": "workspace: *" - "@blitzjs/rpc": "workspace: *" - "@tanstack/react-query": 4.13.0 - "@testing-library/react": 13.4.0 - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - "@types/rimraf": 3.0.2 - "@types/selenium-webdriver": 4.0.18 - chromedriver: 100.0.0 - cross-spawn: 7.0.3 - eslint: 8.27.0 - express: 4.17.3 - fs-extra: 10.0.1 - get-port: 6.1.2 - node-fetch: 3.2.3 - pkg-dir: 5.0.0 - playwright-chromium: 1.28.0 - react: 18.2.0 - react-dom: 18.2.0 - resolve-cwd: 3.0.0 - resolve-from: 5.0.0 - rimraf: 3.0.2 - selenium-webdriver: 4.1.1 - tree-kill: 1.2.2 - typescript: ^4.8.4 devDependencies: - "@blitzjs/config": link:../../packages/config - "@blitzjs/rpc": link:../../packages/blitz-rpc - "@tanstack/react-query": 4.13.0_biqbaboplfbrettd7655fr4n2y - "@testing-library/react": 13.4.0_biqbaboplfbrettd7655fr4n2y - "@types/express": 4.17.13 - "@types/fs-extra": 9.0.13 - "@types/node-fetch": 2.6.1 - "@types/react": 18.0.25 - "@types/rimraf": 3.0.2 - "@types/selenium-webdriver": 4.0.18 - chromedriver: 100.0.0 - cross-spawn: 7.0.3 - eslint: 8.27.0 - express: 4.17.3 - fs-extra: 10.0.1 - get-port: 6.1.2 - node-fetch: 3.2.3 - pkg-dir: 5.0.0 - playwright-chromium: 1.28.0 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - resolve-cwd: 3.0.0 - resolve-from: 5.0.0 - rimraf: 3.0.2 - selenium-webdriver: 4.1.1 - tree-kill: 1.2.2 - typescript: 4.8.4 + "@blitzjs/config": + specifier: "workspace: *" + version: link:../../packages/config + "@blitzjs/rpc": + specifier: "workspace: *" + version: link:../../packages/blitz-rpc + "@tanstack/react-query": + specifier: 4.13.0 + version: 4.13.0(react-dom@18.2.0)(react@18.2.0) + "@testing-library/react": + specifier: 13.4.0 + version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@types/rimraf": + specifier: 3.0.2 + version: 3.0.2 + "@types/selenium-webdriver": + specifier: 4.0.18 + version: 4.0.18 + chromedriver: + specifier: 100.0.0 + version: 100.0.0 + cross-spawn: + specifier: 7.0.3 + version: 7.0.3 + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + express: + specifier: 4.17.3 + version: 4.17.3(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + get-port: + specifier: 6.1.2 + version: 6.1.2 + node-fetch: + specifier: 3.2.3 + version: 3.2.3 + pkg-dir: + specifier: 5.0.0 + version: 5.0.0 + playwright-chromium: + specifier: 1.28.0 + version: 1.28.0 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + resolve-cwd: + specifier: 3.0.0 + version: 3.0.0 + resolve-from: + specifier: 5.0.0 + version: 5.0.0 + rimraf: + specifier: 3.0.2 + version: 3.0.2 + selenium-webdriver: + specifier: 4.1.1 + version: 4.1.1 + tree-kill: + specifier: 1.2.2 + version: 1.2.2 + typescript: + specifier: ^4.8.4 + version: 4.8.4 packages/blitz: - specifiers: - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/generator": 2.0.0-beta.27 - "@mrleebo/prisma-ast": 0.2.6 - "@types/cookie": 0.4.1 - "@types/cross-spawn": 6.0.2 - "@types/debug": 4.1.7 - "@types/detect-port": 1.3.2 - "@types/envinfo": 7.8.1 - "@types/express": 4.17.13 - "@types/findup-sync": 4.0.2 - "@types/fs-extra": 9.0.13 - "@types/global-agent": 2.1.1 - "@types/hasbin": 1.2.0 - "@types/jscodeshift": 0.11.2 - "@types/node-fetch": 2.6.1 - "@types/npm-which": 3.0.1 - "@types/progress": 2.0.5 - "@types/prompts": 2.0.14 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - "@types/test-listen": 1.1.0 - "@types/watchpack": 1.1.1 - arg: 5.0.1 - ast-types: 0.14.2 - boxen: 7.0.0 - chalk: ^4.1.0 - chokidar: 3.5.3 - console-table-printer: 2.10.0 - cross-spawn: 7.0.3 - debug: 4.3.3 - detect-port: 1.3.0 - diff: 5.0.0 - dotenv: 16.0.0 - dotenv-expand: 8.0.3 - envinfo: 7.8.1 - esbuild: 0.14.34 - esbuild-register: 3.3.3 - express: 4.17.3 - find-up: 4.1.0 - findup-sync: 5.0.0 - fs-extra: 10.0.1 - global-agent: 3.0.0 - globby: 13.1.2 - got: ^11.8.1 - hasbin: 1.2.3 - ink: 3.2.0 - ink-spinner: 4.0.3 - jscodeshift: 0.13.0 - node-fetch: 3.2.3 - npm-which: 3.0.1 - ora: 5.3.0 - os-name: 5.0.1 - p-event: 4.2.0 - pkg-dir: 5.0.0 - progress: 2.0.3 - prompts: 2.4.2 - react: 18.2.0 - recast: 0.20.5 - resolve-cwd: 3.0.0 - resolve-from: 5.0.0 - rimraf: 3.0.2 - semver: 7.3.8 - superjson: 1.11.0 - supports-color: 8.1.1 - tar: 6.1.11 - test-listen: 1.1.0 - ts-node: 10.9.1 - tsconfig-paths: 4.0.0 - tslog: 3.3.4 - typescript: ^4.8.4 - unbuild: 0.7.6 - watch: 1.0.2 - watchpack: 2.1.1 - zod: 3.20.2 - dependencies: - "@blitzjs/generator": link:../generator - "@mrleebo/prisma-ast": 0.2.6 - "@types/global-agent": 2.1.1 - arg: 5.0.1 - ast-types: 0.14.2 - boxen: 7.0.0 - chalk: 4.1.2 - chokidar: 3.5.3 - console-table-printer: 2.10.0 - cross-spawn: 7.0.3 - debug: 4.3.3_supports-color@8.1.1 - detect-port: 1.3.0_supports-color@8.1.1 - diff: 5.0.0 - dotenv: 16.0.0 - dotenv-expand: 8.0.3 - envinfo: 7.8.1 - esbuild: 0.14.34 - esbuild-register: 3.3.3_esbuild@0.14.34 - find-up: 4.1.0 - findup-sync: 5.0.0 - fs-extra: 10.0.1 - global-agent: 3.0.0 - globby: 13.1.2 - got: 11.8.1 - hasbin: 1.2.3 - ink: 3.2.0_fan5qbzahqtxlm5dzefqlqx5ia - ink-spinner: 4.0.3_ink@3.2.0+react@18.2.0 - jscodeshift: 0.13.0_supports-color@8.1.1 - node-fetch: 3.2.3 - npm-which: 3.0.1 - ora: 5.3.0 - os-name: 5.0.1 - p-event: 4.2.0 - pkg-dir: 5.0.0 - progress: 2.0.3 - prompts: 2.4.2 - recast: 0.20.5 - resolve-cwd: 3.0.0 - resolve-from: 5.0.0 - rimraf: 3.0.2 - semver: 7.3.8 - superjson: 1.11.0 - supports-color: 8.1.1 - tar: 6.1.11 - ts-node: 10.9.1_typescript@4.8.4 - tsconfig-paths: 4.0.0 - tslog: 3.3.4 - watchpack: 2.1.1 + dependencies: + "@blitzjs/generator": + specifier: 2.0.0-beta.27 + version: link:../generator + "@mrleebo/prisma-ast": + specifier: 0.2.6 + version: 0.2.6 + "@types/global-agent": + specifier: 2.1.1 + version: 2.1.1 + arg: + specifier: 5.0.1 + version: 5.0.1 + ast-types: + specifier: 0.14.2 + version: 0.14.2 + boxen: + specifier: 7.0.0 + version: 7.0.0 + chalk: + specifier: ^4.1.0 + version: 4.1.2 + chokidar: + specifier: 3.5.3 + version: 3.5.3 + console-table-printer: + specifier: 2.10.0 + version: 2.10.0 + cross-spawn: + specifier: 7.0.3 + version: 7.0.3 + debug: + specifier: 4.3.3 + version: 4.3.3(supports-color@8.1.1) + detect-port: + specifier: 1.3.0 + version: 1.3.0(supports-color@8.1.1) + diff: + specifier: 5.0.0 + version: 5.0.0 + dotenv: + specifier: 16.0.0 + version: 16.0.0 + dotenv-expand: + specifier: 8.0.3 + version: 8.0.3 + envinfo: + specifier: 7.8.1 + version: 7.8.1 + esbuild: + specifier: 0.14.34 + version: 0.14.34 + esbuild-register: + specifier: 3.3.3 + version: 3.3.3(esbuild@0.14.34) + find-up: + specifier: 4.1.0 + version: 4.1.0 + findup-sync: + specifier: 5.0.0 + version: 5.0.0 + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + global-agent: + specifier: 3.0.0 + version: 3.0.0 + globby: + specifier: 13.1.2 + version: 13.1.2 + got: + specifier: ^11.8.1 + version: 11.8.1 + hasbin: + specifier: 1.2.3 + version: 1.2.3 + ink: + specifier: 3.2.0 + version: 3.2.0(@types/react@18.0.25)(react@18.2.0) + ink-spinner: + specifier: 4.0.3 + version: 4.0.3(ink@3.2.0)(react@18.2.0) + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + node-fetch: + specifier: 3.2.3 + version: 3.2.3 + npm-which: + specifier: 3.0.1 + version: 3.0.1 + ora: + specifier: 5.3.0 + version: 5.3.0 + os-name: + specifier: 5.0.1 + version: 5.0.1 + p-event: + specifier: 4.2.0 + version: 4.2.0 + pkg-dir: + specifier: 5.0.0 + version: 5.0.0 + progress: + specifier: 2.0.3 + version: 2.0.3 + prompts: + specifier: 2.4.2 + version: 2.4.2 + recast: + specifier: 0.20.5 + version: 0.20.5 + resolve-cwd: + specifier: 3.0.0 + version: 3.0.0 + resolve-from: + specifier: 5.0.0 + version: 5.0.0 + rimraf: + specifier: 3.0.2 + version: 3.0.2 + semver: + specifier: 7.3.8 + version: 7.3.8 + superjson: + specifier: 1.11.0 + version: 1.11.0 + supports-color: + specifier: 8.1.1 + version: 8.1.1 + tar: + specifier: 6.1.11 + version: 6.1.11 + ts-node: + specifier: 10.9.1 + version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + tsconfig-paths: + specifier: 4.0.0 + version: 4.0.0 + tslog: + specifier: 3.3.4 + version: 3.3.4 + watchpack: + specifier: 2.1.1 + version: 2.1.1 devDependencies: - "@blitzjs/config": link:../config - "@types/cookie": 0.4.1 - "@types/cross-spawn": 6.0.2 - "@types/debug": 4.1.7 - "@types/detect-port": 1.3.2 - "@types/envinfo": 7.8.1 - "@types/express": 4.17.13 - "@types/findup-sync": 4.0.2 - "@types/fs-extra": 9.0.13 - "@types/hasbin": 1.2.0 - "@types/jscodeshift": 0.11.2 - "@types/node-fetch": 2.6.1 - "@types/npm-which": 3.0.1 - "@types/progress": 2.0.5 - "@types/prompts": 2.0.14 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - "@types/test-listen": 1.1.0 - "@types/watchpack": 1.1.1 - express: 4.17.3_supports-color@8.1.1 - react: 18.2.0 - test-listen: 1.1.0 - typescript: 4.8.4 - unbuild: 0.7.6_supports-color@8.1.1 - watch: 1.0.2 - zod: 3.20.2 + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../config + "@types/cookie": + specifier: 0.4.1 + version: 0.4.1 + "@types/cross-spawn": + specifier: 6.0.2 + version: 6.0.2 + "@types/debug": + specifier: 4.1.7 + version: 4.1.7 + "@types/detect-port": + specifier: 1.3.2 + version: 1.3.2 + "@types/envinfo": + specifier: 7.8.1 + version: 7.8.1 + "@types/express": + specifier: 4.17.13 + version: 4.17.13 + "@types/findup-sync": + specifier: 4.0.2 + version: 4.0.2 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/hasbin": + specifier: 1.2.0 + version: 1.2.0 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 + "@types/node-fetch": + specifier: 2.6.1 + version: 2.6.1 + "@types/npm-which": + specifier: 3.0.1 + version: 3.0.1 + "@types/progress": + specifier: 2.0.5 + version: 2.0.5 + "@types/prompts": + specifier: 2.0.14 + version: 2.0.14 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@types/react-dom": + specifier: 17.0.14 + version: 17.0.14 + "@types/test-listen": + specifier: 1.1.0 + version: 1.1.0 + "@types/watchpack": + specifier: 1.1.1 + version: 1.1.1 + express: + specifier: 4.17.3 + version: 4.17.3(supports-color@8.1.1) + react: + specifier: 18.2.0 + version: 18.2.0 + test-listen: + specifier: 1.1.0 + version: 1.1.0 + typescript: + specifier: ^4.8.4 + version: 4.8.4 + unbuild: + specifier: 0.7.6 + version: 0.7.6(supports-color@8.1.1) + watch: + specifier: 1.0.2 + version: 1.0.2 + zod: + specifier: 3.20.2 + version: 3.20.2 packages/blitz-auth: - specifiers: - "@blitzjs/config": workspace:2.0.0-beta.27 - "@testing-library/react": 13.4.0 - "@testing-library/react-hooks": 8.0.1 - "@types/b64-lite": 1.3.0 - "@types/cookie": 0.4.1 - "@types/cookie-session": 2.0.44 - "@types/debug": 4.1.7 - "@types/jsonwebtoken": 8.5.8 - "@types/oauth": 0.9.1 - "@types/passport": 1.0.7 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - "@types/secure-password": 3.1.1 - b64-lite: 1.4.0 - bad-behavior: 1.0.1 - blitz: 2.0.0-beta.27 - cookie: 0.4.1 - cookie-session: 2.0.0 - debug: 4.3.3 - http: 0.0.1-security - jsonwebtoken: 9.0.0 - nanoid: 3.2.0 - next: 13.3.0 - next-auth: 4.18.7 - oauth: 0.10.0 - openid-client: 5.2.1 - passport: 0.6.0 - path: 0.12.7 - react: 18.2.0 - react-dom: 18.2.0 - secure-password: 4.0.0 - supports-color: 8.1.1 - typescript: ^4.8.4 - unbuild: 0.7.6 - url: 0.11.0 - watch: 1.0.2 - dependencies: - "@types/b64-lite": 1.3.0 - "@types/cookie-session": 2.0.44 - "@types/oauth": 0.9.1 - "@types/passport": 1.0.7 - "@types/secure-password": 3.1.1 - b64-lite: 1.4.0 - bad-behavior: 1.0.1 - cookie: 0.4.1 - cookie-session: 2.0.0_supports-color@8.1.1 - debug: 4.3.3_supports-color@8.1.1 - http: 0.0.1-security - jsonwebtoken: 9.0.0 - nanoid: 3.2.0 - oauth: 0.10.0 - openid-client: 5.2.1 - passport: 0.6.0 - path: 0.12.7 - supports-color: 8.1.1 - url: 0.11.0 + dependencies: + "@types/b64-lite": + specifier: 1.3.0 + version: 1.3.0 + "@types/cookie-session": + specifier: 2.0.44 + version: 2.0.44 + "@types/oauth": + specifier: 0.9.1 + version: 0.9.1 + "@types/passport": + specifier: 1.0.7 + version: 1.0.7 + "@types/secure-password": + specifier: 3.1.1 + version: 3.1.1 + b64-lite: + specifier: 1.4.0 + version: 1.4.0 + bad-behavior: + specifier: 1.0.1 + version: 1.0.1 + cookie: + specifier: 0.4.1 + version: 0.4.1 + cookie-session: + specifier: 2.0.0 + version: 2.0.0(supports-color@8.1.1) + debug: + specifier: 4.3.3 + version: 4.3.3(supports-color@8.1.1) + find-up: + specifier: 4.1.0 + version: 4.1.0 + http: + specifier: 0.0.1-security + version: 0.0.1-security + jsonwebtoken: + specifier: 9.0.0 + version: 9.0.0 + nanoid: + specifier: 3.2.0 + version: 3.2.0 + oauth: + specifier: 0.10.0 + version: 0.10.0 + openid-client: + specifier: 5.2.1 + version: 5.2.1 + passport: + specifier: 0.6.0 + version: 0.6.0 + path: + specifier: 0.12.7 + version: 0.12.7 + resolve-from: + specifier: 5.0.0 + version: 5.0.0 + supports-color: + specifier: 8.1.1 + version: 8.1.1 + url: + specifier: 0.11.0 + version: 0.11.0 devDependencies: - "@blitzjs/config": link:../config - "@testing-library/react": 13.4.0_biqbaboplfbrettd7655fr4n2y - "@testing-library/react-hooks": 8.0.1_2zx2umvpluuhvlq44va5bta2da - "@types/cookie": 0.4.1 - "@types/debug": 4.1.7 - "@types/jsonwebtoken": 8.5.8 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - blitz: link:../blitz - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - next-auth: 4.18.7_yucv4tfv7v7nrkw2uguegj6e7e - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - secure-password: 4.0.0 - typescript: 4.8.4 - unbuild: 0.7.6_supports-color@8.1.1 - watch: 1.0.2 + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../config + "@testing-library/react": + specifier: 13.4.0 + version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + "@testing-library/react-hooks": + specifier: 8.0.1 + version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + "@types/cookie": + specifier: 0.4.1 + version: 0.4.1 + "@types/debug": + specifier: 4.1.7 + version: 4.1.7 + "@types/jsonwebtoken": + specifier: 8.5.8 + version: 8.5.8 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@types/react-dom": + specifier: 17.0.14 + version: 17.0.14 + blitz: + specifier: 2.0.0-beta.27 + version: link:../blitz + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + next-auth: + specifier: 4.18.7 + version: 4.18.7(next@13.3.0)(react-dom@18.2.0)(react@18.2.0) + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + secure-password: + specifier: 4.0.0 + version: 4.0.0 + typescript: + specifier: ^4.8.4 + version: 4.8.4 + unbuild: + specifier: 0.7.6 + version: 0.7.6(supports-color@8.1.1) + watch: + specifier: 1.0.2 + version: 1.0.2 packages/blitz-next: - specifiers: - "@blitzjs/config": workspace:2.0.0-beta.27 - "@blitzjs/rpc": 2.0.0-beta.27 - "@testing-library/dom": 8.13.0 - "@testing-library/jest-dom": 5.16.3 - "@testing-library/react": 13.4.0 - "@testing-library/react-hooks": 8.0.1 - "@testing-library/user-event": 13.5.0 - "@types/hoist-non-react-statics": 3.3.1 - "@types/node": 18.11.9 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - "@types/testing-library__react-hooks": 4.0.0 - blitz: 2.0.0-beta.27 - cross-spawn: 7.0.3 - debug: 4.3.3 - find-up: 4.1.0 - fs-extra: 10.0.1 - hoist-non-react-statics: 3.3.2 - next: 13.3.0 - next-router-mock: 0.9.1 - react: 18.2.0 - react-dom: 18.2.0 - resolve-from: 5.0.0 - superjson: 1.11.0 - supports-color: 8.1.1 - ts-jest: 27.1.4 - typescript: ^4.8.4 - unbuild: 0.7.6 - watch: 1.0.2 - dependencies: - "@blitzjs/rpc": link:../blitz-rpc - "@types/hoist-non-react-statics": 3.3.1 - debug: 4.3.3_supports-color@8.1.1 - fs-extra: 10.0.1 - hoist-non-react-statics: 3.3.2 - superjson: 1.11.0 - supports-color: 8.1.1 + dependencies: + "@blitzjs/rpc": + specifier: 2.0.0-beta.27 + version: link:../blitz-rpc + "@types/hoist-non-react-statics": + specifier: 3.3.1 + version: 3.3.1 + debug: + specifier: 4.3.3 + version: 4.3.3(supports-color@8.1.1) + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + hoist-non-react-statics: + specifier: 3.3.2 + version: 3.3.2 + superjson: + specifier: 1.11.0 + version: 1.11.0 + supports-color: + specifier: 8.1.1 + version: 8.1.1 devDependencies: - "@blitzjs/config": link:../config - "@testing-library/dom": 8.13.0 - "@testing-library/jest-dom": 5.16.3 - "@testing-library/react": 13.4.0_biqbaboplfbrettd7655fr4n2y - "@testing-library/react-hooks": 8.0.1_2zx2umvpluuhvlq44va5bta2da - "@testing-library/user-event": 13.5.0_tlwynutqiyp5mns3woioasuxnq - "@types/node": 18.11.9 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - "@types/testing-library__react-hooks": 4.0.0_2zx2umvpluuhvlq44va5bta2da - blitz: link:../blitz - cross-spawn: 7.0.3 - find-up: 4.1.0 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - next-router-mock: 0.9.1_next@13.3.0+react@18.2.0 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - resolve-from: 5.0.0 - ts-jest: 27.1.4_typescript@4.8.4 - typescript: 4.8.4 - unbuild: 0.7.6_supports-color@8.1.1 - watch: 1.0.2 + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../config + "@testing-library/dom": + specifier: 8.13.0 + version: 8.13.0 + "@testing-library/jest-dom": + specifier: 5.16.3 + version: 5.16.3 + "@testing-library/react": + specifier: 13.4.0 + version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + "@testing-library/react-hooks": + specifier: 8.0.1 + version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + "@testing-library/user-event": + specifier: 13.5.0 + version: 13.5.0(@testing-library/dom@8.13.0) + "@types/node": + specifier: 18.11.9 + version: 18.11.9 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@types/react-dom": + specifier: 17.0.14 + version: 17.0.14 + "@types/testing-library__react-hooks": + specifier: 4.0.0 + version: 4.0.0(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + blitz: + specifier: 2.0.0-beta.27 + version: link:../blitz + cross-spawn: + specifier: 7.0.3 + version: 7.0.3 + find-up: + specifier: 4.1.0 + version: 4.1.0 + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + next-router-mock: + specifier: 0.9.1 + version: 0.9.1(next@13.3.0)(react@18.2.0) + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + resolve-from: + specifier: 5.0.0 + version: 5.0.0 + ts-jest: + specifier: 27.1.4 + version: 27.1.4(@babel/core@7.12.10)(esbuild@0.14.51)(jest@27.5.1)(typescript@4.8.4) + typescript: + specifier: ^4.8.4 + version: 4.8.4 + unbuild: + specifier: 0.7.6 + version: 0.7.6(supports-color@8.1.1) + watch: + specifier: 1.0.2 + version: 1.0.2 packages/blitz-rpc: - specifiers: - "@blitzjs/auth": 2.0.0-beta.27 - "@blitzjs/config": workspace:2.0.0-beta.27 - "@swc/core": 1.3.7 - "@tanstack/query-core": 4.24.4 - "@tanstack/react-query": 4.24.4 - "@types/debug": 4.1.7 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - b64-lite: 1.4.0 - bad-behavior: 1.0.1 - blitz: 2.0.0-beta.27 - chalk: ^4.1.0 - debug: 4.3.3 - next: 13.3.0 - react: 18.2.0 - react-dom: 18.2.0 - superjson: 1.11.0 - supports-color: 8.1.1 - typescript: ^4.8.4 - unbuild: 0.7.6 - watch: 1.0.2 - zod: 3.20.2 - dependencies: - "@swc/core": 1.3.7 - "@tanstack/react-query": 4.24.4_biqbaboplfbrettd7655fr4n2y - b64-lite: 1.4.0 - bad-behavior: 1.0.1 - chalk: 4.1.2 - debug: 4.3.3_supports-color@8.1.1 - superjson: 1.11.0 - supports-color: 8.1.1 + dependencies: + "@swc/core": + specifier: 1.3.7 + version: 1.3.7 + "@tanstack/react-query": + specifier: 4.24.4 + version: 4.24.4(react-dom@18.2.0)(react@18.2.0) + b64-lite: + specifier: 1.4.0 + version: 1.4.0 + bad-behavior: + specifier: 1.0.1 + version: 1.0.1 + chalk: + specifier: ^4.1.0 + version: 4.1.2 + debug: + specifier: 4.3.3 + version: 4.3.3(supports-color@8.1.1) + superjson: + specifier: 1.11.0 + version: 1.11.0 + supports-color: + specifier: 8.1.1 + version: 8.1.1 devDependencies: - "@blitzjs/auth": link:../blitz-auth - "@blitzjs/config": link:../config - "@tanstack/query-core": 4.24.4 - "@types/debug": 4.1.7 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - blitz: link:../blitz - next: 13.3.0_biqbaboplfbrettd7655fr4n2y - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - typescript: 4.8.4 - unbuild: 0.7.6_supports-color@8.1.1 - watch: 1.0.2 - zod: 3.20.2 + "@blitzjs/auth": + specifier: 2.0.0-beta.27 + version: link:../blitz-auth + "@blitzjs/config": + specifier: workspace:2.0.0-beta.27 + version: link:../config + "@tanstack/query-core": + specifier: 4.24.4 + version: 4.24.4 + "@types/debug": + specifier: 4.1.7 + version: 4.1.7 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@types/react-dom": + specifier: 17.0.14 + version: 17.0.14 + blitz: + specifier: 2.0.0-beta.27 + version: link:../blitz + next: + specifier: 13.3.0 + version: 13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + typescript: + specifier: ^4.8.4 + version: 4.8.4 + unbuild: + specifier: 0.7.6 + version: 0.7.6(supports-color@8.1.1) + watch: + specifier: 1.0.2 + version: 1.0.2 + zod: + specifier: 3.20.2 + version: 3.20.2 packages/codemod: - specifiers: - "@babel/core": 7.12.10 - "@babel/plugin-proposal-class-properties": 7.17.12 - "@babel/plugin-syntax-jsx": 7.17.12 - "@babel/plugin-syntax-typescript": 7.17.12 - "@babel/preset-env": 7.12.10 - "@blitzjs/config": workspace:* - "@blitzjs/generator": 2.0.0-beta.27 - "@types/jscodeshift": 0.11.2 - "@types/node": 18.11.9 - arg: 5.0.1 - ast-types: 0.14.2 - blitz: 2.0.0-beta.27 - chalk: ^4.1.0 - cross-spawn: 7.0.3 - debug: 4.3.3 - esbuild: 0.14.34 - fs-extra: 10.0.1 - jscodeshift: 0.13.0 - prompts: 2.4.2 - unbuild: 0.7.6 - watch: 1.0.2 - dependencies: - "@babel/core": 7.12.10 - "@babel/plugin-proposal-class-properties": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-syntax-jsx": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-syntax-typescript": 7.17.12_@babel+core@7.12.10 - "@blitzjs/generator": link:../generator - arg: 5.0.1 - blitz: link:../blitz - chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.3 - esbuild: 0.14.34 - fs-extra: 10.0.1 - jscodeshift: 0.13.0_@babel+preset-env@7.12.10 - prompts: 2.4.2 + dependencies: + "@babel/core": + specifier: 7.12.10 + version: 7.12.10(supports-color@8.1.1) + "@babel/plugin-proposal-class-properties": + specifier: 7.17.12 + version: 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-syntax-jsx": + specifier: 7.17.12 + version: 7.17.12(@babel/core@7.12.10) + "@babel/plugin-syntax-typescript": + specifier: 7.17.12 + version: 7.17.12(@babel/core@7.12.10) + "@blitzjs/generator": + specifier: 2.0.0-beta.27 + version: link:../generator + arg: + specifier: 5.0.1 + version: 5.0.1 + blitz: + specifier: 2.0.0-beta.27 + version: link:../blitz + chalk: + specifier: ^4.1.0 + version: 4.1.2 + cross-spawn: + specifier: 7.0.3 + version: 7.0.3 + debug: + specifier: 4.3.3 + version: 4.3.3(supports-color@8.1.1) + esbuild: + specifier: 0.14.34 + version: 0.14.34 + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + prompts: + specifier: 2.4.2 + version: 2.4.2 devDependencies: - "@babel/preset-env": 7.12.10_@babel+core@7.12.10 - "@blitzjs/config": link:../config - "@types/jscodeshift": 0.11.2 - "@types/node": 18.11.9 - ast-types: 0.14.2 - unbuild: 0.7.6 - watch: 1.0.2 + "@babel/preset-env": + specifier: 7.12.10 + version: 7.12.10(@babel/core@7.12.10)(supports-color@8.1.1) + "@blitzjs/config": + specifier: workspace:* + version: link:../config + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 + "@types/node": + specifier: 18.11.9 + version: 18.11.9 + ast-types: + specifier: 0.14.2 + version: 0.14.2 + unbuild: + specifier: 0.7.6 + version: 0.7.6(supports-color@8.1.1) + watch: + specifier: 1.0.2 + version: 1.0.2 packages/config: - specifiers: - "@typescript-eslint/eslint-plugin": 5.42.1 - "@typescript-eslint/parser": 5.9.1 - eslint-config-next: 12.3.1 - eslint-config-prettier: 8.5.0 - typescript: ^4.8.4 - dependencies: - "@typescript-eslint/eslint-plugin": 5.42.1_z4ocgzhfuku3ho6vky337zbopm - "@typescript-eslint/parser": 5.9.1_typescript@4.8.4 - eslint-config-next: 12.3.1_typescript@4.8.4 - eslint-config-prettier: 8.5.0 + dependencies: + "@typescript-eslint/eslint-plugin": + specifier: 5.42.1 + version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + "@typescript-eslint/parser": + specifier: 5.9.1 + version: 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + eslint-config-next: + specifier: 12.3.1 + version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) + eslint-config-prettier: + specifier: 8.5.0 + version: 8.5.0(eslint@8.27.0) devDependencies: - typescript: 4.8.4 + typescript: + specifier: ^4.8.4 + version: 4.8.4 packages/generator: - specifiers: - "@babel/core": 7.12.10 - "@babel/plugin-transform-typescript": 7.12.1 - "@babel/preset-env": 7.12.10 - "@babel/types": 7.12.10 - "@blitzjs/config": 2.0.0-beta.27 - "@juanm04/cpx": 2.0.1 - "@mrleebo/prisma-ast": 0.4.1 - "@types/babel__core": 7.1.19 - "@types/diff": 5.0.2 - "@types/fs-extra": 9.0.13 - "@types/jscodeshift": 0.11.2 - "@types/mem-fs": 1.1.2 - "@types/mem-fs-editor": 7.0.1 - "@types/pluralize": 0.0.29 - "@types/prettier": 2.4.4 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - "@types/vinyl": 2.0.6 - "@typescript-eslint/eslint-plugin": 5.42.1 - "@typescript-eslint/parser": 5.9.1 - babylon: 6.18.0 - chalk: ^4.1.0 - console-table-printer: 2.10.0 - cross-spawn: 7.0.3 - debug: 4.3.3 - diff: 5.0.0 - enquirer: 2.3.6 - eslint: 8.27.0 - fast-glob: 3.2.12 - fs-extra: 10.0.1 - globby: 13.1.2 - got: ^11.8.1 - jscodeshift: 0.13.0 - mem-fs: 1.2.0 - mem-fs-editor: 8.0.0 - npm-which: 3.0.1 - ora: 5.3.0 - pluralize: 8.0.0 - prettier: ^2.7.1 - react: 18.2.0 - recast: 0.20.5 - supports-color: 8.1.1 - tslog: 3.3.4 - typescript: ^4.8.4 - unbuild: 0.6.9 - username: 5.1.0 - vinyl: 2.2.1 - watch: 1.0.2 - zod: 3.20.2 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 - "@babel/plugin-transform-typescript": 7.12.1_ps3yxa7qdojvlda5ukda3zlwie - "@babel/preset-env": 7.12.10_ps3yxa7qdojvlda5ukda3zlwie - "@babel/types": 7.12.10 - "@mrleebo/prisma-ast": 0.4.1 - chalk: 4.1.2 - console-table-printer: 2.10.0 - cross-spawn: 7.0.3 - diff: 5.0.0 - enquirer: 2.3.6 - fast-glob: 3.2.12 - fs-extra: 10.0.1 - globby: 13.1.2 - got: 11.8.1 - jscodeshift: 0.13.0_slgjdbbopna4ebnpdn2nkn3v2a - mem-fs: 1.2.0 - mem-fs-editor: 8.0.0 - npm-which: 3.0.1 - ora: 5.3.0 - pluralize: 8.0.0 - prettier: 2.7.1 - recast: 0.20.5 - supports-color: 8.1.1 - tslog: 3.3.4 - username: 5.1.0 - vinyl: 2.2.1 - zod: 3.20.2 + "@babel/core": + specifier: 7.12.10 + version: 7.12.10(supports-color@8.1.1) + "@babel/plugin-transform-typescript": + specifier: 7.12.1 + version: 7.12.1(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/preset-env": + specifier: 7.12.10 + version: 7.12.10(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/types": + specifier: 7.12.10 + version: 7.12.10 + "@mrleebo/prisma-ast": + specifier: 0.4.1 + version: 0.4.1 + chalk: + specifier: ^4.1.0 + version: 4.1.2 + console-table-printer: + specifier: 2.10.0 + version: 2.10.0 + cross-spawn: + specifier: 7.0.3 + version: 7.0.3 + diff: + specifier: 5.0.0 + version: 5.0.0 + enquirer: + specifier: 2.3.6 + version: 2.3.6 + fast-glob: + specifier: 3.2.12 + version: 3.2.12 + fs-extra: + specifier: 10.0.1 + version: 10.0.1 + globby: + specifier: 13.1.2 + version: 13.1.2 + got: + specifier: ^11.8.1 + version: 11.8.1 + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + mem-fs: + specifier: 1.2.0 + version: 1.2.0 + mem-fs-editor: + specifier: 8.0.0 + version: 8.0.0 + npm-which: + specifier: 3.0.1 + version: 3.0.1 + ora: + specifier: 5.3.0 + version: 5.3.0 + pluralize: + specifier: 8.0.0 + version: 8.0.0 + prettier: + specifier: ^2.7.1 + version: 2.7.1 + recast: + specifier: 0.20.5 + version: 0.20.5 + supports-color: + specifier: 8.1.1 + version: 8.1.1 + tslog: + specifier: 3.3.4 + version: 3.3.4 + username: + specifier: 5.1.0 + version: 5.1.0 + vinyl: + specifier: 2.2.1 + version: 2.2.1 + zod: + specifier: 3.20.2 + version: 3.20.2 devDependencies: - "@blitzjs/config": link:../config - "@juanm04/cpx": 2.0.1_supports-color@8.1.1 - "@types/babel__core": 7.1.19 - "@types/diff": 5.0.2 - "@types/fs-extra": 9.0.13 - "@types/jscodeshift": 0.11.2 - "@types/mem-fs": 1.1.2 - "@types/mem-fs-editor": 7.0.1 - "@types/pluralize": 0.0.29 - "@types/prettier": 2.4.4 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - "@types/vinyl": 2.0.6 - "@typescript-eslint/eslint-plugin": 5.42.1_6dla7skwulzvrxac2nj7jbunfa - "@typescript-eslint/parser": 5.9.1_nw6v2wse7au2evadw7vu3hneg4 - babylon: 6.18.0 - debug: 4.3.3_supports-color@8.1.1 - eslint: 8.27.0_supports-color@8.1.1 - react: 18.2.0 - typescript: 4.8.4 - unbuild: 0.6.9_supports-color@8.1.1 - watch: 1.0.2 + "@blitzjs/config": + specifier: 2.0.0-beta.27 + version: link:../config + "@juanm04/cpx": + specifier: 2.0.1 + version: 2.0.1(supports-color@8.1.1) + "@types/babel__core": + specifier: 7.1.19 + version: 7.1.19 + "@types/diff": + specifier: 5.0.2 + version: 5.0.2 + "@types/fs-extra": + specifier: 9.0.13 + version: 9.0.13 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 + "@types/mem-fs": + specifier: 1.1.2 + version: 1.1.2 + "@types/mem-fs-editor": + specifier: 7.0.1 + version: 7.0.1 + "@types/pluralize": + specifier: 0.0.29 + version: 0.0.29 + "@types/prettier": + specifier: 2.4.4 + version: 2.4.4 + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@types/react-dom": + specifier: 17.0.14 + version: 17.0.14 + "@types/vinyl": + specifier: 2.0.6 + version: 2.0.6 + "@typescript-eslint/eslint-plugin": + specifier: 5.42.1 + version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + "@typescript-eslint/parser": + specifier: 5.9.1 + version: 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + babylon: + specifier: 6.18.0 + version: 6.18.0 + debug: + specifier: 4.3.3 + version: 4.3.3(supports-color@8.1.1) + eslint: + specifier: 8.27.0 + version: 8.27.0(supports-color@8.1.1) + react: + specifier: 18.2.0 + version: 18.2.0 + typescript: + specifier: ^4.8.4 + version: 4.8.4 + unbuild: + specifier: 0.6.9 + version: 0.6.9(supports-color@8.1.1) + watch: + specifier: 1.0.2 + version: 1.0.2 packages/pkg-template: - specifiers: - "@blitzjs/config": 2.0.0-beta.27 - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - "@typescript-eslint/eslint-plugin": 5.42.1 - "@typescript-eslint/parser": 5.9.1 - react: 18.2.0 - typescript: ^4.8.4 - unbuild: 0.7.6 - watch: 1.0.2 dependencies: - "@typescript-eslint/eslint-plugin": 5.42.1_z4ocgzhfuku3ho6vky337zbopm - "@typescript-eslint/parser": 5.9.1_typescript@4.8.4 + "@typescript-eslint/eslint-plugin": + specifier: 5.42.1 + version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + "@typescript-eslint/parser": + specifier: 5.9.1 + version: 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) devDependencies: - "@blitzjs/config": link:../config - "@types/react": 18.0.25 - "@types/react-dom": 17.0.14 - react: 18.2.0 - typescript: 4.8.4 - unbuild: 0.7.6 - watch: 1.0.2 + "@blitzjs/config": + specifier: 2.0.0-beta.27 + version: link:../config + "@types/react": + specifier: 18.0.25 + version: 18.0.25 + "@types/react-dom": + specifier: 17.0.14 + version: 17.0.14 + react: + specifier: 18.2.0 + version: 18.2.0 + typescript: + specifier: ^4.8.4 + version: 4.8.4 + unbuild: + specifier: 0.7.6 + version: 0.7.6(supports-color@8.1.1) + watch: + specifier: 1.0.2 + version: 1.0.2 recipes/base-web: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 recipes/bulma: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 recipes/bumbag-ui: - specifiers: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 + ast-types: + specifier: 0.14.2 + version: 0.14.2 recipes/chakra-ui: - specifiers: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 + ast-types: + specifier: 0.14.2 + version: 0.14.2 recipes/emotion: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 recipes/gh-action-yarn-mariadb: - specifiers: - blitz: 2.0.0-beta.27 dependencies: - blitz: link:../../packages/blitz + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz recipes/gh-action-yarn-postgres: - specifiers: - blitz: 2.0.0-beta.27 dependencies: - blitz: link:../../packages/blitz + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz recipes/ghost: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 recipes/graphql-apollo-server: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 - uuid: ^8.3.1 - dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 - uuid: 8.3.2 + dependencies: + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + uuid: + specifier: ^8.3.1 + version: 8.3.2 devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 recipes/logrocket: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 recipes/material-ui: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 recipes/next-ui: - specifiers: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 + ast-types: + specifier: 0.14.2 + version: 0.14.2 recipes/passenger: - specifiers: - blitz: 2.0.0-beta.27 dependencies: - blitz: link:../../packages/blitz + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz recipes/quirrel: - specifiers: - blitz: 2.0.0-beta.27 dependencies: - blitz: link:../../packages/blitz + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz recipes/reflexjs: - specifiers: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 + ast-types: + specifier: 0.14.2 + version: 0.14.2 recipes/render: - specifiers: - blitz: 2.0.0-beta.27 dependencies: - blitz: link:../../packages/blitz + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz recipes/secureheaders: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 - uuid: ^8.3.1 - dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 - uuid: 8.3.2 + dependencies: + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + uuid: + specifier: ^8.3.1 + version: 8.3.2 devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 recipes/stitches: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 recipes/styled-components: - specifiers: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 + ast-types: + specifier: 0.14.2 + version: 0.14.2 recipes/tailwind: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 recipes/theme-ui: - specifiers: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 - ast-types: 0.14.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 + ast-types: + specifier: 0.14.2 + version: 0.14.2 recipes/vanilla-extract: - specifiers: - "@types/jscodeshift": 0.11.2 - blitz: 2.0.0-beta.27 - jscodeshift: 0.13.0 dependencies: - blitz: link:../../packages/blitz - jscodeshift: 0.13.0 + blitz: + specifier: 2.0.0-beta.27 + version: link:../../packages/blitz + jscodeshift: + specifier: 0.13.0 + version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) devDependencies: - "@types/jscodeshift": 0.11.2 + "@types/jscodeshift": + specifier: 0.11.2 + version: 0.11.2 packages: - /@adobe/css-tools/4.0.1: + /@adobe/css-tools@4.0.1: resolution: { integrity: sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g==, } dev: true - /@ampproject/remapping/2.2.0: + /@ampproject/remapping@2.2.0: resolution: { integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, @@ -1675,7 +2348,7 @@ packages: "@jridgewell/gen-mapping": 0.1.1 "@jridgewell/trace-mapping": 0.3.11 - /@babel/code-frame/7.16.7: + /@babel/code-frame@7.16.7: resolution: { integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==, @@ -1685,7 +2358,7 @@ packages: dependencies: "@babel/highlight": 7.17.9 - /@babel/code-frame/7.18.6: + /@babel/code-frame@7.18.6: resolution: { integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==, @@ -1695,46 +2368,21 @@ packages: dependencies: "@babel/highlight": 7.18.6 - /@babel/compat-data/7.17.10: + /@babel/compat-data@7.17.10: resolution: { integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==, } engines: {node: ">=6.9.0"} - /@babel/compat-data/7.20.1: + /@babel/compat-data@7.20.1: resolution: { integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==, } engines: {node: ">=6.9.0"} - /@babel/core/7.12.10: - resolution: - { - integrity: sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.16.7 - "@babel/generator": 7.18.2 - "@babel/helper-module-transforms": 7.18.0 - "@babel/helpers": 7.18.2 - "@babel/parser": 7.18.4 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2 - "@babel/types": 7.18.4 - convert-source-map: 1.8.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.1 - lodash: 4.17.21 - semver: 5.7.1 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - - /@babel/core/7.12.10_supports-color@8.1.1: + /@babel/core@7.12.10(supports-color@8.1.1): resolution: { integrity: sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==, @@ -1743,100 +2391,48 @@ packages: dependencies: "@babel/code-frame": 7.16.7 "@babel/generator": 7.18.2 - "@babel/helper-module-transforms": 7.18.0_supports-color@8.1.1 - "@babel/helpers": 7.18.2_supports-color@8.1.1 - "@babel/parser": 7.18.4 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2_supports-color@8.1.1 - "@babel/types": 7.18.4 - convert-source-map: 1.8.0 - debug: 4.3.4_supports-color@8.1.1 - gensync: 1.0.0-beta.2 - json5: 2.2.1 - lodash: 4.17.21 - semver: 5.7.1 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/core/7.18.2: - resolution: - { - integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.16.7 - "@babel/generator": 7.18.2 - "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.18.2 - "@babel/helper-module-transforms": 7.18.0 - "@babel/helpers": 7.18.2 - "@babel/parser": 7.18.4 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2 - "@babel/types": 7.18.4 - convert-source-map: 1.8.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - - /@babel/core/7.18.2_supports-color@8.1.1: - resolution: - { - integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.16.7 - "@babel/generator": 7.18.2 - "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.18.2 - "@babel/helper-module-transforms": 7.18.0_supports-color@8.1.1 - "@babel/helpers": 7.18.2_supports-color@8.1.1 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helpers": 7.18.2(supports-color@8.1.1) "@babel/parser": 7.18.4 "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2_supports-color@8.1.1 + "@babel/traverse": 7.18.2(supports-color@8.1.1) "@babel/types": 7.18.4 convert-source-map: 1.8.0 - debug: 4.3.4_supports-color@8.1.1 + debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.1 - semver: 6.3.0 + lodash: 4.17.21 + semver: 5.7.1 + source-map: 0.5.7 transitivePeerDependencies: - supports-color - dev: false - /@babel/core/7.20.2: + /@babel/core@7.18.2(supports-color@8.1.1): resolution: { - integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==, + integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==, } engines: {node: ">=6.9.0"} dependencies: "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.18.6 - "@babel/generator": 7.20.4 - "@babel/helper-compilation-targets": 7.20.0_@babel+core@7.20.2 - "@babel/helper-module-transforms": 7.20.2 - "@babel/helpers": 7.20.1 - "@babel/parser": 7.20.3 - "@babel/template": 7.18.10 - "@babel/traverse": 7.20.1 - "@babel/types": 7.20.2 + "@babel/code-frame": 7.16.7 + "@babel/generator": 7.18.2 + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helpers": 7.18.2(supports-color@8.1.1) + "@babel/parser": 7.18.4 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2(supports-color@8.1.1) + "@babel/types": 7.18.4 convert-source-map: 1.8.0 - debug: 4.3.4 + debug: 4.3.3(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.1 semver: 6.3.0 transitivePeerDependencies: - supports-color - /@babel/core/7.20.2_supports-color@8.1.1: + /@babel/core@7.20.2(supports-color@8.1.1): resolution: { integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==, @@ -1846,23 +2442,22 @@ packages: "@ampproject/remapping": 2.2.0 "@babel/code-frame": 7.18.6 "@babel/generator": 7.20.4 - "@babel/helper-compilation-targets": 7.20.0_@babel+core@7.20.2 - "@babel/helper-module-transforms": 7.20.2_supports-color@8.1.1 - "@babel/helpers": 7.20.1_supports-color@8.1.1 + "@babel/helper-compilation-targets": 7.20.0(@babel/core@7.20.2) + "@babel/helper-module-transforms": 7.20.2(supports-color@8.1.1) + "@babel/helpers": 7.20.1(supports-color@8.1.1) "@babel/parser": 7.20.3 "@babel/template": 7.18.10 - "@babel/traverse": 7.20.1_supports-color@8.1.1 + "@babel/traverse": 7.20.1(supports-color@8.1.1) "@babel/types": 7.20.2 convert-source-map: 1.8.0 - debug: 4.3.4_supports-color@8.1.1 + debug: 4.3.3(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.1 semver: 6.3.0 transitivePeerDependencies: - supports-color - dev: true - /@babel/generator/7.18.2: + /@babel/generator@7.18.2: resolution: { integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==, @@ -1873,7 +2468,7 @@ packages: "@jridgewell/gen-mapping": 0.3.1 jsesc: 2.5.2 - /@babel/generator/7.20.4: + /@babel/generator@7.20.4: resolution: { integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==, @@ -1884,7 +2479,7 @@ packages: "@jridgewell/gen-mapping": 0.3.2 jsesc: 2.5.2 - /@babel/helper-annotate-as-pure/7.16.7: + /@babel/helper-annotate-as-pure@7.16.7: resolution: { integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==, @@ -1893,7 +2488,7 @@ packages: dependencies: "@babel/types": 7.18.4 - /@babel/helper-annotate-as-pure/7.18.6: + /@babel/helper-annotate-as-pure@7.18.6: resolution: { integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==, @@ -1903,7 +2498,7 @@ packages: "@babel/types": 7.20.2 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7: + /@babel/helper-builder-binary-assignment-operator-visitor@7.16.7: resolution: { integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==, @@ -1913,7 +2508,7 @@ packages: "@babel/helper-explode-assignable-expression": 7.16.7 "@babel/types": 7.20.2 - /@babel/helper-compilation-targets/7.18.2_@babel+core@7.12.10: + /@babel/helper-compilation-targets@7.18.2(@babel/core@7.12.10): resolution: { integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==, @@ -1923,12 +2518,12 @@ packages: "@babel/core": ^7.0.0 dependencies: "@babel/compat-data": 7.17.10 - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-validator-option": 7.16.7 browserslist: 4.20.3 semver: 6.3.0 - /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.2: + /@babel/helper-compilation-targets@7.18.2(@babel/core@7.18.2): resolution: { integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==, @@ -1938,12 +2533,12 @@ packages: "@babel/core": ^7.0.0 dependencies: "@babel/compat-data": 7.17.10 - "@babel/core": 7.18.2 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-validator-option": 7.16.7 browserslist: 4.20.3 semver: 6.3.0 - /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2: + /@babel/helper-compilation-targets@7.20.0(@babel/core@7.20.2): resolution: { integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==, @@ -1953,32 +2548,12 @@ packages: "@babel/core": ^7.0.0 dependencies: "@babel/compat-data": 7.20.1 - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-validator-option": 7.18.6 browserslist: 4.21.4 semver: 6.3.0 - /@babel/helper-create-class-features-plugin/7.17.12_@babel+core@7.12.10: - resolution: - { - integrity: sha512-sZoOeUTkFJMyhqCei2+Z+wtH/BehW8NVKQt7IRUQlRiOARuXymJYfN/FCcI8CvVbR0XVyDM6eLFOlR7YtiXnew==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2 - "@babel/helper-split-export-declaration": 7.16.7 - transitivePeerDependencies: - - supports-color - - /@babel/helper-create-class-features-plugin/7.17.12_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/helper-create-class-features-plugin@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-sZoOeUTkFJMyhqCei2+Z+wtH/BehW8NVKQt7IRUQlRiOARuXymJYfN/FCcI8CvVbR0XVyDM6eLFOlR7YtiXnew==, @@ -1987,60 +2562,18 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2_supports-color@8.1.1 - "@babel/helper-split-export-declaration": 7.16.7 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.12.10: - resolution: - { - integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2 - "@babel/helper-split-export-declaration": 7.16.7 - transitivePeerDependencies: - - supports-color - - /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.2: - resolution: - { - integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.18.2 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-annotate-as-pure": 7.16.7 "@babel/helper-environment-visitor": 7.18.2 "@babel/helper-function-name": 7.17.9 "@babel/helper-member-expression-to-functions": 7.17.7 "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) "@babel/helper-split-export-declaration": 7.16.7 transitivePeerDependencies: - supports-color - dev: false - /@babel/helper-create-class-features-plugin/7.18.0_aiglbhfglusiuujjiuminyg6ui: + /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, @@ -2049,19 +2582,18 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-annotate-as-pure": 7.16.7 "@babel/helper-environment-visitor": 7.18.2 "@babel/helper-function-name": 7.17.9 "@babel/helper-member-expression-to-functions": 7.17.7 "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2_supports-color@8.1.1 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) "@babel/helper-split-export-declaration": 7.16.7 transitivePeerDependencies: - supports-color - dev: false - /@babel/helper-create-class-features-plugin/7.18.0_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.18.2)(supports-color@8.1.1): resolution: { integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, @@ -2070,19 +2602,19 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-annotate-as-pure": 7.16.7 "@babel/helper-environment-visitor": 7.18.2 "@babel/helper-function-name": 7.17.9 "@babel/helper-member-expression-to-functions": 7.17.7 "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2_supports-color@8.1.1 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) "@babel/helper-split-export-declaration": 7.16.7 transitivePeerDependencies: - supports-color dev: false - /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.12.10: + /@babel/helper-create-regexp-features-plugin@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==, @@ -2091,11 +2623,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-annotate-as-pure": 7.16.7 regexpu-core: 5.0.1 - /@babel/helper-environment-visitor/7.18.2: + /@babel/helper-environment-visitor@7.18.2: resolution: { integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==, @@ -2104,14 +2636,14 @@ packages: dependencies: "@babel/types": 7.17.12 - /@babel/helper-environment-visitor/7.18.9: + /@babel/helper-environment-visitor@7.18.9: resolution: { integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, } engines: {node: ">=6.9.0"} - /@babel/helper-explode-assignable-expression/7.16.7: + /@babel/helper-explode-assignable-expression@7.16.7: resolution: { integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==, @@ -2120,7 +2652,7 @@ packages: dependencies: "@babel/types": 7.20.2 - /@babel/helper-function-name/7.17.9: + /@babel/helper-function-name@7.17.9: resolution: { integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==, @@ -2130,7 +2662,7 @@ packages: "@babel/template": 7.16.7 "@babel/types": 7.18.4 - /@babel/helper-function-name/7.19.0: + /@babel/helper-function-name@7.19.0: resolution: { integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==, @@ -2140,7 +2672,7 @@ packages: "@babel/template": 7.18.10 "@babel/types": 7.20.2 - /@babel/helper-hoist-variables/7.16.7: + /@babel/helper-hoist-variables@7.16.7: resolution: { integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==, @@ -2149,7 +2681,7 @@ packages: dependencies: "@babel/types": 7.18.4 - /@babel/helper-hoist-variables/7.18.6: + /@babel/helper-hoist-variables@7.18.6: resolution: { integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, @@ -2158,7 +2690,7 @@ packages: dependencies: "@babel/types": 7.20.2 - /@babel/helper-member-expression-to-functions/7.17.7: + /@babel/helper-member-expression-to-functions@7.17.7: resolution: { integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==, @@ -2167,7 +2699,7 @@ packages: dependencies: "@babel/types": 7.18.4 - /@babel/helper-module-imports/7.16.7: + /@babel/helper-module-imports@7.16.7: resolution: { integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==, @@ -2176,7 +2708,7 @@ packages: dependencies: "@babel/types": 7.18.4 - /@babel/helper-module-imports/7.18.6: + /@babel/helper-module-imports@7.18.6: resolution: { integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==, @@ -2185,25 +2717,7 @@ packages: dependencies: "@babel/types": 7.20.2 - /@babel/helper-module-transforms/7.18.0: - resolution: - { - integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-module-imports": 7.16.7 - "@babel/helper-simple-access": 7.18.2 - "@babel/helper-split-export-declaration": 7.16.7 - "@babel/helper-validator-identifier": 7.16.7 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2 - "@babel/types": 7.18.4 - transitivePeerDependencies: - - supports-color - - /@babel/helper-module-transforms/7.18.0_supports-color@8.1.1: + /@babel/helper-module-transforms@7.18.0(supports-color@8.1.1): resolution: { integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==, @@ -2216,31 +2730,12 @@ packages: "@babel/helper-split-export-declaration": 7.16.7 "@babel/helper-validator-identifier": 7.16.7 "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2_supports-color@8.1.1 + "@babel/traverse": 7.18.2(supports-color@8.1.1) "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color - dev: false - - /@babel/helper-module-transforms/7.20.2: - resolution: - { - integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-module-imports": 7.18.6 - "@babel/helper-simple-access": 7.20.2 - "@babel/helper-split-export-declaration": 7.18.6 - "@babel/helper-validator-identifier": 7.19.1 - "@babel/template": 7.18.10 - "@babel/traverse": 7.20.1 - "@babel/types": 7.20.2 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-transforms/7.20.2_supports-color@8.1.1: + /@babel/helper-module-transforms@7.20.2(supports-color@8.1.1): resolution: { integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==, @@ -2253,13 +2748,12 @@ packages: "@babel/helper-split-export-declaration": 7.18.6 "@babel/helper-validator-identifier": 7.19.1 "@babel/template": 7.18.10 - "@babel/traverse": 7.20.1_supports-color@8.1.1 + "@babel/traverse": 7.20.1(supports-color@8.1.1) "@babel/types": 7.20.2 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-optimise-call-expression/7.16.7: + /@babel/helper-optimise-call-expression@7.16.7: resolution: { integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==, @@ -2268,14 +2762,14 @@ packages: dependencies: "@babel/types": 7.18.4 - /@babel/helper-plugin-utils/7.17.12: + /@babel/helper-plugin-utils@7.17.12: resolution: { integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==, } engines: {node: ">=6.9.0"} - /@babel/helper-plugin-utils/7.20.2: + /@babel/helper-plugin-utils@7.20.2: resolution: { integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==, @@ -2283,20 +2777,7 @@ packages: engines: {node: ">=6.9.0"} dev: true - /@babel/helper-remap-async-to-generator/7.16.8: - resolution: - { - integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-wrap-function": 7.16.8 - "@babel/types": 7.18.4 - transitivePeerDependencies: - - supports-color - - /@babel/helper-remap-async-to-generator/7.16.8_supports-color@8.1.1: + /@babel/helper-remap-async-to-generator@7.16.8(supports-color@8.1.1): resolution: { integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==, @@ -2304,28 +2785,12 @@ packages: engines: {node: ">=6.9.0"} dependencies: "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-wrap-function": 7.16.8_supports-color@8.1.1 - "@babel/types": 7.18.4 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/helper-replace-supers/7.18.2: - resolution: - { - integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/traverse": 7.18.2 + "@babel/helper-wrap-function": 7.16.8(supports-color@8.1.1) "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color - /@babel/helper-replace-supers/7.18.2_supports-color@8.1.1: + /@babel/helper-replace-supers@7.18.2(supports-color@8.1.1): resolution: { integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==, @@ -2335,13 +2800,12 @@ packages: "@babel/helper-environment-visitor": 7.18.2 "@babel/helper-member-expression-to-functions": 7.17.7 "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/traverse": 7.18.2_supports-color@8.1.1 + "@babel/traverse": 7.18.2(supports-color@8.1.1) "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color - dev: false - /@babel/helper-simple-access/7.18.2: + /@babel/helper-simple-access@7.18.2: resolution: { integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==, @@ -2350,7 +2814,7 @@ packages: dependencies: "@babel/types": 7.18.4 - /@babel/helper-simple-access/7.20.2: + /@babel/helper-simple-access@7.20.2: resolution: { integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==, @@ -2359,7 +2823,7 @@ packages: dependencies: "@babel/types": 7.20.2 - /@babel/helper-skip-transparent-expression-wrappers/7.16.0: + /@babel/helper-skip-transparent-expression-wrappers@7.16.0: resolution: { integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==, @@ -2368,7 +2832,7 @@ packages: dependencies: "@babel/types": 7.18.4 - /@babel/helper-split-export-declaration/7.16.7: + /@babel/helper-split-export-declaration@7.16.7: resolution: { integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==, @@ -2377,7 +2841,7 @@ packages: dependencies: "@babel/types": 7.18.4 - /@babel/helper-split-export-declaration/7.18.6: + /@babel/helper-split-export-declaration@7.18.6: resolution: { integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, @@ -2386,56 +2850,42 @@ packages: dependencies: "@babel/types": 7.20.2 - /@babel/helper-string-parser/7.19.4: + /@babel/helper-string-parser@7.19.4: resolution: { integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, } engines: {node: ">=6.9.0"} - /@babel/helper-validator-identifier/7.16.7: + /@babel/helper-validator-identifier@7.16.7: resolution: { integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==, } engines: {node: ">=6.9.0"} - /@babel/helper-validator-identifier/7.19.1: + /@babel/helper-validator-identifier@7.19.1: resolution: { integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, } engines: {node: ">=6.9.0"} - /@babel/helper-validator-option/7.16.7: + /@babel/helper-validator-option@7.16.7: resolution: { integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==, } engines: {node: ">=6.9.0"} - /@babel/helper-validator-option/7.18.6: + /@babel/helper-validator-option@7.18.6: resolution: { integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==, } engines: {node: ">=6.9.0"} - /@babel/helper-wrap-function/7.16.8: - resolution: - { - integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-function-name": 7.17.9 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2 - "@babel/types": 7.18.4 - transitivePeerDependencies: - - supports-color - - /@babel/helper-wrap-function/7.16.8_supports-color@8.1.1: + /@babel/helper-wrap-function@7.16.8(supports-color@8.1.1): resolution: { integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==, @@ -2444,26 +2894,12 @@ packages: dependencies: "@babel/helper-function-name": 7.17.9 "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2_supports-color@8.1.1 - "@babel/types": 7.18.4 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/helpers/7.18.2: - resolution: - { - integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2 + "@babel/traverse": 7.18.2(supports-color@8.1.1) "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color - /@babel/helpers/7.18.2_supports-color@8.1.1: + /@babel/helpers@7.18.2(supports-color@8.1.1): resolution: { integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==, @@ -2471,26 +2907,12 @@ packages: engines: {node: ">=6.9.0"} dependencies: "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2_supports-color@8.1.1 + "@babel/traverse": 7.18.2(supports-color@8.1.1) "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color - dev: false - - /@babel/helpers/7.20.1: - resolution: - { - integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/template": 7.18.10 - "@babel/traverse": 7.20.1 - "@babel/types": 7.20.2 - transitivePeerDependencies: - - supports-color - /@babel/helpers/7.20.1_supports-color@8.1.1: + /@babel/helpers@7.20.1(supports-color@8.1.1): resolution: { integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==, @@ -2498,13 +2920,12 @@ packages: engines: {node: ">=6.9.0"} dependencies: "@babel/template": 7.18.10 - "@babel/traverse": 7.20.1_supports-color@8.1.1 + "@babel/traverse": 7.20.1(supports-color@8.1.1) "@babel/types": 7.20.2 transitivePeerDependencies: - supports-color - dev: true - /@babel/highlight/7.17.9: + /@babel/highlight@7.17.9: resolution: { integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==, @@ -2515,7 +2936,7 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/highlight/7.18.6: + /@babel/highlight@7.18.6: resolution: { integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, @@ -2526,7 +2947,7 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.18.4: + /@babel/parser@7.18.4: resolution: { integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==, @@ -2536,7 +2957,7 @@ packages: dependencies: "@babel/types": 7.18.4 - /@babel/parser/7.20.3: + /@babel/parser@7.20.3: resolution: { integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==, @@ -2546,23 +2967,7 @@ packages: dependencies: "@babel/types": 7.20.2 - /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.12.10: - resolution: - { - integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-remap-async-to-generator": 7.16.8 - "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.12.10 - transitivePeerDependencies: - - supports-color - - /@babel/plugin-proposal-async-generator-functions/7.17.12_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==, @@ -2571,46 +2976,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-remap-async-to-generator": 7.16.8_supports-color@8.1.1 - "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.12.10 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.12.10: - resolution: - { - integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-create-class-features-plugin": 7.18.0_@babel+core@7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - - /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.2: - resolution: - { - integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2 - "@babel/helper-create-class-features-plugin": 7.18.0_@babel+core@7.18.2 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-proposal-class-properties/7.17.12_aiglbhfglusiuujjiuminyg6ui: + /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, @@ -2619,14 +2992,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 - "@babel/helper-create-class-features-plugin": 7.18.0_aiglbhfglusiuujjiuminyg6ui + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.12.10)(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-proposal-class-properties/7.17.12_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.18.2)(supports-color@8.1.1): resolution: { integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, @@ -2635,14 +3007,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 - "@babel/helper-create-class-features-plugin": 7.18.0_ps3yxa7qdojvlda5ukda3zlwie + "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.18.2)(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.12.10: + /@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==, @@ -2651,11 +3023,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.12.10 + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.12.10: + /@babel/plugin-proposal-export-namespace-from@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==, @@ -2664,11 +3036,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-export-namespace-from": 7.8.3_@babel+core@7.12.10 + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.12.10: + /@babel/plugin-proposal-json-strings@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==, @@ -2677,11 +3049,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.12.10 + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.12.10: + /@babel/plugin-proposal-logical-assignment-operators@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==, @@ -2690,11 +3062,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.12.10 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) - /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.12.10: + /@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==, @@ -2703,11 +3075,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.12.10 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.18.2): resolution: { integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==, @@ -2716,12 +3088,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.18.2 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.18.2) dev: false - /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.12.10: + /@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==, @@ -2730,11 +3102,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.12.10 + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) - /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.12.10: + /@babel/plugin-proposal-object-rest-spread@7.18.0(@babel/core@7.12.10): resolution: { integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==, @@ -2744,13 +3116,13 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/compat-data": 7.17.10 - "@babel/core": 7.12.10 - "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-transform-parameters": 7.17.12_@babel+core@7.12.10 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.12.10) - /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.12.10: + /@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==, @@ -2759,11 +3131,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.12.10 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.12.10: + /@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==, @@ -2772,12 +3144,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 - "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.12.10 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.2: + /@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.18.2): resolution: { integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==, @@ -2786,13 +3158,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 - "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.18.2 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.18.2) dev: false - /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.12.10: + /@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==, @@ -2801,42 +3173,37 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-create-class-features-plugin": 7.17.12_@babel+core@7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-methods/7.17.12_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-proposal-unicode-property-regex@7.17.12(@babel/core@7.12.10): resolution: { - integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==, + integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==, } - engines: {node: ">=6.9.0"} + engines: {node: ">=4"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 - "@babel/helper-create-class-features-plugin": 7.17.12_ps3yxa7qdojvlda5ukda3zlwie + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.12.10: + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.10): resolution: { - integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==, + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, } - engines: {node: ">=4"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-create-regexp-features-plugin": 7.17.12_@babel+core@7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.10: + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.2): resolution: { integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, @@ -2844,21 +3211,22 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.2: + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.12.10): resolution: { - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 + dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.2): resolution: { integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, @@ -2866,10 +3234,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.12.10: + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.10): resolution: { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, @@ -2877,10 +3245,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.2: + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.2): resolution: { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, @@ -2888,10 +3256,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.10: + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.12.10): resolution: { integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, @@ -2899,10 +3267,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.10: + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.12.10): resolution: { integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, @@ -2910,10 +3278,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.2: + /@babel/plugin-syntax-flow@7.17.12(@babel/core@7.18.2): resolution: { integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==, @@ -2922,11 +3290,23 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.2: + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.12.10): + resolution: + { + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + dev: true + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.2): resolution: { integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, @@ -2934,10 +3314,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.10: + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.10): resolution: { integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, @@ -2945,10 +3325,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.2): resolution: { integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, @@ -2956,10 +3336,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.12.10: + /@babel/plugin-syntax-jsx@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==, @@ -2968,11 +3348,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.2: + /@babel/plugin-syntax-jsx@7.17.12(@babel/core@7.18.2): resolution: { integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==, @@ -2981,11 +3361,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 dev: true - /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.20.2: + /@babel/plugin-syntax-jsx@7.17.12(@babel/core@7.20.2): resolution: { integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==, @@ -2994,10 +3374,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.2: + /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.2): resolution: { integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, @@ -3006,11 +3386,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.20.2 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.10: + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.12.10): resolution: { integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, @@ -3018,10 +3398,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.2: + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.2): resolution: { integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, @@ -3029,10 +3409,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.10: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.10): resolution: { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, @@ -3040,10 +3420,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.2: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.18.2): resolution: { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, @@ -3051,11 +3431,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.2): resolution: { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, @@ -3063,10 +3443,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.10: + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.12.10): resolution: { integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, @@ -3074,10 +3454,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.2: + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.2): resolution: { integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, @@ -3085,10 +3465,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.10: + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.10): resolution: { integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, @@ -3096,10 +3476,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.2): resolution: { integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, @@ -3107,10 +3487,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.10: + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.10): resolution: { integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, @@ -3118,10 +3498,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.2): resolution: { integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, @@ -3129,10 +3509,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.10: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.10): resolution: { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, @@ -3140,10 +3520,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.2: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.18.2): resolution: { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, @@ -3151,11 +3531,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.2): resolution: { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, @@ -3163,10 +3543,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.12.10: + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.12.10): resolution: { integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, @@ -3175,10 +3555,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.2: + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.2): resolution: { integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, @@ -3187,10 +3567,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.12.10: + /@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==, @@ -3199,11 +3579,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.2: + /@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.18.2): resolution: { integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==, @@ -3212,11 +3591,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.20.2: + /@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.20.2): resolution: { integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==, @@ -3225,10 +3604,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.12.10: + /@babel/plugin-transform-arrow-functions@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==, @@ -3237,26 +3616,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.12.10: - resolution: - { - integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-module-imports": 7.16.7 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-remap-async-to-generator": 7.16.8 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-async-to-generator/7.17.12_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==, @@ -3265,15 +3628,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-module-imports": 7.16.7 "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-remap-async-to-generator": 7.16.8_supports-color@8.1.1 + "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.12.10: + /@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==, @@ -3282,10 +3644,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-block-scoping/7.18.4_@babel+core@7.12.10: + /@babel/plugin-transform-block-scoping@7.18.4(@babel/core@7.12.10): resolution: { integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==, @@ -3294,31 +3656,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-classes/7.18.4_@babel+core@7.12.10: - resolution: - { - integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-replace-supers": 7.18.2 - "@babel/helper-split-export-declaration": 7.16.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-classes/7.18.4_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-transform-classes@7.18.4(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==, @@ -3327,20 +3668,19 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-annotate-as-pure": 7.16.7 "@babel/helper-environment-visitor": 7.18.2 "@babel/helper-function-name": 7.17.9 "@babel/helper-optimise-call-expression": 7.16.7 "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-replace-supers": 7.18.2_supports-color@8.1.1 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) "@babel/helper-split-export-declaration": 7.16.7 globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.12.10: + /@babel/plugin-transform-computed-properties@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==, @@ -3349,10 +3689,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.12.10: + /@babel/plugin-transform-destructuring@7.18.0(@babel/core@7.12.10): resolution: { integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==, @@ -3361,10 +3701,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.12.10: + /@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==, @@ -3373,11 +3713,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-create-regexp-features-plugin": 7.17.12_@babel+core@7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.12.10: + /@babel/plugin-transform-duplicate-keys@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==, @@ -3386,10 +3726,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.12.10: + /@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==, @@ -3398,11 +3738,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-flow-strip-types@7.17.12(@babel/core@7.18.2): resolution: { integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==, @@ -3411,12 +3751,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-flow": 7.17.12_@babel+core@7.18.2 + "@babel/plugin-syntax-flow": 7.17.12(@babel/core@7.18.2) dev: false - /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.12.10: + /@babel/plugin-transform-for-of@7.18.1(@babel/core@7.12.10): resolution: { integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==, @@ -3425,10 +3765,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.12.10: + /@babel/plugin-transform-function-name@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==, @@ -3437,12 +3777,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) "@babel/helper-function-name": 7.17.9 "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-literals/7.17.12_@babel+core@7.12.10: + /@babel/plugin-transform-literals@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==, @@ -3451,10 +3791,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.12.10: + /@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==, @@ -3463,26 +3803,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.12.10: - resolution: - { - integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-module-transforms": 7.18.0 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-amd/7.18.0_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==, @@ -3491,50 +3815,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 - "@babel/helper-module-transforms": 7.18.0_supports-color@8.1.1 - "@babel/helper-plugin-utils": 7.17.12 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.12.10: - resolution: - { - integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-module-transforms": 7.18.0 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-simple-access": 7.18.2 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - - /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.2: - resolution: - { - integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2 - "@babel/helper-module-transforms": 7.18.0 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-simple-access": 7.18.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-modules-commonjs/7.18.2_aiglbhfglusiuujjiuminyg6ui: + /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, @@ -3543,16 +3831,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 - "@babel/helper-module-transforms": 7.18.0_supports-color@8.1.1 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-simple-access": 7.18.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-modules-commonjs/7.18.2_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.18.2)(supports-color@8.1.1): resolution: { integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, @@ -3561,8 +3848,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 - "@babel/helper-module-transforms": 7.18.0_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-simple-access": 7.18.2 babel-plugin-dynamic-import-node: 2.3.3 @@ -3570,25 +3857,7 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-systemjs/7.18.4_@babel+core@7.12.10: - resolution: - { - integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-hoist-variables": 7.16.7 - "@babel/helper-module-transforms": 7.18.0 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-identifier": 7.16.7 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - - /@babel/plugin-transform-modules-systemjs/7.18.4_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==, @@ -3597,32 +3866,16 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-hoist-variables": 7.16.7 - "@babel/helper-module-transforms": 7.18.0_supports-color@8.1.1 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-validator-identifier": 7.16.7 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: false - - /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.12.10: - resolution: - { - integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-module-transforms": 7.18.0 - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-umd/7.18.0_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==, @@ -3631,14 +3884,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 - "@babel/helper-module-transforms": 7.18.0_supports-color@8.1.1 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.12.10: + /@babel/plugin-transform-named-capturing-groups-regex@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==, @@ -3647,11 +3899,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-create-regexp-features-plugin": 7.17.12_@babel+core@7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-new-target/7.17.12_@babel+core@7.12.10: + /@babel/plugin-transform-new-target@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==, @@ -3660,25 +3912,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.12.10: - resolution: - { - integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-replace-supers": 7.18.2 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-object-super/7.16.7_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-transform-object-super@7.16.7(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==, @@ -3687,14 +3924,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-replace-supers": 7.18.2_supports-color@8.1.1 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.12.10: + /@babel/plugin-transform-parameters@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==, @@ -3703,10 +3939,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.12.10: + /@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==, @@ -3715,10 +3951,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-react-jsx-development@7.16.7(@babel/core@7.18.2): resolution: { integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==, @@ -3727,11 +3963,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2 - "@babel/plugin-transform-react-jsx": 7.17.12_@babel+core@7.18.2 + "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/plugin-transform-react-jsx": 7.17.12(@babel/core@7.18.2) dev: true - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.20.2): resolution: { integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, @@ -3740,11 +3976,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 - "@babel/plugin-transform-react-jsx": 7.19.0_@babel+core@7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.20.2) dev: true - /@babel/plugin-transform-react-jsx-self/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-react-jsx-self@7.17.12(@babel/core@7.18.2): resolution: { integrity: sha512-7S9G2B44EnYOx74mue02t1uD8ckWZ/ee6Uz/qfdzc35uWHX5NgRy9i+iJSb2LFRgMd+QV9zNcStQaazzzZ3n3Q==, @@ -3753,11 +3989,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 dev: true - /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.20.2): resolution: { integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==, @@ -3766,11 +4002,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.20.2 dev: true - /@babel/plugin-transform-react-jsx-source/7.16.7_@babel+core@7.18.2: + /@babel/plugin-transform-react-jsx-source@7.16.7(@babel/core@7.18.2): resolution: { integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==, @@ -3779,11 +4015,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 dev: true - /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.2: + /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.20.2): resolution: { integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==, @@ -3792,11 +4028,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.20.2 dev: true - /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.2: + /@babel/plugin-transform-react-jsx@7.17.12(@babel/core@7.18.2): resolution: { integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==, @@ -3805,15 +4041,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-annotate-as-pure": 7.16.7 "@babel/helper-module-imports": 7.16.7 "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-jsx": 7.17.12_@babel+core@7.18.2 + "@babel/plugin-syntax-jsx": 7.17.12(@babel/core@7.18.2) "@babel/types": 7.18.4 dev: true - /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2: + /@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.20.2): resolution: { integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==, @@ -3822,15 +4058,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-annotate-as-pure": 7.18.6 "@babel/helper-module-imports": 7.18.6 "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.20.2 + "@babel/plugin-syntax-jsx": 7.18.6(@babel/core@7.20.2) "@babel/types": 7.20.2 dev: true - /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.12.10: + /@babel/plugin-transform-regenerator@7.18.0(@babel/core@7.12.10): resolution: { integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==, @@ -3839,11 +4075,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 regenerator-transform: 0.15.0 - /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.12.10: + /@babel/plugin-transform-reserved-words@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==, @@ -3852,10 +4088,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.12.10: + /@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==, @@ -3864,10 +4100,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-spread/7.17.12_@babel+core@7.12.10: + /@babel/plugin-transform-spread@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==, @@ -3876,11 +4112,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 - /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.12.10: + /@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==, @@ -3889,10 +4125,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.12.10: + /@babel/plugin-transform-template-literals@7.18.2(@babel/core@7.12.10): resolution: { integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==, @@ -3901,10 +4137,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.12.10: + /@babel/plugin-transform-typeof-symbol@7.17.12(@babel/core@7.12.10): resolution: { integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==, @@ -3913,10 +4149,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-typescript/7.12.1_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/plugin-transform-typescript@7.12.1(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw==, @@ -3924,32 +4160,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10_supports-color@8.1.1 - "@babel/helper-create-class-features-plugin": 7.18.0_ps3yxa7qdojvlda5ukda3zlwie - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-typescript": 7.17.12_@babel+core@7.12.10 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.2: - resolution: - { - integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2 - "@babel/helper-create-class-features-plugin": 7.18.0_@babel+core@7.18.2 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.12.10)(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-typescript": 7.17.12_@babel+core@7.18.2 + "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.12.10) transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-typescript/7.18.4_aiglbhfglusiuujjiuminyg6ui: + /@babel/plugin-transform-typescript@7.18.4(@babel/core@7.18.2)(supports-color@8.1.1): resolution: { integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==, @@ -3958,15 +4177,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 - "@babel/helper-create-class-features-plugin": 7.18.0_aiglbhfglusiuujjiuminyg6ui + "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.18.2)(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-typescript": 7.17.12_@babel+core@7.18.2 + "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.18.2) transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.12.10: + /@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==, @@ -3975,10 +4194,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.12.10: + /@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==, @@ -3987,89 +4206,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-create-regexp-features-plugin": 7.17.12_@babel+core@7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/preset-env/7.12.10_@babel+core@7.12.10: - resolution: - { - integrity: sha512-Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.17.10 - "@babel/core": 7.12.10 - "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.12.10 - "@babel/helper-module-imports": 7.16.7 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-option": 7.16.7 - "@babel/plugin-proposal-async-generator-functions": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-class-properties": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-dynamic-import": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-proposal-export-namespace-from": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-json-strings": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-logical-assignment-operators": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-numeric-separator": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-proposal-object-rest-spread": 7.18.0_@babel+core@7.12.10 - "@babel/plugin-proposal-optional-catch-binding": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-proposal-optional-chaining": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-private-methods": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-unicode-property-regex": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.12.10 - "@babel/plugin-syntax-class-properties": 7.12.13_@babel+core@7.12.10 - "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-export-namespace-from": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.12.10 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.12.10 - "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-top-level-await": 7.14.5_@babel+core@7.12.10 - "@babel/plugin-transform-arrow-functions": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-async-to-generator": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-block-scoped-functions": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-block-scoping": 7.18.4_@babel+core@7.12.10 - "@babel/plugin-transform-classes": 7.18.4_@babel+core@7.12.10 - "@babel/plugin-transform-computed-properties": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-destructuring": 7.18.0_@babel+core@7.12.10 - "@babel/plugin-transform-dotall-regex": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-duplicate-keys": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-exponentiation-operator": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-for-of": 7.18.1_@babel+core@7.12.10 - "@babel/plugin-transform-function-name": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-literals": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-member-expression-literals": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-modules-amd": 7.18.0_@babel+core@7.12.10 - "@babel/plugin-transform-modules-commonjs": 7.18.2_@babel+core@7.12.10 - "@babel/plugin-transform-modules-systemjs": 7.18.4_@babel+core@7.12.10 - "@babel/plugin-transform-modules-umd": 7.18.0_@babel+core@7.12.10 - "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-new-target": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-object-super": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-parameters": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-property-literals": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-regenerator": 7.18.0_@babel+core@7.12.10 - "@babel/plugin-transform-reserved-words": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-shorthand-properties": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-spread": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-sticky-regex": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-template-literals": 7.18.2_@babel+core@7.12.10 - "@babel/plugin-transform-typeof-symbol": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-unicode-escapes": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-unicode-regex": 7.16.7_@babel+core@7.12.10 - "@babel/preset-modules": 0.1.5_@babel+core@7.12.10 - "@babel/types": 7.17.12 - core-js-compat: 3.22.5 - semver: 5.7.1 - transitivePeerDependencies: - - supports-color - /@babel/preset-env/7.12.10_ps3yxa7qdojvlda5ukda3zlwie: + /@babel/preset-env@7.12.10(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA==, @@ -4078,77 +4219,76 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/compat-data": 7.17.10 - "@babel/core": 7.12.10_supports-color@8.1.1 - "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) "@babel/helper-module-imports": 7.16.7 "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-validator-option": 7.16.7 - "@babel/plugin-proposal-async-generator-functions": 7.17.12_ps3yxa7qdojvlda5ukda3zlwie - "@babel/plugin-proposal-class-properties": 7.17.12_ps3yxa7qdojvlda5ukda3zlwie - "@babel/plugin-proposal-dynamic-import": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-proposal-export-namespace-from": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-json-strings": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-logical-assignment-operators": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-numeric-separator": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-proposal-object-rest-spread": 7.18.0_@babel+core@7.12.10 - "@babel/plugin-proposal-optional-catch-binding": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-proposal-optional-chaining": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-proposal-private-methods": 7.17.12_ps3yxa7qdojvlda5ukda3zlwie - "@babel/plugin-proposal-unicode-property-regex": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.12.10 - "@babel/plugin-syntax-class-properties": 7.12.13_@babel+core@7.12.10 - "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-export-namespace-from": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.12.10 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.12.10 - "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.12.10 - "@babel/plugin-syntax-top-level-await": 7.14.5_@babel+core@7.12.10 - "@babel/plugin-transform-arrow-functions": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-async-to-generator": 7.17.12_ps3yxa7qdojvlda5ukda3zlwie - "@babel/plugin-transform-block-scoped-functions": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-block-scoping": 7.18.4_@babel+core@7.12.10 - "@babel/plugin-transform-classes": 7.18.4_ps3yxa7qdojvlda5ukda3zlwie - "@babel/plugin-transform-computed-properties": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-destructuring": 7.18.0_@babel+core@7.12.10 - "@babel/plugin-transform-dotall-regex": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-duplicate-keys": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-exponentiation-operator": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-for-of": 7.18.1_@babel+core@7.12.10 - "@babel/plugin-transform-function-name": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-literals": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-member-expression-literals": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-modules-amd": 7.18.0_ps3yxa7qdojvlda5ukda3zlwie - "@babel/plugin-transform-modules-commonjs": 7.18.2_ps3yxa7qdojvlda5ukda3zlwie - "@babel/plugin-transform-modules-systemjs": 7.18.4_ps3yxa7qdojvlda5ukda3zlwie - "@babel/plugin-transform-modules-umd": 7.18.0_ps3yxa7qdojvlda5ukda3zlwie - "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-new-target": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-object-super": 7.16.7_ps3yxa7qdojvlda5ukda3zlwie - "@babel/plugin-transform-parameters": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-property-literals": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-regenerator": 7.18.0_@babel+core@7.12.10 - "@babel/plugin-transform-reserved-words": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-shorthand-properties": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-spread": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-sticky-regex": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-template-literals": 7.18.2_@babel+core@7.12.10 - "@babel/plugin-transform-typeof-symbol": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-unicode-escapes": 7.16.7_@babel+core@7.12.10 - "@babel/plugin-transform-unicode-regex": 7.16.7_@babel+core@7.12.10 - "@babel/preset-modules": 0.1.5_@babel+core@7.12.10 + "@babel/plugin-proposal-async-generator-functions": 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-proposal-dynamic-import": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-proposal-export-namespace-from": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-json-strings": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-logical-assignment-operators": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-numeric-separator": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-proposal-object-rest-spread": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-proposal-optional-catch-binding": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-private-methods": 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.12.10) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.12.10) + "@babel/plugin-transform-arrow-functions": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-async-to-generator": 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-transform-block-scoped-functions": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-block-scoping": 7.18.4(@babel/core@7.12.10) + "@babel/plugin-transform-classes": 7.18.4(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-transform-computed-properties": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-destructuring": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-duplicate-keys": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-exponentiation-operator": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-for-of": 7.18.1(@babel/core@7.12.10) + "@babel/plugin-transform-function-name": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-literals": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-member-expression-literals": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-modules-amd": 7.18.0(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-transform-modules-systemjs": 7.18.4(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-transform-modules-umd": 7.18.0(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-new-target": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-object-super": 7.16.7(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-property-literals": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-regenerator": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-transform-reserved-words": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-shorthand-properties": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-spread": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-sticky-regex": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-template-literals": 7.18.2(@babel/core@7.12.10) + "@babel/plugin-transform-typeof-symbol": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-unicode-escapes": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-unicode-regex": 7.16.7(@babel/core@7.12.10) + "@babel/preset-modules": 0.1.5(@babel/core@7.12.10) "@babel/types": 7.17.12 core-js-compat: 3.22.5 semver: 5.7.1 transitivePeerDependencies: - supports-color - dev: false - /@babel/preset-flow/7.17.12_@babel+core@7.18.2: + /@babel/preset-flow@7.17.12(@babel/core@7.18.2): resolution: { integrity: sha512-7QDz7k4uiaBdu7N89VKjUn807pJRXmdirQu0KyR9LXnQrr5Jt41eIMKTS7ljej+H29erwmMrwq9Io9mJHLI3Lw==, @@ -4157,13 +4297,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-validator-option": 7.16.7 - "@babel/plugin-transform-flow-strip-types": 7.17.12_@babel+core@7.18.2 + "@babel/plugin-transform-flow-strip-types": 7.17.12(@babel/core@7.18.2) dev: false - /@babel/preset-modules/0.1.5_@babel+core@7.12.10: + /@babel/preset-modules@0.1.5(@babel/core@7.12.10): resolution: { integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==, @@ -4171,31 +4311,14 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-proposal-unicode-property-regex": 7.17.12_@babel+core@7.12.10 - "@babel/plugin-transform-dotall-regex": 7.16.7_@babel+core@7.12.10 + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) "@babel/types": 7.18.4 esutils: 2.0.3 - /@babel/preset-typescript/7.17.12_@babel+core@7.18.2: - resolution: - { - integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-option": 7.16.7 - "@babel/plugin-transform-typescript": 7.18.4_@babel+core@7.18.2 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/preset-typescript/7.17.12_aiglbhfglusiuujjiuminyg6ui: + /@babel/preset-typescript@7.17.12(@babel/core@7.18.2)(supports-color@8.1.1): resolution: { integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==, @@ -4204,15 +4327,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-validator-option": 7.16.7 - "@babel/plugin-transform-typescript": 7.18.4_aiglbhfglusiuujjiuminyg6ui + "@babel/plugin-transform-typescript": 7.18.4(@babel/core@7.18.2)(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false - /@babel/register/7.17.7_@babel+core@7.18.2: + /@babel/register@7.17.7(@babel/core@7.18.2): resolution: { integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==, @@ -4221,7 +4344,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -4229,7 +4352,7 @@ packages: source-map-support: 0.5.21 dev: false - /@babel/runtime-corejs3/7.18.3: + /@babel/runtime-corejs3@7.18.3: resolution: { integrity: sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q==, @@ -4239,7 +4362,7 @@ packages: core-js-pure: 3.23.0 regenerator-runtime: 0.13.9 - /@babel/runtime/7.18.3: + /@babel/runtime@7.18.3: resolution: { integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==, @@ -4248,7 +4371,7 @@ packages: dependencies: regenerator-runtime: 0.13.9 - /@babel/standalone/7.18.9: + /@babel/standalone@7.18.9: resolution: { integrity: sha512-6E+p5azHMHcMkHzGFnA7Pqhtgfwx1cClwjMqomMHhdFupCLZDDpVQUctRGYE7p7nn7cXJZSI/L9en+tt30AP3w==, @@ -4256,7 +4379,7 @@ packages: engines: {node: ">=6.9.0"} dev: true - /@babel/template/7.16.7: + /@babel/template@7.16.7: resolution: { integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==, @@ -4267,7 +4390,7 @@ packages: "@babel/parser": 7.18.4 "@babel/types": 7.18.4 - /@babel/template/7.18.10: + /@babel/template@7.18.10: resolution: { integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==, @@ -4278,27 +4401,7 @@ packages: "@babel/parser": 7.20.3 "@babel/types": 7.20.2 - /@babel/traverse/7.18.2: - resolution: - { - integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.16.7 - "@babel/generator": 7.18.2 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-hoist-variables": 7.16.7 - "@babel/helper-split-export-declaration": 7.16.7 - "@babel/parser": 7.18.4 - "@babel/types": 7.18.4 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - /@babel/traverse/7.18.2_supports-color@8.1.1: + /@babel/traverse@7.18.2(supports-color@8.1.1): resolution: { integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==, @@ -4313,33 +4416,12 @@ packages: "@babel/helper-split-export-declaration": 7.16.7 "@babel/parser": 7.18.4 "@babel/types": 7.18.4 - debug: 4.3.4_supports-color@8.1.1 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/traverse/7.20.1: - resolution: - { - integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.18.6 - "@babel/generator": 7.20.4 - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-function-name": 7.19.0 - "@babel/helper-hoist-variables": 7.18.6 - "@babel/helper-split-export-declaration": 7.18.6 - "@babel/parser": 7.20.3 - "@babel/types": 7.20.2 - debug: 4.3.4 + debug: 4.3.3(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/traverse/7.20.1_supports-color@8.1.1: + /@babel/traverse@7.20.1(supports-color@8.1.1): resolution: { integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==, @@ -4354,13 +4436,12 @@ packages: "@babel/helper-split-export-declaration": 7.18.6 "@babel/parser": 7.20.3 "@babel/types": 7.20.2 - debug: 4.3.4_supports-color@8.1.1 + debug: 4.3.3(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: true - /@babel/types/7.12.10: + /@babel/types@7.12.10: resolution: { integrity: sha512-sf6wboJV5mGyip2hIpDSKsr80RszPinEFjsHTalMxZAZkoQ2/2yQzxlcFN52SJqsyPfLtPmenL4g2KB3KJXPDw==, @@ -4369,9 +4450,8 @@ packages: "@babel/helper-validator-identifier": 7.16.7 lodash: 4.17.21 to-fast-properties: 2.0.0 - dev: false - /@babel/types/7.17.12: + /@babel/types@7.17.12: resolution: { integrity: sha512-rH8i29wcZ6x9xjzI5ILHL/yZkbQnCERdHlogKuIb4PUr7do4iT8DPekrTbBLWTnRQm6U0GYABbTMSzijmEqlAg==, @@ -4381,7 +4461,7 @@ packages: "@babel/helper-validator-identifier": 7.16.7 to-fast-properties: 2.0.0 - /@babel/types/7.18.4: + /@babel/types@7.18.4: resolution: { integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==, @@ -4391,7 +4471,7 @@ packages: "@babel/helper-validator-identifier": 7.16.7 to-fast-properties: 2.0.0 - /@babel/types/7.20.2: + /@babel/types@7.20.2: resolution: { integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==, @@ -4402,13 +4482,13 @@ packages: "@babel/helper-validator-identifier": 7.19.1 to-fast-properties: 2.0.0 - /@bcoe/v8-coverage/0.2.3: + /@bcoe/v8-coverage@0.2.3: resolution: { integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, } - /@blitzjs/manypkg/0.19.1: + /@blitzjs/manypkg@0.19.1: resolution: { integrity: sha512-Z8liT59nSKynZceIN5tba7cZuM15vOuSGTOGNhgcaLlTMtqp/Jlo3wVvvLn9YEIe/V+nwlq5ydLrjPl4I6ZLYA==, @@ -4434,7 +4514,7 @@ packages: - supports-color dev: false - /@changesets/apply-release-plan/6.0.0: + /@changesets/apply-release-plan@6.0.0: resolution: { integrity: sha512-gp6nIdVdfYdwKww2+f8whckKmvfE4JEm4jJgBhTmooi0uzHWhnxvk6JIzQi89qEAMINN0SeVNnXiAtbFY0Mj3w==, @@ -4455,7 +4535,7 @@ packages: semver: 5.7.1 dev: false - /@changesets/assemble-release-plan/5.1.3: + /@changesets/assemble-release-plan@5.1.3: resolution: { integrity: sha512-I+TTkUoqvxBEuDLoJfJYKDXIJ+nyiTbVJ8KGhpXEsLq4N/ms/AStSbouJwF2d/p3cB+RCPr5+gXh31GSN4kA7w==, @@ -4469,7 +4549,7 @@ packages: semver: 5.7.1 dev: false - /@changesets/changelog-git/0.1.11: + /@changesets/changelog-git@0.1.11: resolution: { integrity: sha512-sWJvAm+raRPeES9usNpZRkooeEB93lOpUN0Lmjz5vhVAb7XGIZrHEJ93155bpE1S0c4oJ5Di9ZWgzIwqhWP/Wg==, @@ -4478,7 +4558,7 @@ packages: "@changesets/types": 5.0.0 dev: false - /@changesets/cli/2.22.0: + /@changesets/cli@2.22.0: resolution: { integrity: sha512-4bA3YoBkd5cm5WUxmrR2N9WYE7EeQcM+R3bVYMUj2NvffkQVpU3ckAI+z8UICoojq+HRl2OEwtz+S5UBmYY4zw==, @@ -4519,7 +4599,7 @@ packages: tty-table: 2.8.13 dev: false - /@changesets/config/2.0.0: + /@changesets/config@2.0.0: resolution: { integrity: sha512-r5bIFY6CN3K6SQ+HZbjyE3HXrBIopONR47mmX7zUbORlybQXtympq9rVAOzc0Oflbap8QeIexc+hikfZoREXDg==, @@ -4534,7 +4614,7 @@ packages: micromatch: 4.0.5 dev: false - /@changesets/errors/0.1.4: + /@changesets/errors@0.1.4: resolution: { integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==, @@ -4543,7 +4623,7 @@ packages: extendable-error: 0.1.7 dev: false - /@changesets/get-dependents-graph/1.3.2: + /@changesets/get-dependents-graph@1.3.2: resolution: { integrity: sha512-tsqA6qZRB86SQuApSoDvI8yEWdyIlo/WLI4NUEdhhxLMJ0dapdeT6rUZRgSZzK1X2nv5YwR0MxQBbDAiDibKrg==, @@ -4556,7 +4636,7 @@ packages: semver: 5.7.1 dev: false - /@changesets/get-release-plan/3.0.9: + /@changesets/get-release-plan@3.0.9: resolution: { integrity: sha512-5C1r4DcOjVxcCvPmXpymeyT6mdSTLCNiB2L+5uf19BRkDKndJdIQorH5Fe2XBR2nHUcZQFT+2TXDzCepat969w==, @@ -4571,14 +4651,14 @@ packages: "@manypkg/get-packages": 1.1.3 dev: false - /@changesets/get-version-range-type/0.3.2: + /@changesets/get-version-range-type@0.3.2: resolution: { integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==, } dev: false - /@changesets/git/1.3.2: + /@changesets/git@1.3.2: resolution: { integrity: sha512-p5UL+urAg0Nnpt70DLiBe2iSsMcDubTo9fTOD/61krmcJ466MGh71OHwdAwu1xG5+NKzeysdy1joRTg8CXcEXA==, @@ -4592,7 +4672,7 @@ packages: spawndamnit: 2.0.0 dev: false - /@changesets/logger/0.0.5: + /@changesets/logger@0.0.5: resolution: { integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==, @@ -4601,7 +4681,7 @@ packages: chalk: 2.4.2 dev: false - /@changesets/parse/0.3.13: + /@changesets/parse@0.3.13: resolution: { integrity: sha512-wh9Ifa0dungY6d2nMz6XxF6FZ/1I7j+mEgPAqrIyKS64nifTh1Ua82qKKMMK05CL7i4wiB2NYc3SfnnCX3RVeA==, @@ -4611,7 +4691,7 @@ packages: js-yaml: 3.14.1 dev: false - /@changesets/pre/1.0.11: + /@changesets/pre@1.0.11: resolution: { integrity: sha512-CXZnt4SV9waaC9cPLm7818+SxvLKIDHUxaiTXnJYDp1c56xIexx1BNfC1yMuOdzO2a3rAIcZua5Odxr3dwSKfg==, @@ -4624,7 +4704,7 @@ packages: fs-extra: 7.0.1 dev: false - /@changesets/read/0.5.5: + /@changesets/read@0.5.5: resolution: { integrity: sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w==, @@ -4640,28 +4720,28 @@ packages: p-filter: 2.1.0 dev: false - /@changesets/types/0.4.0: + /@changesets/types@0.4.0: resolution: { integrity: sha512-TclHHKDVYQ8rJGZgVeWiF7c91yWzTTWdPagltgutelGu/Psup5PQlUq6svx7S8suj+jXcaE34yEEsfIvzXXB2Q==, } dev: false - /@changesets/types/4.1.0: + /@changesets/types@4.1.0: resolution: { integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, } dev: false - /@changesets/types/5.0.0: + /@changesets/types@5.0.0: resolution: { integrity: sha512-IT1kBLSbAgTS4WtpU6P5ko054hq12vk4tgeIFRVE7Vnm4a/wgbNvBalgiKP0MjEXbCkZbItiGQHkCGxYWR55sA==, } dev: false - /@changesets/write/0.1.8: + /@changesets/write@0.1.8: resolution: { integrity: sha512-oIHeFVMuP6jf0TPnKPpaFpvvAf3JBc+s2pmVChbeEgQTBTALoF51Z9kqxQfG4XONZPHZnqkmy564c7qohhhhTQ==, @@ -4674,21 +4754,21 @@ packages: prettier: 1.19.1 dev: false - /@chevrotain/types/9.1.0: + /@chevrotain/types@9.1.0: resolution: { integrity: sha512-3hbCD1CThkv9gnaSIPq0GUXwKni68e0ph6jIHwCvcWiQ4JB2xi8bFxBain0RF04qHUWuDjgnZLj4rLgimuGO+g==, } dev: false - /@chevrotain/utils/9.1.0: + /@chevrotain/utils@9.1.0: resolution: { integrity: sha512-llLJZ8OAlZrjGlBvamm6Zdo/HmGAcCLq5gx7cSwUX8No+n/8ip+oaC4x33IdZIif8+Rh5dQUIZXmfbSghiOmNQ==, } dev: false - /@cspotcode/source-map-support/0.8.1: + /@cspotcode/source-map-support@0.8.1: resolution: { integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, @@ -4697,14 +4777,14 @@ packages: dependencies: "@jridgewell/trace-mapping": 0.3.9 - /@cush/relative/1.0.0: + /@cush/relative@1.0.0: resolution: { integrity: sha512-RpfLEtTlyIxeNPGKcokS+p3BZII/Q3bYxryFRglh5H3A3T8q9fsLYm72VYAMEOOIBLEa8o93kFLiBDUWKrwXZA==, } dev: true - /@esbuild/android-arm/0.15.15: + /@esbuild/android-arm@0.15.15: resolution: { integrity: sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==, @@ -4715,7 +4795,7 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64/0.15.15: + /@esbuild/linux-loong64@0.15.15: resolution: { integrity: sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==, @@ -4726,26 +4806,7 @@ packages: requiresBuild: true optional: true - /@eslint/eslintrc/1.3.3: - resolution: - { - integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - ajv: 6.12.6 - debug: 4.3.3 - espree: 9.4.1 - globals: 13.15.0 - ignore: 5.2.0 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - - /@eslint/eslintrc/1.3.3_supports-color@8.1.1: + /@eslint/eslintrc@1.3.3(supports-color@8.1.1): resolution: { integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==, @@ -4753,7 +4814,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.3_supports-color@8.1.1 + debug: 4.3.3(supports-color@8.1.1) espree: 9.4.1 globals: 13.15.0 ignore: 5.2.0 @@ -4763,16 +4824,15 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - dev: true - /@hapi/hoek/9.3.0: + /@hapi/hoek@9.3.0: resolution: { integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==, } dev: false - /@hapi/topo/5.1.0: + /@hapi/topo@5.1.0: resolution: { integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==, @@ -4781,7 +4841,7 @@ packages: "@hapi/hoek": 9.3.0 dev: false - /@hookform/error-message/2.0.0_uitc6c22ofsl6jhrdjqyu3was4: + /@hookform/error-message@2.0.0(react-dom@18.2.0)(react-hook-form@7.39.1)(react@18.2.0): resolution: { integrity: sha512-Y90nHzjgL2MP7GFy75kscdvxrCTjtyxGmOLLxX14nd08OXRIh9lMH/y9Kpdo0p1IPowJBiZMHyueg7p+yrqynQ==, @@ -4792,11 +4852,11 @@ packages: react-hook-form: ^7.0.0 dependencies: react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-hook-form: 7.39.1_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-hook-form: 7.39.1(react@18.2.0) dev: false - /@hookform/resolvers/2.9.10_react-hook-form@7.39.1: + /@hookform/resolvers@2.9.10(react-hook-form@7.39.1): resolution: { integrity: sha512-JIL1DgJIlH9yuxcNGtyhsWX/PgNltz+5Gr6+8SX9fhXc/hPbEIk6wPI82nhgvp3uUb6ZfAM5mqg/x7KR7NAb+A==, @@ -4804,23 +4864,10 @@ packages: peerDependencies: react-hook-form: ^7.0.0 dependencies: - react-hook-form: 7.39.1_react@18.2.0 + react-hook-form: 7.39.1(react@18.2.0) dev: false - /@humanwhocodes/config-array/0.11.7: - resolution: - { - integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==, - } - engines: {node: ">=10.10.0"} - dependencies: - "@humanwhocodes/object-schema": 1.2.1 - debug: 4.3.3 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - - /@humanwhocodes/config-array/0.11.7_supports-color@8.1.1: + /@humanwhocodes/config-array@0.11.7(supports-color@8.1.1): resolution: { integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==, @@ -4828,26 +4875,25 @@ packages: engines: {node: ">=10.10.0"} dependencies: "@humanwhocodes/object-schema": 1.2.1 - debug: 4.3.3_supports-color@8.1.1 + debug: 4.3.3(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color - dev: true - /@humanwhocodes/module-importer/1.0.1: + /@humanwhocodes/module-importer@1.0.1: resolution: { integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, } engines: {node: ">=12.22"} - /@humanwhocodes/object-schema/1.2.1: + /@humanwhocodes/object-schema@1.2.1: resolution: { integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, } - /@istanbuljs/load-nyc-config/1.1.0: + /@istanbuljs/load-nyc-config@1.1.0: resolution: { integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, @@ -4860,14 +4906,29 @@ packages: js-yaml: 3.14.1 resolve-from: 5.0.0 - /@istanbuljs/schema/0.1.3: + /@istanbuljs/schema@0.1.3: resolution: { integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, } engines: {node: ">=8"} - /@jest/console/29.2.1: + /@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.11.9 + chalk: 4.1.2 + jest-message-util: 27.5.1 + jest-util: 27.5.1 + slash: 3.0.0 + dev: true + + /@jest/console@29.2.1: resolution: { integrity: sha512-MF8Adcw+WPLZGBiNxn76DOuczG3BhODTcMlDCA4+cFi41OkaY/lyI0XUUhi73F88Y+7IHoGmD80pN5CtxQUdSw==, @@ -4881,7 +4942,55 @@ packages: jest-util: 29.2.1 slash: 3.0.0 - /@jest/core/29.3.0_ts-node@10.9.1: + /@jest/core@27.5.1(supports-color@8.1.1): + resolution: + { + integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + "@jest/console": 27.5.1 + "@jest/reporters": 27.5.1(supports-color@8.1.1) + "@jest/test-result": 27.5.1 + "@jest/transform": 27.5.1(supports-color@8.1.1) + "@jest/types": 27.5.1 + "@types/node": 18.11.9 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.8.1 + exit: 0.1.2 + graceful-fs: 4.2.10 + jest-changed-files: 27.5.1 + jest-config: 27.5.1(supports-color@8.1.1) + jest-haste-map: 27.5.1 + jest-message-util: 27.5.1 + jest-regex-util: 27.5.1 + jest-resolve: 27.5.1 + jest-resolve-dependencies: 27.5.1(supports-color@8.1.1) + jest-runner: 27.5.1(supports-color@8.1.1) + jest-runtime: 27.5.1(supports-color@8.1.1) + jest-snapshot: 27.5.1(supports-color@8.1.1) + jest-util: 27.5.1 + jest-validate: 27.5.1 + jest-watcher: 27.5.1 + micromatch: 4.0.5 + rimraf: 3.0.2 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - ts-node + - utf-8-validate + dev: true + + /@jest/core@29.3.0(ts-node@10.9.1): resolution: { integrity: sha512-5DyNvV8452bwqcYyXHCYaAD8UrTiWosrhBY+rc0MBMyXyDzcIL+w5gdlCYhlHbNsHoWnf4nUbRmg++LWfWVtMQ==, @@ -4905,7 +5014,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 29.2.0 - jest-config: 29.3.0_odkjkoia5xunhxkdrka32ib6vi + jest-config: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) jest-haste-map: 29.3.0 jest-message-util: 29.2.1 jest-regex-util: 29.2.0 @@ -4925,7 +5034,20 @@ packages: - supports-color - ts-node - /@jest/environment/29.3.0: + /@jest/environment@27.5.1: + 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.11.9 + jest-mock: 27.5.1 + dev: true + + /@jest/environment@29.3.0: resolution: { integrity: sha512-8wgn3br51bx+7rgC8FOKmAD62Q39iswdiy5/p6acoekp/9Bb/IQbh3zydOrnGp74LwStSrKgpQSKBlOKlAQq0g==, @@ -4937,7 +5059,7 @@ packages: "@types/node": 18.11.9 jest-mock: 29.3.0 - /@jest/expect-utils/29.2.2: + /@jest/expect-utils@29.2.2: resolution: { integrity: sha512-vwnVmrVhTmGgQzyvcpze08br91OL61t9O0lJMDyb6Y/D8EKQ9V7rGUb/p7PDt0GPzK0zFYqXWFo4EO2legXmkg==, @@ -4946,7 +5068,7 @@ packages: dependencies: jest-get-type: 29.2.0 - /@jest/expect/29.3.0: + /@jest/expect@29.3.0: resolution: { integrity: sha512-Lz/3x4Se5g6nBuLjTO+xE8D4OXY9fFmosZPwkXXZUJUsp9r9seN81cJa54wOGr1QjCQnhngMqclblhM4X/hcCg==, @@ -4958,7 +5080,22 @@ packages: transitivePeerDependencies: - supports-color - /@jest/fake-timers/29.3.0: + /@jest/fake-timers@27.5.1: + 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.11.9 + jest-message-util: 27.5.1 + jest-mock: 27.5.1 + jest-util: 27.5.1 + dev: true + + /@jest/fake-timers@29.3.0: resolution: { integrity: sha512-SzmWtN6Rld+xebMRGuWeMGhytc7qHnYfFk1Zd/1QavQWsFOmA9SgtvGHCBue1wXQhdDMaSIm1aPGj2Zmyrr1Zg==, @@ -4972,7 +5109,19 @@ packages: jest-mock: 29.3.0 jest-util: 29.2.1 - /@jest/globals/29.3.0: + /@jest/globals@27.5.1: + 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 + expect: 27.5.1 + dev: true + + /@jest/globals@29.3.0: resolution: { integrity: sha512-okYDVzYNrt/4ysR8XnX6u0I1bGG4kmfdXtUu7kwWHZ9OP13RCjmphgve0tfOrNluwksWvOPYS1f/HOrFTHLygQ==, @@ -4986,7 +5135,48 @@ packages: transitivePeerDependencies: - supports-color - /@jest/reporters/29.3.0: + /@jest/reporters@27.5.1(supports-color@8.1.1): + resolution: + { + integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + 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(supports-color@8.1.1) + "@jest/types": 27.5.1 + "@types/node": 18.11.9 + chalk: 4.1.2 + collect-v8-coverage: 1.0.1 + exit: 0.1.2 + glob: 7.2.0 + graceful-fs: 4.2.10 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-instrument: 5.2.0(supports-color@8.1.1) + istanbul-lib-report: 3.0.0 + istanbul-lib-source-maps: 4.0.1(supports-color@8.1.1) + istanbul-reports: 3.1.4 + jest-haste-map: 27.5.1 + jest-resolve: 27.5.1 + jest-util: 27.5.1 + jest-worker: 27.5.1 + slash: 3.0.0 + source-map: 0.6.1 + string-length: 4.0.2 + terminal-link: 2.1.1 + v8-to-istanbul: 8.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/reporters@29.3.0: resolution: { integrity: sha512-MV76tB3Kd80vcv2yMDZfQpMkwkHaY9hlvVhCtHXkVRCWwN+SX3EOmCdX8pT/X4Xh+NusA7l2Rc3yhx4q5p3+Fg==, @@ -5011,9 +5201,9 @@ packages: glob: 7.2.0 graceful-fs: 4.2.10 istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.0 + istanbul-lib-instrument: 5.2.0(supports-color@8.1.1) istanbul-lib-report: 3.0.0 - istanbul-lib-source-maps: 4.0.1 + istanbul-lib-source-maps: 4.0.1(supports-color@8.1.1) istanbul-reports: 3.1.4 jest-message-util: 29.2.1 jest-util: 29.2.1 @@ -5025,7 +5215,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/schemas/29.0.0: + /@jest/schemas@29.0.0: resolution: { integrity: sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==, @@ -5034,7 +5224,19 @@ packages: dependencies: "@sinclair/typebox": 0.24.51 - /@jest/source-map/29.2.0: + /@jest/source-map@27.5.1: + resolution: + { + integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + callsites: 3.1.0 + graceful-fs: 4.2.10 + source-map: 0.6.1 + dev: true + + /@jest/source-map@29.2.0: resolution: { integrity: sha512-1NX9/7zzI0nqa6+kgpSdKPK+WU1p+SJk3TloWZf5MzPbxri9UEeXX5bWZAPCzbQcyuAzubcdUHA7hcNznmRqWQ==, @@ -5045,7 +5247,20 @@ packages: callsites: 3.1.0 graceful-fs: 4.2.10 - /@jest/test-result/29.2.1: + /@jest/test-result@27.5.1: + 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 + collect-v8-coverage: 1.0.1 + dev: true + + /@jest/test-result@29.2.1: resolution: { integrity: sha512-lS4+H+VkhbX6z64tZP7PAUwPqhwj3kbuEHcaLuaBuB+riyaX7oa1txe0tXgrFj5hRWvZKvqO7LZDlNWeJ7VTPA==, @@ -5057,7 +5272,22 @@ packages: "@types/istanbul-lib-coverage": 2.0.4 collect-v8-coverage: 1.0.1 - /@jest/test-sequencer/29.3.0: + /@jest/test-sequencer@27.5.1(supports-color@8.1.1): + 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 + graceful-fs: 4.2.10 + jest-haste-map: 27.5.1 + jest-runtime: 27.5.1(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/test-sequencer@29.3.0: resolution: { integrity: sha512-XQlTP/S6Yf6NKV0Mt4oopFKyDxiEkDMD7hIFcCTeltKQszE0Z+LI5KLukwNW6Qxr1YzaZ/s6PlKJusiCLJNTcw==, @@ -5069,17 +5299,43 @@ packages: jest-haste-map: 29.3.0 slash: 3.0.0 - /@jest/transform/29.3.0: + /@jest/transform@27.5.1(supports-color@8.1.1): + resolution: + { + integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@jest/types": 27.5.1 + babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + chalk: 4.1.2 + convert-source-map: 1.8.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.10 + jest-haste-map: 27.5.1 + jest-regex-util: 27.5.1 + jest-util: 27.5.1 + micromatch: 4.0.5 + pirates: 4.0.5 + slash: 3.0.0 + source-map: 0.6.1 + write-file-atomic: 3.0.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/transform@29.3.0: resolution: { integrity: sha512-4T8h61ItCakAlJkdYa7XVWP3r39QldlCeOSNmRpiJisi5PrrlzwZdpJDIH13ZZjh+MlSPQ2cq8YbUs3TuH+tRA==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@jest/types": 29.2.1 "@jridgewell/trace-mapping": 0.3.17 - babel-plugin-istanbul: 6.1.1 + babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) chalk: 4.1.2 convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 @@ -5094,7 +5350,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/types/27.5.1: + /@jest/types@27.5.1: resolution: { integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==, @@ -5108,7 +5364,7 @@ packages: chalk: 4.1.2 dev: true - /@jest/types/29.2.1: + /@jest/types@29.2.1: resolution: { integrity: sha512-O/QNDQODLnINEPAI0cl9U6zUIDXEWXt6IC1o2N2QENuos7hlGUIthlKyV4p6ki3TvXFX071blj8HUhgLGquPjw==, @@ -5122,7 +5378,7 @@ packages: "@types/yargs": 17.0.13 chalk: 4.1.2 - /@jridgewell/gen-mapping/0.1.1: + /@jridgewell/gen-mapping@0.1.1: resolution: { integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, @@ -5132,7 +5388,7 @@ packages: "@jridgewell/set-array": 1.1.1 "@jridgewell/sourcemap-codec": 1.4.13 - /@jridgewell/gen-mapping/0.3.1: + /@jridgewell/gen-mapping@0.3.1: resolution: { integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==, @@ -5143,7 +5399,7 @@ packages: "@jridgewell/sourcemap-codec": 1.4.13 "@jridgewell/trace-mapping": 0.3.11 - /@jridgewell/gen-mapping/0.3.2: + /@jridgewell/gen-mapping@0.3.2: resolution: { integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==, @@ -5154,40 +5410,40 @@ packages: "@jridgewell/sourcemap-codec": 1.4.14 "@jridgewell/trace-mapping": 0.3.17 - /@jridgewell/resolve-uri/3.0.7: + /@jridgewell/resolve-uri@3.0.7: resolution: { integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==, } engines: {node: ">=6.0.0"} - /@jridgewell/resolve-uri/3.1.0: + /@jridgewell/resolve-uri@3.1.0: resolution: { integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, } engines: {node: ">=6.0.0"} - /@jridgewell/set-array/1.1.1: + /@jridgewell/set-array@1.1.1: resolution: { integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==, } engines: {node: ">=6.0.0"} - /@jridgewell/sourcemap-codec/1.4.13: + /@jridgewell/sourcemap-codec@1.4.13: resolution: { integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==, } - /@jridgewell/sourcemap-codec/1.4.14: + /@jridgewell/sourcemap-codec@1.4.14: resolution: { integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, } - /@jridgewell/trace-mapping/0.3.11: + /@jridgewell/trace-mapping@0.3.11: resolution: { integrity: sha512-RllI476aSMsxzeI9TtlSMoNTgHDxEmnl6GkkHwhr0vdL8W+0WuesyI8Vd3rBOfrwtPXbPxdT9ADJdiOKgzxPQA==, @@ -5196,7 +5452,7 @@ packages: "@jridgewell/resolve-uri": 3.0.7 "@jridgewell/sourcemap-codec": 1.4.13 - /@jridgewell/trace-mapping/0.3.17: + /@jridgewell/trace-mapping@0.3.17: resolution: { integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==, @@ -5205,7 +5461,7 @@ packages: "@jridgewell/resolve-uri": 3.1.0 "@jridgewell/sourcemap-codec": 1.4.14 - /@jridgewell/trace-mapping/0.3.9: + /@jridgewell/trace-mapping@0.3.9: resolution: { integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, @@ -5214,7 +5470,7 @@ packages: "@jridgewell/resolve-uri": 3.0.7 "@jridgewell/sourcemap-codec": 1.4.13 - /@juanm04/cpx/2.0.1_supports-color@8.1.1: + /@juanm04/cpx@2.0.1(supports-color@8.1.1): resolution: { integrity: sha512-OaTjKI3ycQnF0Cb4KvLVycB/O8nki2wUYBstmMWW7ocrkFil+YzYO23C+zY321h4p9YxSXCA1Xeg30vtminh6A==, @@ -5224,7 +5480,7 @@ packages: dependencies: co: 4.6.0 debounce: 1.2.1 - debug: 4.3.4_supports-color@8.1.1 + debug: 4.3.4(supports-color@8.1.1) duplexer: 0.1.2 fs-extra: 9.1.0 glob: 7.2.0 @@ -5238,7 +5494,7 @@ packages: - supports-color dev: true - /@manypkg/find-root/1.1.0: + /@manypkg/find-root@1.1.0: resolution: { integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, @@ -5250,7 +5506,7 @@ packages: fs-extra: 8.1.0 dev: false - /@manypkg/get-packages/1.1.3: + /@manypkg/get-packages@1.1.3: resolution: { integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, @@ -5264,7 +5520,7 @@ packages: read-yaml-file: 1.1.0 dev: false - /@mrleebo/prisma-ast/0.2.6: + /@mrleebo/prisma-ast@0.2.6: resolution: { integrity: sha512-Df0gAGmws3sxNMmLviTarBL9znf84QVlVhlx4EPgArrnaVBy8tNQZAI9aSTJHzH0JGj9BVGa0Qz1g3hPt12Kxw==, @@ -5274,7 +5530,7 @@ packages: chevrotain: 9.1.0 dev: false - /@mrleebo/prisma-ast/0.4.1: + /@mrleebo/prisma-ast@0.4.1: resolution: { integrity: sha512-vk1JBunTocQ8xaVqjgVnDVZ63d8Vm/HpOrFXATsKZI5ufC6ZG7FmRtWwyljLXHzW9C/pLp3kJAKc24oSPOYXgw==, @@ -5284,7 +5540,7 @@ packages: chevrotain: 9.1.0 dev: false - /@mrmlnc/readdir-enhanced/2.2.1: + /@mrmlnc/readdir-enhanced@2.2.1: resolution: { integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==, @@ -5295,7 +5551,7 @@ packages: glob-to-regexp: 0.3.0 dev: false - /@next/bundle-analyzer/12.0.8: + /@next/bundle-analyzer@12.0.8: resolution: { integrity: sha512-tRwFyAkJA0h+rwt4exq31T59qo4qwp7vPoR3yC8gIpK/E5NAwafyk40aNpk4OWhiQ2IvJMFutukMzY3xl79NXA==, @@ -5307,13 +5563,13 @@ packages: - utf-8-validate dev: true - /@next/env/13.3.0: + /@next/env@13.3.0: resolution: { integrity: sha512-AjppRV4uG3No7L1plinoTQETH+j2F10TEnrMfzbTUYwze5sBUPveeeBAPZPm8OkJZ1epq9OyYKhZrvbD6/9HCQ==, } - /@next/eslint-plugin-next/12.3.1: + /@next/eslint-plugin-next@12.3.1: resolution: { integrity: sha512-sw+lTf6r6P0j+g/n9y4qdWWI2syPqZx+uc0+B/fRENqfR3KpSid6MIKqc9gNwGhJASazEQ5b3w8h4cAET213jw==, @@ -5321,7 +5577,7 @@ packages: dependencies: glob: 7.1.7 - /@next/eslint-plugin-next/13.0.0: + /@next/eslint-plugin-next@13.0.0: resolution: { integrity: sha512-z+gnX4Zizatqatc6f4CQrcC9oN8Us3Vrq/OLyc98h7K/eWctrnV91zFZodmJHUjx0cITY8uYM7LXD7IdYkg3kg==, @@ -5330,16 +5586,16 @@ packages: glob: 7.1.7 dev: true - /@next/eslint-plugin-next/13.3.4: + /@next/eslint-plugin-next@13.4.3: resolution: { - integrity: sha512-mvS+HafOPy31oJbAi920WJXMdjbyb4v5FAMr9PeGZfRIdEcsLkA3mU/ZvmwzovJgP3nAWw2e2yM8iIFW8VpvIA==, + integrity: sha512-5B0uOnh7wyUY9vNNdIA6NUvWozhrZaTMZOzdirYAefqD0ZBK5C/h3+KMYdCKrR7JrXGvVpWnHtv54b3dCzwICA==, } dependencies: glob: 7.1.7 dev: true - /@next/swc-darwin-arm64/13.3.0: + /@next/swc-darwin-arm64@13.3.0: resolution: { integrity: sha512-DmIQCNq6JtccLPPBzf0dgh2vzMWt5wjxbP71pCi5EWpWYE3MsP6FcRXi4MlAmFNDQOfcFXR2r7kBeG1LpZUh1w==, @@ -5350,7 +5606,7 @@ packages: requiresBuild: true optional: true - /@next/swc-darwin-x64/13.3.0: + /@next/swc-darwin-x64@13.3.0: resolution: { integrity: sha512-oQoqFa88OGgwnYlnAGHVct618FRI/749se0N3S8t9Bzdv5CRbscnO0RcX901+YnNK4Q6yeiizfgO3b7kogtsZg==, @@ -5361,7 +5617,7 @@ packages: requiresBuild: true optional: true - /@next/swc-linux-arm64-gnu/13.3.0: + /@next/swc-linux-arm64-gnu@13.3.0: resolution: { integrity: sha512-Wzz2p/WqAJUqTVoLo6H18WMeAXo3i+9DkPDae4oQG8LMloJ3if4NEZTnOnTUlro6cq+S/W4pTGa97nWTrOjbGw==, @@ -5372,7 +5628,7 @@ packages: requiresBuild: true optional: true - /@next/swc-linux-arm64-musl/13.3.0: + /@next/swc-linux-arm64-musl@13.3.0: resolution: { integrity: sha512-xPVrIQOQo9WXJYgmoTlMnAD/HlR/1e1ZIWGbwIzEirXBVBqMARUulBEIKdC19zuvoJ477qZJgBDCKtKEykCpyQ==, @@ -5383,7 +5639,7 @@ packages: requiresBuild: true optional: true - /@next/swc-linux-x64-gnu/13.3.0: + /@next/swc-linux-x64-gnu@13.3.0: resolution: { integrity: sha512-jOFlpGuPD7W2tuXVJP4wt9a3cpNxWAPcloq5EfMJRiXsBBOjLVFZA7boXYxEBzSVgUiVVr1V9T0HFM7pULJ1qA==, @@ -5394,7 +5650,7 @@ packages: requiresBuild: true optional: true - /@next/swc-linux-x64-musl/13.3.0: + /@next/swc-linux-x64-musl@13.3.0: resolution: { integrity: sha512-2OwKlzaBgmuet9XYHc3KwsEilzb04F540rlRXkAcjMHL7eCxB7uZIGtsVvKOnQLvC/elrUegwSw1+5f7WmfyOw==, @@ -5405,7 +5661,7 @@ packages: requiresBuild: true optional: true - /@next/swc-win32-arm64-msvc/13.3.0: + /@next/swc-win32-arm64-msvc@13.3.0: resolution: { integrity: sha512-OeHiA6YEvndxT46g+rzFK/MQTfftKxJmzslERMu9LDdC6Kez0bdrgEYed5eXFK2Z1viKZJCGRlhd06rBusyztA==, @@ -5416,7 +5672,7 @@ packages: requiresBuild: true optional: true - /@next/swc-win32-ia32-msvc/13.3.0: + /@next/swc-win32-ia32-msvc@13.3.0: resolution: { integrity: sha512-4aB7K9mcVK1lYEzpOpqWrXHEZympU3oK65fnNcY1Qc4HLJFLJj8AViuqQd4jjjPNuV4sl8jAwTz3gN5VNGWB7w==, @@ -5427,7 +5683,7 @@ packages: requiresBuild: true optional: true - /@next/swc-win32-x64-msvc/13.3.0: + /@next/swc-win32-x64-msvc@13.3.0: resolution: { integrity: sha512-Reer6rkLLcoOvB0dd66+Y7WrWVFH7sEEkF/4bJCIfsSKnTStTYaHtwIJAwbqnt9I392Tqvku0KkoqZOryWV9LQ==, @@ -5438,7 +5694,7 @@ packages: requiresBuild: true optional: true - /@nodelib/fs.scandir/2.1.5: + /@nodelib/fs.scandir@2.1.5: resolution: { integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, @@ -5448,7 +5704,7 @@ packages: "@nodelib/fs.stat": 2.0.5 run-parallel: 1.2.0 - /@nodelib/fs.stat/1.1.3: + /@nodelib/fs.stat@1.1.3: resolution: { integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==, @@ -5456,14 +5712,14 @@ packages: engines: {node: ">= 6"} dev: false - /@nodelib/fs.stat/2.0.5: + /@nodelib/fs.stat@2.0.5: resolution: { integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, } engines: {node: ">= 8"} - /@nodelib/fs.walk/1.2.8: + /@nodelib/fs.walk@1.2.8: resolution: { integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, @@ -5473,13 +5729,13 @@ packages: "@nodelib/fs.scandir": 2.1.5 fastq: 1.13.0 - /@panva/hkdf/1.0.2: + /@panva/hkdf@1.0.2: resolution: { integrity: sha512-MSAs9t3Go7GUkMhpKC44T58DJ5KGk2vBo+h1cqQeqlMfdGkxaVB78ZWpv9gYi/g2fa4sopag9gJsNvS8XGgWJA==, } - /@pkgr/utils/2.3.1: + /@pkgr/utils@2.3.1: resolution: { integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==, @@ -5492,16 +5748,15 @@ packages: picocolors: 1.0.0 tiny-glob: 0.2.9 tslib: 2.4.0 - dev: true - /@polka/url/1.0.0-next.21: + /@polka/url@1.0.0-next.21: resolution: { integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==, } dev: true - /@prisma/client/4.6.1_prisma@4.6.1: + /@prisma/client@4.6.1(prisma@4.6.1): resolution: { integrity: sha512-M1+NNrMzqaOIxT7PBGcTs3IZo7d1EW/+gVQd4C4gUgWBDGgD9AcIeZnUSidgWClmpMSgVUdnVORjsWWGUameYA==, @@ -5518,14 +5773,14 @@ packages: prisma: 4.6.1 dev: false - /@prisma/engines-version/4.6.1-3.694eea289a8462c80264df36757e4fdc129b1b32: + /@prisma/engines-version@4.6.1-3.694eea289a8462c80264df36757e4fdc129b1b32: resolution: { integrity: sha512-HUCmkXAU2jqp2O1RvNtbE+seLGLyJGEABZS/R38rZjSAafAy0WzBuHq+tbZMnD+b5OSCsTVtIPVcuvx1ySxcWQ==, } dev: false - /@prisma/engines/4.6.1: + /@prisma/engines@4.6.1: resolution: { integrity: sha512-3u2/XxvxB+Q7cMXHnKU0CpBiUK1QWqpgiBv28YDo1zOIJE3FCF8DI2vrp6vuwjGt5h0JGXDSvmSf4D4maVjJdw==, @@ -5533,13 +5788,13 @@ packages: requiresBuild: true dev: false - /@prisma/prisma-fmt-wasm/4.4.0-66.f352a33b70356f46311da8b00d83386dd9f145d6: + /@prisma/prisma-fmt-wasm@4.4.0-66.f352a33b70356f46311da8b00d83386dd9f145d6: resolution: { integrity: sha512-Hc2i5nfAt3nLDUkQNWJcKFJaA9Avd5zz6t85w9SW7P0vGtFXScQ+xIu6znbULr9bc0pgTWejY1We2u/7EMxHWw==, } - /@rollup/plugin-alias/3.1.9_rollup@2.77.2: + /@rollup/plugin-alias@3.1.9(rollup@2.77.2): resolution: { integrity: sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==, @@ -5552,7 +5807,7 @@ packages: slash: 3.0.0 dev: true - /@rollup/plugin-commonjs/21.1.0_rollup@2.77.2: + /@rollup/plugin-commonjs@21.1.0(rollup@2.77.2): resolution: { integrity: sha512-6ZtHx3VHIp2ReNNDxHjuUml6ur+WcQ28N1yHgCQwsbNkQg2suhxGMDQGJOn/KuDxKtd1xuZP5xSTwBA4GQ8hbA==, @@ -5561,7 +5816,7 @@ packages: peerDependencies: rollup: ^2.38.3 dependencies: - "@rollup/pluginutils": 3.1.0_rollup@2.77.2 + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.2.0 @@ -5571,7 +5826,7 @@ packages: rollup: 2.77.2 dev: true - /@rollup/plugin-commonjs/22.0.1_rollup@2.77.2: + /@rollup/plugin-commonjs@22.0.1(rollup@2.77.2): resolution: { integrity: sha512-dGfEZvdjDHObBiP5IvwTKMVeq/tBZGMBHZFMdIV1ClMM/YoWS34xrHFGfag9SN2ZtMgNZRFruqvxZQEa70O6nQ==, @@ -5580,7 +5835,7 @@ packages: peerDependencies: rollup: ^2.68.0 dependencies: - "@rollup/pluginutils": 3.1.0_rollup@2.77.2 + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.2.0 @@ -5590,7 +5845,7 @@ packages: rollup: 2.77.2 dev: true - /@rollup/plugin-json/4.1.0_rollup@2.77.2: + /@rollup/plugin-json@4.1.0(rollup@2.77.2): resolution: { integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==, @@ -5598,11 +5853,11 @@ packages: peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - "@rollup/pluginutils": 3.1.0_rollup@2.77.2 + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) rollup: 2.77.2 dev: true - /@rollup/plugin-node-resolve/13.3.0_rollup@2.77.2: + /@rollup/plugin-node-resolve@13.3.0(rollup@2.77.2): resolution: { integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==, @@ -5611,7 +5866,7 @@ packages: peerDependencies: rollup: ^2.42.0 dependencies: - "@rollup/pluginutils": 3.1.0_rollup@2.77.2 + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) "@types/resolve": 1.17.1 deepmerge: 4.2.2 is-builtin-module: 3.1.0 @@ -5620,7 +5875,7 @@ packages: rollup: 2.77.2 dev: true - /@rollup/plugin-replace/3.1.0_rollup@2.77.2: + /@rollup/plugin-replace@3.1.0(rollup@2.77.2): resolution: { integrity: sha512-pA3XRUrSKybVYqmH5TqWNZpGxF+VV+1GrYchKgCNIj2vsSOX7CVm2RCtx8p2nrC7xvkziYyK+lSi74T93MU3YA==, @@ -5628,12 +5883,12 @@ packages: peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - "@rollup/pluginutils": 3.1.0_rollup@2.77.2 + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) magic-string: 0.25.9 rollup: 2.77.2 dev: true - /@rollup/plugin-replace/4.0.0_rollup@2.77.2: + /@rollup/plugin-replace@4.0.0(rollup@2.77.2): resolution: { integrity: sha512-+rumQFiaNac9y64OHtkHGmdjm7us9bo1PlbgQfdihQtuNxzjpaB064HbRnewUOggLQxVCCyINfStkgmBeQpv1g==, @@ -5641,12 +5896,12 @@ packages: peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - "@rollup/pluginutils": 3.1.0_rollup@2.77.2 + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) magic-string: 0.25.9 rollup: 2.77.2 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.77.2: + /@rollup/pluginutils@3.1.0(rollup@2.77.2): resolution: { integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==, @@ -5661,7 +5916,7 @@ packages: rollup: 2.77.2 dev: true - /@rollup/pluginutils/4.2.1: + /@rollup/pluginutils@4.2.1: resolution: { integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, @@ -5672,13 +5927,13 @@ packages: picomatch: 2.3.1 dev: true - /@rushstack/eslint-patch/1.1.3: + /@rushstack/eslint-patch@1.1.3: resolution: { integrity: sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==, } - /@selderee/plugin-htmlparser2/0.6.0: + /@selderee/plugin-htmlparser2@0.6.0: resolution: { integrity: sha512-J3jpy002TyBjd4N/p6s+s90eX42H2eRhK3SbsZuvTDv977/E8p2U3zikdiehyJja66do7FlxLomZLPlvl2/xaA==, @@ -5688,7 +5943,7 @@ packages: selderee: 0.6.0 dev: true - /@sideway/address/4.1.4: + /@sideway/address@4.1.4: resolution: { integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==, @@ -5697,27 +5952,27 @@ packages: "@hapi/hoek": 9.3.0 dev: false - /@sideway/formula/3.0.0: + /@sideway/formula@3.0.0: resolution: { integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==, } dev: false - /@sideway/pinpoint/2.0.0: + /@sideway/pinpoint@2.0.0: resolution: { integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==, } dev: false - /@sinclair/typebox/0.24.51: + /@sinclair/typebox@0.24.51: resolution: { integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==, } - /@sindresorhus/is/0.14.0: + /@sindresorhus/is@0.14.0: resolution: { integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==, @@ -5725,7 +5980,7 @@ packages: engines: {node: ">=6"} dev: false - /@sindresorhus/is/4.6.0: + /@sindresorhus/is@4.6.0: resolution: { integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==, @@ -5733,7 +5988,7 @@ packages: engines: {node: ">=10"} dev: false - /@sinonjs/commons/1.8.3: + /@sinonjs/commons@1.8.3: resolution: { integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==, @@ -5741,7 +5996,16 @@ packages: dependencies: type-detect: 4.0.8 - /@sinonjs/fake-timers/9.1.2: + /@sinonjs/fake-timers@8.1.0: + resolution: + { + integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==, + } + dependencies: + "@sinonjs/commons": 1.8.3 + dev: true + + /@sinonjs/fake-timers@9.1.2: resolution: { integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==, @@ -5749,7 +6013,7 @@ packages: dependencies: "@sinonjs/commons": 1.8.3 - /@swc/core-android-arm-eabi/1.3.7: + /@swc/core-android-arm-eabi@1.3.7: resolution: { integrity: sha512-zvUpTBOUnXDkfp2JXv1T3NfyimxsAnqEfT65gWC/3ZpB/gmc59vqYVko4Pifyvuxo5aVvEdT2gfHlWM/aXwtpg==, @@ -5763,7 +6027,7 @@ packages: dev: false optional: true - /@swc/core-android-arm64/1.3.7: + /@swc/core-android-arm64@1.3.7: resolution: { integrity: sha512-qnh1aYTrIjuFOkgxUYG8SGzpPD92o/w5hrHUy71LfUbHf5HRs7FpMgQXtTGnk33S/uMCvSv7V/ewv+t+N6tlVA==, @@ -5777,7 +6041,7 @@ packages: dev: false optional: true - /@swc/core-darwin-arm64/1.3.7: + /@swc/core-darwin-arm64@1.3.7: resolution: { integrity: sha512-q8NgUK/CleCmGYIuskL1sCad8opkfJD/8GWd+MkGSi+MGkExrLMmJftgG5FCj0l/xCHxGGNYj1TCrM/qV6CheA==, @@ -5789,7 +6053,7 @@ packages: dev: false optional: true - /@swc/core-darwin-x64/1.3.7: + /@swc/core-darwin-x64@1.3.7: resolution: { integrity: sha512-dKrJkZYbF7Qi1wQgyVnR1a5Vk8UN7fJ/WlK6pZVJwMvWLoZgYE+U0Nn7RsVB4LmOxHtaJF7eesbGUm2y2NVEwA==, @@ -5801,7 +6065,7 @@ packages: dev: false optional: true - /@swc/core-freebsd-x64/1.3.7: + /@swc/core-freebsd-x64@1.3.7: resolution: { integrity: sha512-ENHthc4iFPlBj0xaf2DbJLDzYSBA4QMQEA2HhZoSWWMsqhg8mGZxwgRd6+loROGZ2a5HKMZXIxCev8BbYnE0OA==, @@ -5815,7 +6079,7 @@ packages: dev: false optional: true - /@swc/core-linux-arm-gnueabihf/1.3.7: + /@swc/core-linux-arm-gnueabihf@1.3.7: resolution: { integrity: sha512-anE65tcRLr/fYayXkpwZ7p7Ft5HCH4rvi3wSFdK8ycRWn9fVZhyWUJkJ3p1S0R19xr7hcb14hyxqPbd4m0I4yA==, @@ -5829,7 +6093,7 @@ packages: dev: false optional: true - /@swc/core-linux-arm64-gnu/1.3.7: + /@swc/core-linux-arm64-gnu@1.3.7: resolution: { integrity: sha512-Qv6f76Tt8t51qb29R2isWvuQM26Xi7ZJavAv0hMdCxfkF+h1Yd14j82H7afGzdONH1LyLaPrhWSQirU/ZtBtdA==, @@ -5841,7 +6105,7 @@ packages: dev: false optional: true - /@swc/core-linux-arm64-musl/1.3.7: + /@swc/core-linux-arm64-musl@1.3.7: resolution: { integrity: sha512-paYbmvm7+7QxjyMzRd4X4tyhHw5VgkGCMBYC3PbfpuI7SsCdmEFG9v1t5uMbTf60VU1wB4/n+AxY9KCZLfK7DQ==, @@ -5853,7 +6117,7 @@ packages: dev: false optional: true - /@swc/core-linux-x64-gnu/1.3.7: + /@swc/core-linux-x64-gnu@1.3.7: resolution: { integrity: sha512-tkIHt64mmqEVM0CTGvUsB37Pv7AD/BinOEe6oPfMcS/2a00kYvXn9kEVKPqNTpiFpjYGoFQJaVV8UsD+iv8IvQ==, @@ -5865,7 +6129,7 @@ packages: dev: false optional: true - /@swc/core-linux-x64-musl/1.3.7: + /@swc/core-linux-x64-musl@1.3.7: resolution: { integrity: sha512-V0xeTS8kvnTlghO1YyO1QgfPqsY896MknYCzBeK9CGKkGbc3JaxSoyb11nbGEDEaUwzDd9gj9L4D2uP+IWpoyw==, @@ -5877,7 +6141,7 @@ packages: dev: false optional: true - /@swc/core-win32-arm64-msvc/1.3.7: + /@swc/core-win32-arm64-msvc@1.3.7: resolution: { integrity: sha512-LeauQIok8tw4Mjmj7wlc7C62HCUx3xa5k6tNQnKWbDs7odZVWisgDxn7RSl9/xxlC8wPLTVUyBh3O1rHigVfWg==, @@ -5891,7 +6155,7 @@ packages: dev: false optional: true - /@swc/core-win32-ia32-msvc/1.3.7: + /@swc/core-win32-ia32-msvc@1.3.7: resolution: { integrity: sha512-E1C8bpUrml0vIv4FTSP7f4CwkZVGsCY9fBsBHCC4j9N1mtQk8/nzpGOUsPo4QP+FTYJiNKedZ4Cy7baihnV4Lw==, @@ -5905,7 +6169,7 @@ packages: dev: false optional: true - /@swc/core-win32-x64-msvc/1.3.7: + /@swc/core-win32-x64-msvc@1.3.7: resolution: { integrity: sha512-Ti9H/1hqBrxhYtNLVaLsahO/iiJn1Zd4qSc0LZpl6wBJxP4LltLV4MLeib6i8lg11pj4ijIhzZfC6bT614ee3w==, @@ -5917,7 +6181,7 @@ packages: dev: false optional: true - /@swc/core/1.3.7: + /@swc/core@1.3.7: resolution: { integrity: sha512-g4ptYRZRE+g/6wLB3WBuWhAWJsZDUeiSOvKVM1Wdn29Vi/EgLuVaY5ssz0HLQJxuDSJGwtAOZA8exh4+AKNHLw==, @@ -5941,7 +6205,7 @@ packages: "@swc/core-win32-x64-msvc": 1.3.7 dev: false - /@swc/helpers/0.4.14: + /@swc/helpers@0.4.14: resolution: { integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==, @@ -5949,7 +6213,7 @@ packages: dependencies: tslib: 2.4.0 - /@swc/wasm/1.2.122: + /@swc/wasm@1.2.122: resolution: { integrity: sha512-sM1VCWQxmNhFtdxME+8UXNyPNhxNu7zdb6ikWpz0YKAQQFRGT5ThZgJrubEpah335SUToNg8pkdDF7ibVCjxbQ==, @@ -5958,7 +6222,7 @@ packages: dev: false optional: true - /@swc/wasm/1.2.130: + /@swc/wasm@1.2.130: resolution: { integrity: sha512-rNcJsBxS70+pv8YUWwf5fRlWX6JoY/HJc25HD/F8m6Kv7XhJdqPPMhyX6TKkUBPAG7TWlZYoxa+rHAjPy4Cj3Q==, @@ -5967,7 +6231,7 @@ packages: dev: false optional: true - /@szmarczak/http-timer/1.1.2: + /@szmarczak/http-timer@1.1.2: resolution: { integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==, @@ -5977,7 +6241,7 @@ packages: defer-to-connect: 1.1.3 dev: false - /@szmarczak/http-timer/4.0.6: + /@szmarczak/http-timer@4.0.6: resolution: { integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==, @@ -5987,20 +6251,20 @@ packages: defer-to-connect: 2.0.1 dev: false - /@tanstack/query-core/4.13.0: + /@tanstack/query-core@4.13.0: resolution: { integrity: sha512-PzmLQcEgC4rl2OzkiPHYPC9O79DFcMGaKsOzDEP+U4PJ+tbkcEP+Z+FQDlfvX8mCwYC7UNH7hXrQ5EdkGlJjVg==, } dev: true - /@tanstack/query-core/4.24.4: + /@tanstack/query-core@4.24.4: resolution: { integrity: sha512-9dqjv9eeB6VHN7lD3cLo16ZAjfjCsdXetSAD5+VyKqLUvcKTL0CklGQRJu+bWzdrS69R6Ea4UZo8obHYZnG6aA==, } - /@tanstack/react-query/4.0.10_biqbaboplfbrettd7655fr4n2y: + /@tanstack/react-query@4.0.10(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-Wn5QhZUE5wvr6rGClV7KeQIUsdTmYR9mgmMZen7DSRWauHW2UTynFg3Kkf6pw+XlxxOLsyLWwz/Q6q1lSpM3TQ==, @@ -6018,11 +6282,11 @@ packages: "@tanstack/query-core": 4.24.4 "@types/use-sync-external-store": 0.0.3 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - use-sync-external-store: 1.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) + use-sync-external-store: 1.2.0(react@18.2.0) dev: false - /@tanstack/react-query/4.13.0_biqbaboplfbrettd7655fr4n2y: + /@tanstack/react-query@4.13.0(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-dI/5hJ/pGQ74P5hxBLC9h6K0/Cap2T3k0ZjjjFLBCNnohDYgl7LNmMopzrRzBHk2mMjf2hgXHIzcKNG8GOZ5hg==, @@ -6039,11 +6303,11 @@ packages: dependencies: "@tanstack/query-core": 4.13.0 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - use-sync-external-store: 1.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) + use-sync-external-store: 1.2.0(react@18.2.0) dev: true - /@tanstack/react-query/4.24.4_biqbaboplfbrettd7655fr4n2y: + /@tanstack/react-query@4.24.4(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-RpaS/3T/a3pHuZJbIAzAYRu+1nkp+/enr9hfRXDS/mojwx567UiMksoqW4wUFWlwIvWTXyhot2nbIipTKEg55Q==, @@ -6060,18 +6324,18 @@ packages: dependencies: "@tanstack/query-core": 4.24.4 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - use-sync-external-store: 1.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) + use-sync-external-store: 1.2.0(react@18.2.0) dev: false - /@testim/chrome-version/1.1.2: + /@testim/chrome-version@1.1.2: resolution: { integrity: sha512-1c4ZOETSRpI0iBfIFUqU4KqwBAB2lHUAlBjZz/YqOHqwM9dTTzjV6Km0ZkiEiSCx/tLr1BtESIKyWWMww+RUqw==, } dev: true - /@testing-library/dom/8.13.0: + /@testing-library/dom@8.13.0: resolution: { integrity: sha512-9VHgfIatKNXQNaZTtLnalIy0jNZzY35a4S3oi08YAt9Hv1VsfZ/DfA45lM8D/UhtHBGJ4/lGwp0PZkVndRkoOQ==, @@ -6088,7 +6352,7 @@ packages: pretty-format: 27.5.1 dev: true - /@testing-library/jest-dom/5.16.3: + /@testing-library/jest-dom@5.16.3: resolution: { integrity: sha512-u5DfKj4wfSt6akfndfu1eG06jsdyA/IUrlX2n3pyq5UXgXMhXY+NJb8eNK/7pqPWAhCKsCGWDdDO0zKMKAYkEA==, @@ -6106,7 +6370,7 @@ packages: redent: 3.0.0 dev: true - /@testing-library/jest-dom/5.16.5: + /@testing-library/jest-dom@5.16.5: resolution: { integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==, @@ -6124,7 +6388,7 @@ packages: redent: 3.0.0 dev: true - /@testing-library/react-hooks/8.0.1_2zx2umvpluuhvlq44va5bta2da: + /@testing-library/react-hooks@8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==, @@ -6146,11 +6410,11 @@ packages: "@babel/runtime": 7.18.3 "@types/react": 18.0.25 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-error-boundary: 3.1.4_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-error-boundary: 3.1.4(react@18.2.0) dev: true - /@testing-library/react/13.4.0_biqbaboplfbrettd7655fr4n2y: + /@testing-library/react@13.4.0(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==, @@ -6164,10 +6428,10 @@ packages: "@testing-library/dom": 8.13.0 "@types/react-dom": 18.0.7 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) dev: true - /@testing-library/user-event/13.5.0_tlwynutqiyp5mns3woioasuxnq: + /@testing-library/user-event@13.5.0(@testing-library/dom@8.13.0): resolution: { integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==, @@ -6180,52 +6444,60 @@ packages: "@testing-library/dom": 8.13.0 dev: true - /@tootallnate/once/2.0.0: + /@tootallnate/once@1.1.2: + resolution: + { + integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==, + } + engines: {node: ">= 6"} + dev: true + + /@tootallnate/once@2.0.0: resolution: { integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==, } engines: {node: ">= 10"} - /@tsconfig/node10/1.0.9: + /@tsconfig/node10@1.0.9: resolution: { integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, } - /@tsconfig/node12/1.0.10: + /@tsconfig/node12@1.0.10: resolution: { integrity: sha512-N+srakvPaYMGkwjNDx3ASx65Zl3QG8dJgVtIB+YMOkucU+zctlv/hdP5250VKdDHSDoW9PFZoCqbqNcAPjCjXA==, } - /@tsconfig/node14/1.0.2: + /@tsconfig/node14@1.0.2: resolution: { integrity: sha512-YwrUA5ysDXHFYfL0Xed9x3sNS4P+aKlCOnnbqUa2E5HdQshHFleCJVrj1PlGTb4GgFUCDyte1v3JWLy2sz8Oqg==, } - /@tsconfig/node16/1.0.3: + /@tsconfig/node16@1.0.3: resolution: { integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==, } - /@types/aria-query/4.2.2: + /@types/aria-query@4.2.2: resolution: { integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==, } dev: true - /@types/b64-lite/1.3.0: + /@types/b64-lite@1.3.0: resolution: { integrity: sha512-xrTKDOdOCLtdWAn+XnFWVoVNdump98dtZEpzQcw+BCtMdrGNVdbg6i6D1b9IU7HWzQm3ypi7hoLuXhrLiJn3bw==, } dev: false - /@types/babel__core/7.1.19: + /@types/babel__core@7.1.19: resolution: { integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==, @@ -6237,7 +6509,7 @@ packages: "@types/babel__template": 7.4.1 "@types/babel__traverse": 7.17.1 - /@types/babel__generator/7.6.4: + /@types/babel__generator@7.6.4: resolution: { integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==, @@ -6245,7 +6517,7 @@ packages: dependencies: "@babel/types": 7.18.4 - /@types/babel__template/7.4.1: + /@types/babel__template@7.4.1: resolution: { integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==, @@ -6254,7 +6526,7 @@ packages: "@babel/parser": 7.18.4 "@babel/types": 7.18.4 - /@types/babel__traverse/7.17.1: + /@types/babel__traverse@7.17.1: resolution: { integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==, @@ -6262,7 +6534,7 @@ packages: dependencies: "@babel/types": 7.18.4 - /@types/body-parser/1.19.2: + /@types/body-parser@1.19.2: resolution: { integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==, @@ -6271,14 +6543,14 @@ packages: "@types/connect": 3.4.35 "@types/node": 18.11.9 - /@types/braces/3.0.1: + /@types/braces@3.0.1: resolution: { integrity: sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==, } dev: true - /@types/cacheable-request/6.0.2: + /@types/cacheable-request@6.0.2: resolution: { integrity: sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==, @@ -6290,7 +6562,7 @@ packages: "@types/responselike": 1.0.0 dev: false - /@types/chai-subset/1.3.3: + /@types/chai-subset@1.3.3: resolution: { integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==, @@ -6298,13 +6570,13 @@ packages: dependencies: "@types/chai": 4.3.4 - /@types/chai/4.3.4: + /@types/chai@4.3.4: resolution: { integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==, } - /@types/chokidar/2.1.3: + /@types/chokidar@2.1.3: resolution: { integrity: sha512-6qK3xoLLAhQVTucQGHTySwOVA1crHRXnJeLwqK6KIFkkKa2aoMFXh+WEi8PotxDtvN6MQJLyYN9ag9P6NLV81w==, @@ -6314,7 +6586,7 @@ packages: chokidar: 3.5.3 dev: true - /@types/connect/3.4.35: + /@types/connect@3.4.35: resolution: { integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==, @@ -6322,7 +6594,7 @@ packages: dependencies: "@types/node": 18.11.9 - /@types/cookie-session/2.0.44: + /@types/cookie-session@2.0.44: resolution: { integrity: sha512-3DheOZ41pql6raSIkqEPphJdhA2dX2bkS+s2Qacv8YMKkoCbAIEXbsDil7351ARzMqvfyDUGNeHGiRZveIzhqQ==, @@ -6332,14 +6604,14 @@ packages: "@types/keygrip": 1.0.2 dev: false - /@types/cookie/0.4.1: + /@types/cookie@0.4.1: resolution: { integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==, } dev: true - /@types/cross-spawn/6.0.2: + /@types/cross-spawn@6.0.2: resolution: { integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==, @@ -6348,7 +6620,7 @@ packages: "@types/node": 18.11.9 dev: true - /@types/debug/4.1.7: + /@types/debug@4.1.7: resolution: { integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==, @@ -6357,56 +6629,56 @@ packages: "@types/ms": 0.7.31 dev: true - /@types/detect-port/1.3.2: + /@types/detect-port@1.3.2: resolution: { integrity: sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==, } dev: true - /@types/diff/5.0.2: + /@types/diff@5.0.2: resolution: { integrity: sha512-uw8eYMIReOwstQ0QKF0sICefSy8cNO/v7gOTiIy9SbwuHyEecJUm7qlgueOO5S1udZ5I/irVydHVwMchgzbKTg==, } dev: true - /@types/ejs/3.1.1: + /@types/ejs@3.1.1: resolution: { integrity: sha512-RQul5wEfY7BjWm0sYY86cmUN/pcXWGyVxWX93DFFJvcrxax5zKlieLwA3T77xJGwNcZW0YW6CYG70p1m8xPFmA==, } dev: true - /@types/envinfo/7.8.1: + /@types/envinfo@7.8.1: resolution: { integrity: sha512-pTyshpmGxqB9lRwG75v2YR0oqKYpCrklOYlZWQ88z/JB0fimT8EVmYekuIwpU3IxPZDHSXCqXKzkCrtAcKY25g==, } dev: true - /@types/estree/0.0.39: + /@types/estree@0.0.39: resolution: { integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==, } dev: true - /@types/estree/0.0.51: + /@types/estree@0.0.51: resolution: { integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==, } dev: true - /@types/expect/1.20.4: + /@types/expect@1.20.4: resolution: { integrity: sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==, } dev: true - /@types/express-serve-static-core/4.17.28: + /@types/express-serve-static-core@4.17.28: resolution: { integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==, @@ -6416,7 +6688,7 @@ packages: "@types/qs": 6.9.7 "@types/range-parser": 1.2.4 - /@types/express/4.17.13: + /@types/express@4.17.13: resolution: { integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==, @@ -6427,7 +6699,7 @@ packages: "@types/qs": 6.9.7 "@types/serve-static": 1.13.10 - /@types/findup-sync/4.0.2: + /@types/findup-sync@4.0.2: resolution: { integrity: sha512-MY2Acwvq6O+/rOMRtbV31phQOj1A+sbVWRbp47PvcZ5+VoofiSZHhj8ByATusuzJE+q/u+PA1SlkfPu3thhsjw==, @@ -6436,7 +6708,7 @@ packages: "@types/micromatch": 4.0.2 dev: true - /@types/fs-extra/9.0.13: + /@types/fs-extra@9.0.13: resolution: { integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==, @@ -6445,7 +6717,7 @@ packages: "@types/node": 18.11.9 dev: true - /@types/glob/7.2.0: + /@types/glob@7.2.0: resolution: { integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==, @@ -6454,14 +6726,14 @@ packages: "@types/minimatch": 3.0.5 "@types/node": 18.11.9 - /@types/global-agent/2.1.1: + /@types/global-agent@2.1.1: resolution: { integrity: sha512-sVox8Phk1UKgP6LQPAdeRxfww6vHKt7Bf59dXzYLsQBUEMEn8S10a+ESp/yO0i4fJ3WS4+CIuz42hgJcuA+3mA==, } dev: false - /@types/graceful-fs/4.1.5: + /@types/graceful-fs@4.1.5: resolution: { integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==, @@ -6469,14 +6741,14 @@ packages: dependencies: "@types/node": 18.11.9 - /@types/hasbin/1.2.0: + /@types/hasbin@1.2.0: resolution: { integrity: sha512-QhPPTycu+tr/RnGA4mvv+4P1Vebmq9TGEbDvBS9WjPT1pW7dheWeXXWcxb9zJ+YC38LbO8mwVW/DP+FwBroFKw==, } dev: true - /@types/hoist-non-react-statics/3.3.1: + /@types/hoist-non-react-statics@3.3.1: resolution: { integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==, @@ -6486,14 +6758,14 @@ packages: hoist-non-react-statics: 3.3.2 dev: false - /@types/http-cache-semantics/4.0.1: + /@types/http-cache-semantics@4.0.1: resolution: { integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==, } dev: false - /@types/is-ci/3.0.0: + /@types/is-ci@3.0.0: resolution: { integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==, @@ -6502,13 +6774,13 @@ packages: ci-info: 3.3.1 dev: false - /@types/istanbul-lib-coverage/2.0.4: + /@types/istanbul-lib-coverage@2.0.4: resolution: { integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==, } - /@types/istanbul-lib-report/3.0.0: + /@types/istanbul-lib-report@3.0.0: resolution: { integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==, @@ -6516,7 +6788,7 @@ packages: dependencies: "@types/istanbul-lib-coverage": 2.0.4 - /@types/istanbul-reports/3.0.1: + /@types/istanbul-reports@3.0.1: resolution: { integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==, @@ -6524,7 +6796,7 @@ packages: dependencies: "@types/istanbul-lib-report": 3.0.0 - /@types/jest/29.2.2: + /@types/jest@29.2.2: resolution: { integrity: sha512-og1wAmdxKoS71K2ZwSVqWPX6OVn3ihZ6ZT2qvZvZQm90lJVDyXIjYcu4Khx2CNIeaFv12rOU/YObOsI3VOkzog==, @@ -6533,7 +6805,7 @@ packages: expect: 29.3.0 pretty-format: 29.2.1 - /@types/jscodeshift/0.11.2: + /@types/jscodeshift@0.11.2: resolution: { integrity: sha512-CwgUni90VW+H3xc9Hekz/+ShEKPTvYbgVsDWCV4YksKoTKrWu9qfPpNaf7VDvbwjRp+PlkBJ7wZJNDpILzRiRw==, @@ -6543,7 +6815,7 @@ packages: recast: 0.20.5 dev: true - /@types/jsdom/20.0.1: + /@types/jsdom@20.0.1: resolution: { integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==, @@ -6553,26 +6825,26 @@ packages: "@types/tough-cookie": 4.0.2 parse5: 7.1.1 - /@types/json-buffer/3.0.0: + /@types/json-buffer@3.0.0: resolution: { integrity: sha512-3YP80IxxFJB4b5tYC2SUPwkg0XQLiu0nWvhRgEatgjf+29IcWO9X1k8xRv5DGssJ/lCrjYTjQPcobJr2yWIVuQ==, } dev: false - /@types/json-schema/7.0.11: + /@types/json-schema@7.0.11: resolution: { integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==, } - /@types/json5/0.0.29: + /@types/json5@0.0.29: resolution: { integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, } - /@types/jsonwebtoken/8.5.8: + /@types/jsonwebtoken@8.5.8: resolution: { integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==, @@ -6581,14 +6853,14 @@ packages: "@types/node": 18.11.9 dev: true - /@types/keygrip/1.0.2: + /@types/keygrip@1.0.2: resolution: { integrity: sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw==, } dev: false - /@types/keyv/3.1.4: + /@types/keyv@3.1.4: resolution: { integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, @@ -6597,7 +6869,7 @@ packages: "@types/node": 18.11.9 dev: false - /@types/mem-fs-editor/7.0.1: + /@types/mem-fs-editor@7.0.1: resolution: { integrity: sha512-aixqlCy0k0fZa+J4k7SZ7ZQCuJUmD4YuuMk42Q86YrGNBTZOSSnqkV8QcedBgLF5uR78PXj8HDWIFpXn+eOJbw==, @@ -6611,7 +6883,7 @@ packages: "@types/vinyl": 2.0.6 dev: true - /@types/mem-fs/1.1.2: + /@types/mem-fs@1.1.2: resolution: { integrity: sha512-tt+4IoDO8/wmtaP2bHnB91c8AnzYtR9MK6NxfcZY9E3XgtmzOiFMeSXu3EZrBeevd0nJ87iGoUiFDGsb9QUvew==, @@ -6621,7 +6893,7 @@ packages: "@types/vinyl": 2.0.6 dev: true - /@types/micromatch/4.0.2: + /@types/micromatch@4.0.2: resolution: { integrity: sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==, @@ -6630,33 +6902,33 @@ packages: "@types/braces": 3.0.1 dev: true - /@types/mime/1.3.2: + /@types/mime@1.3.2: resolution: { integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==, } - /@types/minimatch/3.0.5: + /@types/minimatch@3.0.5: resolution: { integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==, } - /@types/minimist/1.2.2: + /@types/minimist@1.2.2: resolution: { integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==, } dev: false - /@types/ms/0.7.31: + /@types/ms@0.7.31: resolution: { integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==, } dev: true - /@types/node-fetch/2.6.1: + /@types/node-fetch@2.6.1: resolution: { integrity: sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==, @@ -6666,34 +6938,34 @@ packages: form-data: 3.0.1 dev: true - /@types/node/12.20.55: + /@types/node@12.20.55: resolution: { integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, } dev: false - /@types/node/18.11.7: + /@types/node@18.11.7: resolution: { integrity: sha512-LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ==, } dev: true - /@types/node/18.11.9: + /@types/node@18.11.9: resolution: { integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==, } - /@types/node/18.7.13: + /@types/node@18.7.13: resolution: { integrity: sha512-46yIhxSe5xEaJZXWdIBP7GU4HDTG8/eo0qd9atdiL+lFpA03y8KS+lkTN834TWJj5767GbWv4n/P6efyTFt1Dw==, } dev: true - /@types/nodemailer/6.4.4: + /@types/nodemailer@6.4.4: resolution: { integrity: sha512-Ksw4t7iliXeYGvIQcSIgWQ5BLuC/mljIEbjf615svhZL10PE9t+ei8O9gDaD3FPCasUJn9KTLwz2JFJyiiyuqw==, @@ -6702,14 +6974,14 @@ packages: "@types/node": 18.11.9 dev: true - /@types/normalize-package-data/2.4.1: + /@types/normalize-package-data@2.4.1: resolution: { integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==, } dev: false - /@types/npm-which/3.0.1: + /@types/npm-which@3.0.1: resolution: { integrity: sha512-6cCMPsnLzad47O+OuWHnz+r+GRoHb/o1fVZ4AqzS3hzliy7wVgXm6kHBj/VxkKYLvda3zJa/A3QZU0xOoDxOxg==, @@ -6718,7 +6990,7 @@ packages: "@types/node": 18.11.9 dev: true - /@types/oauth/0.9.1: + /@types/oauth@0.9.1: resolution: { integrity: sha512-a1iY62/a3yhZ7qH7cNUsxoI3U/0Fe9+RnuFrpTKr+0WVOzbKlSLojShCKe20aOD1Sppv+i8Zlq0pLDuTJnwS4A==, @@ -6727,7 +6999,7 @@ packages: "@types/node": 18.11.9 dev: false - /@types/passport-twitter/1.0.37: + /@types/passport-twitter@1.0.37: resolution: { integrity: sha512-/FHODUP6ExYpRFdhVOtbHwVZRmni0kFyOFhOwqg61SoSwcED4c5tkhYu5cJElyhD5jbevRTmgInLFFI5s2hBag==, @@ -6737,7 +7009,7 @@ packages: "@types/passport": 1.0.8 dev: false - /@types/passport/1.0.7: + /@types/passport@1.0.7: resolution: { integrity: sha512-JtswU8N3kxBYgo+n9of7C97YQBT+AYPP2aBfNGTzABqPAZnK/WOAaKfh3XesUYMZRrXFuoPc2Hv0/G/nQFveHw==, @@ -6746,7 +7018,7 @@ packages: "@types/express": 4.17.13 dev: false - /@types/passport/1.0.8: + /@types/passport@1.0.8: resolution: { integrity: sha512-Gdcvis7+7G/Mobm+25AeFi+oe5teBhHzpbCOFWeN10Bj8tnoEE1L5lkraQjzmDEKkJQuM7xSJUGIFGl/giyRfQ==, @@ -6755,27 +7027,27 @@ packages: "@types/express": 4.17.13 dev: false - /@types/pluralize/0.0.29: + /@types/pluralize@0.0.29: resolution: { integrity: sha512-BYOID+l2Aco2nBik+iYS4SZX0Lf20KPILP5RGmM1IgzdwNdTs0eebiFriOPcej1sX9mLnSoiNte5zcFxssgpGA==, } dev: true - /@types/prettier/2.4.4: + /@types/prettier@2.4.4: resolution: { integrity: sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA==, } dev: true - /@types/prettier/2.6.3: + /@types/prettier@2.6.3: resolution: { integrity: sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==, } - /@types/preview-email/2.0.1: + /@types/preview-email@2.0.1: resolution: { integrity: sha512-wHtm/Xxlxk2WKRok0ya7iUr+UvQFlq9nTIQXZi2d3n2tdrt+n4Fkybvi45BjQILl2wfGFq4y+jARCo2+ZoaTrA==, @@ -6784,7 +7056,7 @@ packages: "@types/nodemailer": 6.4.4 dev: true - /@types/progress/2.0.5: + /@types/progress@2.0.5: resolution: { integrity: sha512-ZYYVc/kSMkhH9W/4dNK/sLNra3cnkfT2nJyOAIDY+C2u6w72wa0s1aXAezVtbTsnN8HID1uhXCrLwDE2ZXpplg==, @@ -6793,7 +7065,7 @@ packages: "@types/node": 18.11.9 dev: true - /@types/prompts/2.0.14: + /@types/prompts@2.0.14: resolution: { integrity: sha512-HZBd99fKxRWpYCErtm2/yxUZv6/PBI9J7N4TNFffl5JbrYMHBwF25DjQGTW3b3jmXq+9P6/8fCIb2ee57BFfYA==, @@ -6802,25 +7074,25 @@ packages: "@types/node": 18.11.9 dev: true - /@types/prop-types/15.7.5: + /@types/prop-types@15.7.5: resolution: { integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, } - /@types/qs/6.9.7: + /@types/qs@6.9.7: resolution: { integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==, } - /@types/range-parser/1.2.4: + /@types/range-parser@1.2.4: resolution: { integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==, } - /@types/react-dom/17.0.14: + /@types/react-dom@17.0.14: resolution: { integrity: sha512-H03xwEP1oXmSfl3iobtmQ/2dHF5aBHr8aUMwyGZya6OW45G+xtdzmq6HkncefiBt5JU8DVyaWl/nWZbjZCnzAQ==, @@ -6829,7 +7101,7 @@ packages: "@types/react": 18.0.25 dev: true - /@types/react-dom/18.0.7: + /@types/react-dom@18.0.7: resolution: { integrity: sha512-HaXc+BbqAZE1RdsK3tC8SbkFy6UL2xF76lT9rQs5JkPrJg3rWA3Ou/Lhw3YJQzEDkBpmJ79nBsfnd05WrBd2QQ==, @@ -6838,7 +7110,7 @@ packages: "@types/react": 18.0.25 dev: true - /@types/react/18.0.23: + /@types/react@18.0.23: resolution: { integrity: sha512-R1wTULtCiJkudAN2DJGoYYySbGtOdzZyUWAACYinKdiQC8auxso4kLDUhQ7AJ2kh3F6A6z4v69U6tNY39hihVQ==, @@ -6849,7 +7121,7 @@ packages: csstype: 3.1.0 dev: true - /@types/react/18.0.25: + /@types/react@18.0.25: resolution: { integrity: sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==, @@ -6859,7 +7131,7 @@ packages: "@types/scheduler": 0.16.2 csstype: 3.1.0 - /@types/resolve/1.17.1: + /@types/resolve@1.17.1: resolution: { integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==, @@ -6868,7 +7140,7 @@ packages: "@types/node": 18.11.9 dev: true - /@types/responselike/1.0.0: + /@types/responselike@1.0.0: resolution: { integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==, @@ -6877,7 +7149,7 @@ packages: "@types/node": 18.11.9 dev: false - /@types/rimraf/3.0.2: + /@types/rimraf@3.0.2: resolution: { integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==, @@ -6887,13 +7159,13 @@ packages: "@types/node": 18.11.9 dev: true - /@types/scheduler/0.16.2: + /@types/scheduler@0.16.2: resolution: { integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==, } - /@types/secure-password/3.1.1: + /@types/secure-password@3.1.1: resolution: { integrity: sha512-8S6JYBt22MXJrc/ehq8U0jknbnCzssVFKwOqn2pLnzbZLtiotjxaCd+SRQtOcVqrn1NNiKyw6fZJagW1eBe1bQ==, @@ -6902,27 +7174,27 @@ packages: "@types/node": 18.11.9 dev: false - /@types/selenium-webdriver/4.0.18: + /@types/selenium-webdriver@4.0.18: resolution: { integrity: sha512-gkrUo3QldGr8V9im/DjgKkX4UVd1rtflfEBuPG9hPSA1keu7A0rF8h/MQjpTMm2EPVhBCd2K8tn5nlC9Vsd5Xw==, } dev: true - /@types/semver/6.2.3: + /@types/semver@6.2.3: resolution: { integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==, } dev: false - /@types/semver/7.3.13: + /@types/semver@7.3.13: resolution: { integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==, } - /@types/serve-static/1.13.10: + /@types/serve-static@1.13.10: resolution: { integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==, @@ -6931,13 +7203,13 @@ packages: "@types/mime": 1.3.2 "@types/node": 18.11.9 - /@types/stack-utils/2.0.1: + /@types/stack-utils@2.0.1: resolution: { integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==, } - /@types/test-listen/1.1.0: + /@types/test-listen@1.1.0: resolution: { integrity: sha512-y6ZfbSzYHniCeY6ZAzsQjSAdJInNVoEz4Uhsb81W+RCoNYA59yoG/+XbqPqCPj2KCU3Wa6RFWSozutkGIHIsNQ==, @@ -6946,7 +7218,7 @@ packages: "@types/node": 18.11.9 dev: true - /@types/testing-library__jest-dom/5.14.3: + /@types/testing-library__jest-dom@5.14.3: resolution: { integrity: sha512-oKZe+Mf4ioWlMuzVBaXQ9WDnEm1+umLx0InILg+yvZVBBDmzV5KfZyLrCvadtWcx8+916jLmHafcmqqffl+iIw==, @@ -6955,14 +7227,14 @@ packages: "@types/jest": 29.2.2 dev: true - /@types/testing-library__react-hooks/4.0.0_2zx2umvpluuhvlq44va5bta2da: + /@types/testing-library__react-hooks@4.0.0(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-UzZUXthQtVjDruR2YA+hqg9ux5AfmZ8Kaw+QDungax+T7wb/5NC4x7YOpIqRx7oY3KksGQ69bzNE/xwzb5NslQ==, } deprecated: This is a stub types definition. @testing-library/react-hooks provides its own type definitions, so you do not need this installed. dependencies: - "@testing-library/react-hooks": 8.0.1_2zx2umvpluuhvlq44va5bta2da + "@testing-library/react-hooks": 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - "@types/react" - react @@ -6970,20 +7242,20 @@ packages: - react-test-renderer dev: true - /@types/tough-cookie/4.0.2: + /@types/tough-cookie@4.0.2: resolution: { integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==, } - /@types/use-sync-external-store/0.0.3: + /@types/use-sync-external-store@0.0.3: resolution: { integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==, } dev: false - /@types/vinyl/2.0.6: + /@types/vinyl@2.0.6: resolution: { integrity: sha512-ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g==, @@ -6993,7 +7265,7 @@ packages: "@types/node": 18.11.9 dev: true - /@types/watchpack/1.1.1: + /@types/watchpack@1.1.1: resolution: { integrity: sha512-3hDTwERUO/BZKlQ0x9bazD6EsF9nf2yJ1HL6ukimd+r6Pw5Zgf/9EzOZ2wdck6gBSx8f0Zm/HTihedojQuIrIw==, @@ -7004,13 +7276,13 @@ packages: "@types/node": 18.11.9 dev: true - /@types/yargs-parser/21.0.0: + /@types/yargs-parser@21.0.0: resolution: { integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==, } - /@types/yargs/16.0.4: + /@types/yargs@16.0.4: resolution: { integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==, @@ -7019,7 +7291,7 @@ packages: "@types/yargs-parser": 21.0.0 dev: true - /@types/yargs/17.0.13: + /@types/yargs@17.0.13: resolution: { integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==, @@ -7027,7 +7299,7 @@ packages: dependencies: "@types/yargs-parser": 21.0.0 - /@types/yauzl/2.10.0: + /@types/yauzl@2.10.0: resolution: { integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==, @@ -7038,73 +7310,14 @@ packages: dev: true optional: true - /@types/yoga-layout/1.9.2: + /@types/yoga-layout@1.9.2: resolution: { integrity: sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==, } dev: false - /@typescript-eslint/eslint-plugin/5.42.1_6dla7skwulzvrxac2nj7jbunfa: - resolution: - { - integrity: sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - "@typescript-eslint/parser": ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@typescript-eslint/parser": 5.9.1_nw6v2wse7au2evadw7vu3hneg4 - "@typescript-eslint/scope-manager": 5.42.1 - "@typescript-eslint/type-utils": 5.42.1_nw6v2wse7au2evadw7vu3hneg4 - "@typescript-eslint/utils": 5.42.1_nw6v2wse7au2evadw7vu3hneg4 - debug: 4.3.4_supports-color@8.1.1 - eslint: 8.27.0_supports-color@8.1.1 - ignore: 5.2.0 - natural-compare-lite: 1.4.0 - regexpp: 3.2.0 - semver: 7.3.7 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/eslint-plugin/5.42.1_rmayb2veg2btbq6mbmnyivgasy: - resolution: - { - integrity: sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - "@typescript-eslint/parser": ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@typescript-eslint/scope-manager": 5.42.1 - "@typescript-eslint/type-utils": 5.42.1_rmayb2veg2btbq6mbmnyivgasy - "@typescript-eslint/utils": 5.42.1_rmayb2veg2btbq6mbmnyivgasy - debug: 4.3.4 - eslint: 8.27.0 - ignore: 5.2.0 - natural-compare-lite: 1.4.0 - regexpp: 3.2.0 - semver: 7.3.7 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/eslint-plugin/5.42.1_z4ocgzhfuku3ho6vky337zbopm: + /@typescript-eslint/eslint-plugin@5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4): resolution: { integrity: sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg==, @@ -7118,22 +7331,22 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/parser": 5.9.1_typescript@4.8.4 + "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) "@typescript-eslint/scope-manager": 5.42.1 - "@typescript-eslint/type-utils": 5.42.1_typescript@4.8.4 - "@typescript-eslint/utils": 5.42.1_typescript@4.8.4 - debug: 4.3.4 + "@typescript-eslint/type-utils": 5.42.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0(supports-color@8.1.1) ignore: 5.2.0 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.8.4 + tsutils: 3.21.0(typescript@4.8.4) typescript: 4.8.4 transitivePeerDependencies: - supports-color - dev: false - /@typescript-eslint/experimental-utils/5.28.0_rmayb2veg2btbq6mbmnyivgasy: + /@typescript-eslint/experimental-utils@5.28.0(eslint@8.27.0)(typescript@4.8.4): resolution: { integrity: sha512-pPQ1Ng4qezQijXBBfYlogcOPnMs1q14l8C4fWJJ4PnFla4MA2b2oBfdkf02r1lNak2tpBVNJxvey9oWlPQWc4w==, @@ -7142,14 +7355,14 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - "@typescript-eslint/utils": 5.28.0_rmayb2veg2btbq6mbmnyivgasy - eslint: 8.27.0 + "@typescript-eslint/utils": 5.28.0(eslint@8.27.0)(typescript@4.8.4) + eslint: 8.27.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/parser/5.43.0_rmayb2veg2btbq6mbmnyivgasy: + /@typescript-eslint/parser@5.43.0(eslint@8.26.0)(typescript@4.8.4): resolution: { integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==, @@ -7164,15 +7377,15 @@ packages: dependencies: "@typescript-eslint/scope-manager": 5.43.0 "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/typescript-estree": 5.43.0_typescript@4.8.4 - debug: 4.3.4 - eslint: 8.27.0 + "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.26.0 typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.43.0_typescript@4.8.4: + /@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4): resolution: { integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==, @@ -7187,59 +7400,14 @@ packages: dependencies: "@typescript-eslint/scope-manager": 5.43.0 "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/typescript-estree": 5.43.0_typescript@4.8.4 - debug: 4.3.4 - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - dev: false - - /@typescript-eslint/parser/5.43.0_wyqvi574yv7oiwfeinomdzmc3m: - resolution: - { - integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@typescript-eslint/scope-manager": 5.43.0 - "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/typescript-estree": 5.43.0_typescript@4.8.4 - debug: 4.3.4 - eslint: 8.26.0 - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - - /@typescript-eslint/parser/5.9.1_nw6v2wse7au2evadw7vu3hneg4: - resolution: - { - integrity: sha512-PLYO0AmwD6s6n0ZQB5kqPgfvh73p0+VqopQQLuNfi7Lm0EpfKyDalchpVwkE+81k5HeiRrTV/9w1aNHzjD7C4g==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@typescript-eslint/scope-manager": 5.9.1 - "@typescript-eslint/types": 5.9.1 - "@typescript-eslint/typescript-estree": 5.9.1_rlpflyxsp53dgdidn3vadezrry - debug: 4.3.4_supports-color@8.1.1 - eslint: 8.27.0_supports-color@8.1.1 + "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0(supports-color@8.1.1) typescript: 4.8.4 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/parser/5.9.1_typescript@4.8.4: + /@typescript-eslint/parser@5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4): resolution: { integrity: sha512-PLYO0AmwD6s6n0ZQB5kqPgfvh73p0+VqopQQLuNfi7Lm0EpfKyDalchpVwkE+81k5HeiRrTV/9w1aNHzjD7C4g==, @@ -7254,14 +7422,14 @@ packages: dependencies: "@typescript-eslint/scope-manager": 5.9.1 "@typescript-eslint/types": 5.9.1 - "@typescript-eslint/typescript-estree": 5.9.1_typescript@4.8.4 - debug: 4.3.4 + "@typescript-eslint/typescript-estree": 5.9.1(supports-color@8.1.1)(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0(supports-color@8.1.1) typescript: 4.8.4 transitivePeerDependencies: - supports-color - dev: false - /@typescript-eslint/scope-manager/5.28.0: + /@typescript-eslint/scope-manager@5.28.0: resolution: { integrity: sha512-LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w==, @@ -7272,7 +7440,7 @@ packages: "@typescript-eslint/visitor-keys": 5.28.0 dev: true - /@typescript-eslint/scope-manager/5.42.1: + /@typescript-eslint/scope-manager@5.42.1: resolution: { integrity: sha512-QAZY/CBP1Emx4rzxurgqj3rUinfsh/6mvuKbLNMfJMMKYLRBfweus8brgXF8f64ABkIZ3zdj2/rYYtF8eiuksQ==, @@ -7282,7 +7450,7 @@ packages: "@typescript-eslint/types": 5.42.1 "@typescript-eslint/visitor-keys": 5.42.1 - /@typescript-eslint/scope-manager/5.43.0: + /@typescript-eslint/scope-manager@5.43.0: resolution: { integrity: sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==, @@ -7292,7 +7460,7 @@ packages: "@typescript-eslint/types": 5.43.0 "@typescript-eslint/visitor-keys": 5.43.0 - /@typescript-eslint/scope-manager/5.9.1: + /@typescript-eslint/scope-manager@5.9.1: resolution: { integrity: sha512-8BwvWkho3B/UOtzRyW07ffJXPaLSUKFBjpq8aqsRvu6HdEuzCY57+ffT7QoV4QXJXWSU1+7g3wE4AlgImmQ9pQ==, @@ -7302,53 +7470,7 @@ packages: "@typescript-eslint/types": 5.9.1 "@typescript-eslint/visitor-keys": 5.9.1 - /@typescript-eslint/type-utils/5.42.1_nw6v2wse7au2evadw7vu3hneg4: - resolution: - { - integrity: sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: "*" - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@typescript-eslint/typescript-estree": 5.42.1_rlpflyxsp53dgdidn3vadezrry - "@typescript-eslint/utils": 5.42.1_nw6v2wse7au2evadw7vu3hneg4 - debug: 4.3.4_supports-color@8.1.1 - eslint: 8.27.0_supports-color@8.1.1 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/type-utils/5.42.1_rmayb2veg2btbq6mbmnyivgasy: - resolution: - { - integrity: sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: "*" - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@typescript-eslint/typescript-estree": 5.42.1_typescript@4.8.4 - "@typescript-eslint/utils": 5.42.1_rmayb2veg2btbq6mbmnyivgasy - debug: 4.3.4 - eslint: 8.27.0 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/type-utils/5.42.1_typescript@4.8.4: + /@typescript-eslint/type-utils@5.42.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4): resolution: { integrity: sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg==, @@ -7361,16 +7483,16 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 5.42.1_typescript@4.8.4 - "@typescript-eslint/utils": 5.42.1_typescript@4.8.4 - debug: 4.3.4 - tsutils: 3.21.0_typescript@4.8.4 + "@typescript-eslint/typescript-estree": 5.42.1(supports-color@8.1.1)(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0(supports-color@8.1.1) + tsutils: 3.21.0(typescript@4.8.4) typescript: 4.8.4 transitivePeerDependencies: - supports-color - dev: false - /@typescript-eslint/types/5.28.0: + /@typescript-eslint/types@5.28.0: resolution: { integrity: sha512-2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA==, @@ -7378,55 +7500,31 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types/5.42.1: + /@typescript-eslint/types@5.42.1: resolution: { integrity: sha512-Qrco9dsFF5lhalz+lLFtxs3ui1/YfC6NdXu+RAGBa8uSfn01cjO7ssCsjIsUs484vny9Xm699FSKwpkCcqwWwA==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@typescript-eslint/types/5.43.0: + /@typescript-eslint/types@5.43.0: resolution: { integrity: sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@typescript-eslint/types/5.9.1: + /@typescript-eslint/types@5.9.1: resolution: { integrity: sha512-SsWegWudWpkZCwwYcKoDwuAjoZXnM1y2EbEerTHho19Hmm+bQ56QG4L4jrtCu0bI5STaRTvRTZmjprWlTw/5NQ==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@typescript-eslint/typescript-estree/5.28.0_typescript@4.8.4: - resolution: - { - integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@typescript-eslint/types": 5.28.0 - "@typescript-eslint/visitor-keys": 5.28.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/typescript-estree/5.42.1_rlpflyxsp53dgdidn3vadezrry: + /@typescript-eslint/typescript-estree@5.28.0(typescript@4.8.4): resolution: { - integrity: sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw==, + integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7435,19 +7533,19 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/visitor-keys": 5.42.1 - debug: 4.3.4_supports-color@8.1.1 + "@typescript-eslint/types": 5.28.0 + "@typescript-eslint/visitor-keys": 5.28.0 + debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 + tsutils: 3.21.0(typescript@4.8.4) typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.42.1_typescript@4.8.4: + /@typescript-eslint/typescript-estree@5.42.1(supports-color@8.1.1)(typescript@4.8.4): resolution: { integrity: sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw==, @@ -7461,16 +7559,16 @@ packages: dependencies: "@typescript-eslint/types": 5.42.1 "@typescript-eslint/visitor-keys": 5.42.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 + tsutils: 3.21.0(typescript@4.8.4) typescript: 4.8.4 transitivePeerDependencies: - supports-color - /@typescript-eslint/typescript-estree/5.43.0_typescript@4.8.4: + /@typescript-eslint/typescript-estree@5.43.0(typescript@4.8.4): resolution: { integrity: sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==, @@ -7484,40 +7582,16 @@ packages: dependencies: "@typescript-eslint/types": 5.43.0 "@typescript-eslint/visitor-keys": 5.43.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - - /@typescript-eslint/typescript-estree/5.9.1_rlpflyxsp53dgdidn3vadezrry: - resolution: - { - integrity: sha512-gL1sP6A/KG0HwrahVXI9fZyeVTxEYV//6PmcOn1tD0rw8VhUWYeZeuWHwwhnewnvEMcHjhnJLOBhA9rK4vmb8A==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@typescript-eslint/types": 5.9.1 - "@typescript-eslint/visitor-keys": 5.9.1 - debug: 4.3.3_supports-color@8.1.1 + debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 + tsutils: 3.21.0(typescript@4.8.4) typescript: 4.8.4 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/typescript-estree/5.9.1_typescript@4.8.4: + /@typescript-eslint/typescript-estree@5.9.1(supports-color@8.1.1)(typescript@4.8.4): resolution: { integrity: sha512-gL1sP6A/KG0HwrahVXI9fZyeVTxEYV//6PmcOn1tD0rw8VhUWYeZeuWHwwhnewnvEMcHjhnJLOBhA9rK4vmb8A==, @@ -7531,17 +7605,16 @@ packages: dependencies: "@typescript-eslint/types": 5.9.1 "@typescript-eslint/visitor-keys": 5.9.1 - debug: 4.3.3 + debug: 4.3.3(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 + tsutils: 3.21.0(typescript@4.8.4) typescript: 4.8.4 transitivePeerDependencies: - supports-color - dev: false - /@typescript-eslint/utils/5.28.0_rmayb2veg2btbq6mbmnyivgasy: + /@typescript-eslint/utils@5.28.0(eslint@8.27.0)(typescript@4.8.4): resolution: { integrity: sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==, @@ -7553,62 +7626,16 @@ packages: "@types/json-schema": 7.0.11 "@typescript-eslint/scope-manager": 5.28.0 "@typescript-eslint/types": 5.28.0 - "@typescript-eslint/typescript-estree": 5.28.0_typescript@4.8.4 - eslint: 8.27.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.27.0 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /@typescript-eslint/utils/5.42.1_nw6v2wse7au2evadw7vu3hneg4: - resolution: - { - integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - "@types/json-schema": 7.0.11 - "@types/semver": 7.3.13 - "@typescript-eslint/scope-manager": 5.42.1 - "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/typescript-estree": 5.42.1_rlpflyxsp53dgdidn3vadezrry - eslint: 8.27.0_supports-color@8.1.1 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.27.0 - semver: 7.3.8 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /@typescript-eslint/utils/5.42.1_rmayb2veg2btbq6mbmnyivgasy: - resolution: - { - integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - "@types/json-schema": 7.0.11 - "@types/semver": 7.3.13 - "@typescript-eslint/scope-manager": 5.42.1 - "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/typescript-estree": 5.42.1_typescript@4.8.4 - eslint: 8.27.0 + "@typescript-eslint/typescript-estree": 5.28.0(typescript@4.8.4) + eslint: 8.27.0(supports-color@8.1.1) eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.27.0 - semver: 7.3.8 + eslint-utils: 3.0.0(eslint@8.27.0) transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.42.1_typescript@4.8.4: + /@typescript-eslint/utils@5.42.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4): resolution: { integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==, @@ -7621,16 +7648,16 @@ packages: "@types/semver": 7.3.13 "@typescript-eslint/scope-manager": 5.42.1 "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/typescript-estree": 5.42.1_typescript@4.8.4 + "@typescript-eslint/typescript-estree": 5.42.1(supports-color@8.1.1)(typescript@4.8.4) + eslint: 8.27.0(supports-color@8.1.1) eslint-scope: 5.1.1 - eslint-utils: 3.0.0 + eslint-utils: 3.0.0(eslint@8.27.0) semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript - dev: false - /@typescript-eslint/visitor-keys/5.28.0: + /@typescript-eslint/visitor-keys@5.28.0: resolution: { integrity: sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==, @@ -7641,7 +7668,7 @@ packages: eslint-visitor-keys: 3.3.0 dev: true - /@typescript-eslint/visitor-keys/5.42.1: + /@typescript-eslint/visitor-keys@5.42.1: resolution: { integrity: sha512-LOQtSF4z+hejmpUvitPlc4hA7ERGoj2BVkesOcG91HCn8edLGUXbTrErmutmPbl8Bo9HjAvOO/zBKQHExXNA2A==, @@ -7651,7 +7678,7 @@ packages: "@typescript-eslint/types": 5.42.1 eslint-visitor-keys: 3.3.0 - /@typescript-eslint/visitor-keys/5.43.0: + /@typescript-eslint/visitor-keys@5.43.0: resolution: { integrity: sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==, @@ -7661,7 +7688,7 @@ packages: "@typescript-eslint/types": 5.43.0 eslint-visitor-keys: 3.3.0 - /@typescript-eslint/visitor-keys/5.9.1: + /@typescript-eslint/visitor-keys@5.9.1: resolution: { integrity: sha512-Xh37pNz9e9ryW4TVdwiFzmr4hloty8cFj8GTWMXh3Z8swGwyQWeCcNgF0hm6t09iZd6eiZmIf4zHedQVP6TVtg==, @@ -7671,18 +7698,18 @@ packages: "@typescript-eslint/types": 5.9.1 eslint-visitor-keys: 3.3.0 - /@vitejs/plugin-react/1.3.0: + /@vitejs/plugin-react@1.3.0: resolution: { integrity: sha512-H+yIupjUE4a+E4oeWUv4xUJIMR0DWBIMUG/DYgvj0J9Vu1rdHAlJ5JdbI+N1KDUD7Ee2fZ1DMPZ/NBg6mXtoCw==, } engines: {node: ">=12.0.0"} dependencies: - "@babel/core": 7.18.2 - "@babel/plugin-transform-react-jsx": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-transform-react-jsx-development": 7.16.7_@babel+core@7.18.2 - "@babel/plugin-transform-react-jsx-self": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-transform-react-jsx-source": 7.16.7_@babel+core@7.18.2 + "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/plugin-transform-react-jsx": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-react-jsx-development": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-react-jsx-self": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-react-jsx-source": 7.16.7(@babel/core@7.18.2) "@rollup/pluginutils": 4.2.1 react-refresh: 0.11.0 resolve: 1.22.0 @@ -7690,7 +7717,7 @@ packages: - supports-color dev: true - /@vitejs/plugin-react/2.2.0: + /@vitejs/plugin-react@2.2.0(vite@3.2.4): resolution: { integrity: sha512-FFpefhvExd1toVRlokZgxgy2JtnBOdp4ZDsq7ldCWaqGSGn9UhWMAVm/1lxPL14JfNS5yGz+s9yFrQY6shoStA==, @@ -7699,24 +7726,25 @@ packages: peerDependencies: vite: ^3.0.0 dependencies: - "@babel/core": 7.20.2 - "@babel/plugin-transform-react-jsx": 7.19.0_@babel+core@7.20.2 - "@babel/plugin-transform-react-jsx-development": 7.18.6_@babel+core@7.20.2 - "@babel/plugin-transform-react-jsx-self": 7.18.6_@babel+core@7.20.2 - "@babel/plugin-transform-react-jsx-source": 7.19.6_@babel+core@7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.20.2) + "@babel/plugin-transform-react-jsx-development": 7.18.6(@babel/core@7.20.2) + "@babel/plugin-transform-react-jsx-self": 7.18.6(@babel/core@7.20.2) + "@babel/plugin-transform-react-jsx-source": 7.19.6(@babel/core@7.20.2) magic-string: 0.26.7 react-refresh: 0.14.0 + vite: 3.2.4(@types/node@18.11.9) transitivePeerDependencies: - supports-color dev: true - /abab/2.0.6: + /abab@2.0.6: resolution: { integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==, } - /accepts/1.3.8: + /accepts@1.3.8: resolution: { integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==, @@ -7727,7 +7755,7 @@ packages: negotiator: 0.6.3 dev: true - /acorn-globals/6.0.0: + /acorn-globals@6.0.0: resolution: { integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==, @@ -7736,7 +7764,7 @@ packages: acorn: 7.4.1 acorn-walk: 7.2.0 - /acorn-globals/7.0.1: + /acorn-globals@7.0.1: resolution: { integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==, @@ -7745,7 +7773,7 @@ packages: acorn: 8.8.1 acorn-walk: 8.2.0 - /acorn-jsx/5.3.2_acorn@8.8.1: + /acorn-jsx@5.3.2(acorn@8.8.1): resolution: { integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, @@ -7755,21 +7783,21 @@ packages: dependencies: acorn: 8.8.1 - /acorn-walk/7.2.0: + /acorn-walk@7.2.0: resolution: { integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, } engines: {node: ">=0.4.0"} - /acorn-walk/8.2.0: + /acorn-walk@8.2.0: resolution: { integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==, } engines: {node: ">=0.4.0"} - /acorn/7.4.1: + /acorn@7.4.1: resolution: { integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, @@ -7777,7 +7805,7 @@ packages: engines: {node: ">=0.4.0"} hasBin: true - /acorn/8.7.1: + /acorn@8.7.1: resolution: { integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==, @@ -7785,7 +7813,7 @@ packages: engines: {node: ">=0.4.0"} hasBin: true - /acorn/8.8.1: + /acorn@8.8.1: resolution: { integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==, @@ -7793,7 +7821,7 @@ packages: engines: {node: ">=0.4.0"} hasBin: true - /address/1.2.0: + /address@1.2.0: resolution: { integrity: sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==, @@ -7801,18 +7829,18 @@ packages: engines: {node: ">= 10.0.0"} dev: false - /agent-base/6.0.2: + /agent-base@6.0.2(supports-color@8.1.1): resolution: { integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, } engines: {node: ">= 6.0.0"} dependencies: - debug: 4.3.4 + debug: 4.3.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /aggregate-error/3.1.0: + /aggregate-error@3.1.0: resolution: { integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, @@ -7822,7 +7850,7 @@ packages: clean-stack: 2.2.0 indent-string: 4.0.0 - /ajv/6.12.6: + /ajv@6.12.6: resolution: { integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, @@ -7833,7 +7861,7 @@ packages: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - /ansi-align/3.0.1: + /ansi-align@3.0.1: resolution: { integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==, @@ -7842,7 +7870,7 @@ packages: string-width: 4.2.3 dev: false - /ansi-colors/4.1.3: + /ansi-colors@4.1.3: resolution: { integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, @@ -7850,7 +7878,7 @@ packages: engines: {node: ">=6"} dev: false - /ansi-escapes/4.3.2: + /ansi-escapes@4.3.2: resolution: { integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, @@ -7859,21 +7887,21 @@ packages: dependencies: type-fest: 0.21.3 - /ansi-regex/5.0.1: + /ansi-regex@5.0.1: resolution: { integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, } engines: {node: ">=8"} - /ansi-regex/6.0.1: + /ansi-regex@6.0.1: resolution: { integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, } engines: {node: ">=12"} - /ansi-styles/3.2.1: + /ansi-styles@3.2.1: resolution: { integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, @@ -7882,7 +7910,7 @@ packages: dependencies: color-convert: 1.9.3 - /ansi-styles/4.3.0: + /ansi-styles@4.3.0: resolution: { integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, @@ -7891,28 +7919,28 @@ packages: dependencies: color-convert: 2.0.1 - /ansi-styles/5.2.0: + /ansi-styles@5.2.0: resolution: { integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, } engines: {node: ">=10"} - /ansi-styles/6.1.0: + /ansi-styles@6.1.0: resolution: { integrity: sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==, } engines: {node: ">=12"} - /any-promise/1.3.0: + /any-promise@1.3.0: resolution: { integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==, } dev: true - /anymatch/3.1.2: + /anymatch@3.1.2: resolution: { integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==, @@ -7922,20 +7950,20 @@ packages: normalize-path: 3.0.0 picomatch: 2.3.1 - /arg/4.1.3: + /arg@4.1.3: resolution: { integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, } - /arg/5.0.1: + /arg@5.0.1: resolution: { integrity: sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==, } dev: false - /argparse/1.0.10: + /argparse@1.0.10: resolution: { integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, @@ -7943,13 +7971,13 @@ packages: dependencies: sprintf-js: 1.0.3 - /argparse/2.0.1: + /argparse@2.0.1: resolution: { integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, } - /aria-query/4.2.2: + /aria-query@4.2.2: resolution: { integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==, @@ -7959,7 +7987,7 @@ packages: "@babel/runtime": 7.18.3 "@babel/runtime-corejs3": 7.18.3 - /aria-query/5.0.0: + /aria-query@5.0.0: resolution: { integrity: sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==, @@ -7967,7 +7995,7 @@ packages: engines: {node: ">=6.0"} dev: true - /arr-diff/4.0.0: + /arr-diff@4.0.0: resolution: { integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==, @@ -7975,7 +8003,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /arr-flatten/1.1.0: + /arr-flatten@1.1.0: resolution: { integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==, @@ -7983,7 +8011,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /arr-union/3.1.0: + /arr-union@3.1.0: resolution: { integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==, @@ -7991,18 +8019,18 @@ packages: engines: {node: ">=0.10.0"} dev: false - /array-differ/3.0.0: + /array-differ@3.0.0: resolution: { integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==, } engines: {node: ">=8"} - /array-flatten/1.1.1: + /array-flatten@1.1.1: resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=} dev: true - /array-includes/3.1.5: + /array-includes@3.1.5: resolution: { integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==, @@ -8015,7 +8043,7 @@ packages: get-intrinsic: 1.1.1 is-string: 1.0.7 - /array-union/1.0.2: + /array-union@1.0.2: resolution: { integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==, @@ -8025,14 +8053,14 @@ packages: array-uniq: 1.0.3 dev: false - /array-union/2.1.0: + /array-union@2.1.0: resolution: { integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, } engines: {node: ">=8"} - /array-uniq/1.0.3: + /array-uniq@1.0.3: resolution: { integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==, @@ -8040,7 +8068,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /array-unique/0.3.2: + /array-unique@0.3.2: resolution: { integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==, @@ -8048,7 +8076,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /array.prototype.flat/1.3.0: + /array.prototype.flat@1.3.0: resolution: { integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==, @@ -8060,7 +8088,7 @@ packages: es-abstract: 1.20.1 es-shim-unscopables: 1.0.0 - /array.prototype.flatmap/1.3.0: + /array.prototype.flatmap@1.3.0: resolution: { integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==, @@ -8072,7 +8100,7 @@ packages: es-abstract: 1.20.1 es-shim-unscopables: 1.0.0 - /arrify/1.0.1: + /arrify@1.0.1: resolution: { integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, @@ -8080,34 +8108,34 @@ packages: engines: {node: ">=0.10.0"} dev: false - /arrify/2.0.1: + /arrify@2.0.1: resolution: { integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==, } engines: {node: ">=8"} - /asap/2.0.6: + /asap@2.0.6: resolution: { integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==, } dev: true - /assert-never/1.2.1: + /assert-never@1.2.1: resolution: { integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==, } dev: true - /assertion-error/1.1.0: + /assertion-error@1.1.0: resolution: { integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, } - /assign-symbols/1.0.0: + /assign-symbols@1.0.0: resolution: { integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==, @@ -8115,13 +8143,13 @@ packages: engines: {node: ">=0.10.0"} dev: false - /ast-types-flow/0.0.7: + /ast-types-flow@0.0.7: resolution: { integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==, } - /ast-types/0.14.2: + /ast-types@0.14.2: resolution: { integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==, @@ -8130,34 +8158,34 @@ packages: dependencies: tslib: 2.4.0 - /astral-regex/2.0.0: + /astral-regex@2.0.0: resolution: { integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==, } engines: {node: ">=8"} - /async/1.5.2: + /async@1.5.2: resolution: { integrity: sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==, } dev: false - /async/3.2.4: + /async@3.2.4: resolution: { integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==, } dev: false - /asynckit/0.4.0: + /asynckit@0.4.0: resolution: { integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, } - /at-least-node/1.0.0: + /at-least-node@1.0.0: resolution: { integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==, @@ -8165,7 +8193,7 @@ packages: engines: {node: ">= 4.0.0"} dev: true - /atob/2.1.2: + /atob@2.1.2: resolution: { integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==, @@ -8173,7 +8201,7 @@ packages: engines: {node: ">= 4.5.0"} hasBin: true - /auto-bind/4.0.0: + /auto-bind@4.0.0: resolution: { integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==, @@ -8181,14 +8209,14 @@ packages: engines: {node: ">=8"} dev: false - /axe-core/4.4.2: + /axe-core@4.4.2: resolution: { integrity: sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==, } engines: {node: ">=12"} - /axios/0.24.0: + /axios@0.24.0: resolution: { integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==, @@ -8199,7 +8227,7 @@ packages: - debug dev: true - /axios/0.25.0: + /axios@0.25.0: resolution: { integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==, @@ -8210,13 +8238,13 @@ packages: - debug dev: false - /axobject-query/2.2.0: + /axobject-query@2.2.0: resolution: { integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==, } - /b64-lite/1.4.0: + /b64-lite@1.4.0: resolution: { integrity: sha512-aHe97M7DXt+dkpa8fHlCcm1CnskAHrJqEfMI0KN7dwqlzml/aUe1AGt6lk51HzrSfVD67xOso84sOpr+0wIe2w==, @@ -8224,7 +8252,7 @@ packages: dependencies: base-64: 0.1.0 - /babel-core/7.0.0-bridge.0_@babel+core@7.18.2: + /babel-core@7.0.0-bridge.0(@babel/core@7.18.2): resolution: { integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==, @@ -8232,10 +8260,32 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) dev: false - /babel-jest/29.3.0_@babel+core@7.20.2: + /babel-jest@27.5.1(@babel/core@7.12.10)(supports-color@8.1.1): + 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 + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@jest/transform": 27.5.1(supports-color@8.1.1) + "@jest/types": 27.5.1 + "@types/babel__core": 7.1.19 + babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + babel-preset-jest: 27.5.1(@babel/core@7.12.10) + chalk: 4.1.2 + graceful-fs: 4.2.10 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-jest@29.3.0(@babel/core@7.20.2): resolution: { integrity: sha512-LzQWdGm6hUugVeyGpIKI/T4SVT+PgAA5WFPqBDbneK7C/PqfckNb0tc4KvcKXq/PLA1yY6wTvB8Bc/REQdUxFg==, @@ -8244,18 +8294,18 @@ packages: peerDependencies: "@babel/core": ^7.8.0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@jest/transform": 29.3.0 "@types/babel__core": 7.1.19 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.2.0_@babel+core@7.20.2 + babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + babel-preset-jest: 29.2.0(@babel/core@7.20.2) chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 transitivePeerDependencies: - supports-color - /babel-plugin-dynamic-import-node/2.3.3: + /babel-plugin-dynamic-import-node@2.3.3: resolution: { integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==, @@ -8263,7 +8313,7 @@ packages: dependencies: object.assign: 4.1.2 - /babel-plugin-istanbul/6.1.1: + /babel-plugin-istanbul@6.1.1(supports-color@8.1.1): resolution: { integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, @@ -8273,12 +8323,25 @@ packages: "@babel/helper-plugin-utils": 7.17.12 "@istanbuljs/load-nyc-config": 1.1.0 "@istanbuljs/schema": 0.1.3 - istanbul-lib-instrument: 5.2.0 + istanbul-lib-instrument: 5.2.0(supports-color@8.1.1) test-exclude: 6.0.0 transitivePeerDependencies: - supports-color - /babel-plugin-jest-hoist/29.2.0: + /babel-plugin-jest-hoist@27.5.1: + resolution: + { + integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + "@babel/template": 7.18.10 + "@babel/types": 7.12.10 + "@types/babel__core": 7.1.19 + "@types/babel__traverse": 7.17.1 + dev: true + + /babel-plugin-jest-hoist@29.2.0: resolution: { integrity: sha512-TnspP2WNiR3GLfCsUNHqeXw0RoQ2f9U5hQ5L3XFpwuO8htQmSrhh8qsB6vi5Yi8+kuynN1yjDjQsPfkebmB6ZA==, @@ -8290,7 +8353,30 @@ packages: "@types/babel__core": 7.1.19 "@types/babel__traverse": 7.17.1 - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.2: + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.12.10): + resolution: + { + integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, + } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) + "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.12.10) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.12.10) + dev: true + + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.2): resolution: { integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, @@ -8298,21 +8384,35 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.2 - "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.20.2 - "@babel/plugin-syntax-bigint": 7.8.3_@babel+core@7.20.2 - "@babel/plugin-syntax-class-properties": 7.12.13_@babel+core@7.20.2 - "@babel/plugin-syntax-import-meta": 7.10.4_@babel+core@7.20.2 - "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.20.2 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.20.2 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.20.2 - "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.20.2 - "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.20.2 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.20.2 - "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.20.2 - "@babel/plugin-syntax-top-level-await": 7.14.5_@babel+core@7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.20.2) + "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.20.2) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.20.2) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.20.2) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.20.2) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.20.2) + + /babel-preset-jest@27.5.1(@babel/core@7.12.10): + 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 + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + babel-plugin-jest-hoist: 27.5.1 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.10) + dev: true - /babel-preset-jest/29.2.0_@babel+core@7.20.2: + /babel-preset-jest@29.2.0(@babel/core@7.20.2): resolution: { integrity: sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA==, @@ -8321,11 +8421,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) babel-plugin-jest-hoist: 29.2.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.2 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.2) - /babel-walk/3.0.0-canary-5: + /babel-walk@3.0.0-canary-5: resolution: { integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==, @@ -8335,7 +8435,7 @@ packages: "@babel/types": 7.18.4 dev: true - /babylon/6.18.0: + /babylon@6.18.0: resolution: { integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==, @@ -8343,7 +8443,7 @@ packages: hasBin: true dev: true - /bad-behavior/1.0.1: + /bad-behavior@1.0.1: resolution: { integrity: sha512-jWOTPr1R2zhobzDJUJNzAiJ33Uk3DzZ8UqbetUkVHuDrd4T8pUNKyU5ygreeV7XHTN61yFV3qv6GIZnBzjfWcg==, @@ -8351,19 +8451,26 @@ packages: engines: {node: ">=6.0.0"} dev: false - /balanced-match/1.0.2: + /balanced-match@1.0.2: resolution: { integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, } - /base-64/0.1.0: + /base-64@0.1.0: resolution: { integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==, } - /base/0.11.2: + /base64-js@1.5.1: + resolution: + { + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, + } + dev: false + + /base@0.11.2: resolution: { integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==, @@ -8379,14 +8486,7 @@ packages: pascalcase: 0.1.1 dev: false - /base64-js/1.5.1: - resolution: - { - integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, - } - dev: false - - /better-path-resolve/1.0.0: + /better-path-resolve@1.0.0: resolution: { integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==, @@ -8396,14 +8496,14 @@ packages: is-windows: 1.0.2 dev: false - /binary-extensions/2.2.0: + /binary-extensions@2.2.0: resolution: { integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, } engines: {node: ">=8"} - /bl/4.1.0: + /bl@4.1.0: resolution: { integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, @@ -8414,28 +8514,7 @@ packages: readable-stream: 3.6.0 dev: false - /body-parser/1.19.2: - resolution: - { - integrity: sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==, - } - engines: {node: ">= 0.8"} - dependencies: - bytes: 3.1.2 - content-type: 1.0.4 - debug: 2.6.9 - depd: 1.1.2 - http-errors: 1.8.1 - iconv-lite: 0.4.24 - on-finished: 2.3.0 - qs: 6.9.7 - raw-body: 2.4.3 - type-is: 1.6.18 - transitivePeerDependencies: - - supports-color - dev: true - - /body-parser/1.19.2_supports-color@8.1.1: + /body-parser@1.19.2(supports-color@8.1.1): resolution: { integrity: sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==, @@ -8444,7 +8523,7 @@ packages: dependencies: bytes: 3.1.2 content-type: 1.0.4 - debug: 2.6.9_supports-color@8.1.1 + debug: 2.6.9(supports-color@8.1.1) depd: 1.1.2 http-errors: 1.8.1 iconv-lite: 0.4.24 @@ -8456,14 +8535,14 @@ packages: - supports-color dev: true - /boolean/3.2.0: + /boolean@3.2.0: resolution: { integrity: sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==, } dev: false - /boxen/4.2.0: + /boxen@4.2.0: resolution: { integrity: sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==, @@ -8480,7 +8559,7 @@ packages: widest-line: 3.1.0 dev: false - /boxen/7.0.0: + /boxen@7.0.0: resolution: { integrity: sha512-j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg==, @@ -8497,7 +8576,7 @@ packages: wrap-ansi: 8.0.1 dev: false - /brace-expansion/1.1.11: + /brace-expansion@1.1.11: resolution: { integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, @@ -8506,7 +8585,7 @@ packages: balanced-match: 1.0.2 concat-map: 0.0.1 - /brace-expansion/2.0.1: + /brace-expansion@2.0.1: resolution: { integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, @@ -8515,28 +8594,7 @@ packages: balanced-match: 1.0.2 dev: false - /braces/2.3.2: - resolution: - { - integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==, - } - engines: {node: ">=0.10.0"} - dependencies: - arr-flatten: 1.1.0 - array-unique: 0.3.2 - extend-shallow: 2.0.1 - fill-range: 4.0.0 - isobject: 3.0.1 - repeat-element: 1.1.4 - snapdragon: 0.8.2 - snapdragon-node: 2.1.1 - split-string: 3.1.0 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - - /braces/2.3.2_supports-color@8.1.1: + /braces@2.3.2(supports-color@8.1.1): resolution: { integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==, @@ -8549,7 +8607,7 @@ packages: fill-range: 4.0.0 isobject: 3.0.1 repeat-element: 1.1.4 - snapdragon: 0.8.2_supports-color@8.1.1 + snapdragon: 0.8.2(supports-color@8.1.1) snapdragon-node: 2.1.1 split-string: 3.1.0 to-regex: 3.0.2 @@ -8557,7 +8615,7 @@ packages: - supports-color dev: false - /braces/3.0.2: + /braces@3.0.2: resolution: { integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, @@ -8566,7 +8624,7 @@ packages: dependencies: fill-range: 7.0.1 - /breakword/1.0.5: + /breakword@1.0.5: resolution: { integrity: sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg==, @@ -8575,13 +8633,13 @@ packages: wcwidth: 1.0.1 dev: false - /browser-process-hrtime/1.0.0: + /browser-process-hrtime@1.0.0: resolution: { integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==, } - /browserslist/4.20.3: + /browserslist@4.20.3: resolution: { integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==, @@ -8595,7 +8653,7 @@ packages: node-releases: 2.0.5 picocolors: 1.0.0 - /browserslist/4.21.4: + /browserslist@4.21.4: resolution: { integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==, @@ -8606,9 +8664,9 @@ packages: caniuse-lite: 1.0.30001434 electron-to-chromium: 1.4.284 node-releases: 2.0.6 - update-browserslist-db: 1.0.10_browserslist@4.21.4 + update-browserslist-db: 1.0.10(browserslist@4.21.4) - /bs-logger/0.2.6: + /bs-logger@0.2.6: resolution: { integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==, @@ -8618,7 +8676,7 @@ packages: fast-json-stable-stringify: 2.1.0 dev: true - /bser/2.1.1: + /bser@2.1.1: resolution: { integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, @@ -8626,27 +8684,27 @@ packages: dependencies: node-int64: 0.4.0 - /buffer-crc32/0.2.13: + /buffer-crc32@0.2.13: resolution: { integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==, } dev: true - /buffer-equal-constant-time/1.0.1: + /buffer-equal-constant-time@1.0.1: resolution: { integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==, } dev: false - /buffer-from/1.1.2: + /buffer-from@1.1.2: resolution: { integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, } - /buffer/5.7.1: + /buffer@5.7.1: resolution: { integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, @@ -8656,7 +8714,7 @@ packages: ieee754: 1.2.1 dev: false - /builtin-modules/3.2.0: + /builtin-modules@3.2.0: resolution: { integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==, @@ -8664,14 +8722,14 @@ packages: engines: {node: ">=6"} dev: true - /builtins/1.0.3: + /builtins@1.0.3: resolution: { integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==, } dev: false - /busboy/1.6.0: + /busboy@1.6.0: resolution: { integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, @@ -8680,7 +8738,7 @@ packages: dependencies: streamsearch: 1.1.0 - /bytes/3.1.2: + /bytes@3.1.2: resolution: { integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, @@ -8688,7 +8746,7 @@ packages: engines: {node: ">= 0.8"} dev: true - /cache-base/1.0.1: + /cache-base@1.0.1: resolution: { integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==, @@ -8706,7 +8764,7 @@ packages: unset-value: 1.0.0 dev: false - /cacheable-lookup/5.0.4: + /cacheable-lookup@5.0.4: resolution: { integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==, @@ -8714,7 +8772,7 @@ packages: engines: {node: ">=10.6.0"} dev: false - /cacheable-request/6.1.0: + /cacheable-request@6.1.0: resolution: { integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==, @@ -8730,7 +8788,7 @@ packages: responselike: 1.0.2 dev: false - /cacheable-request/7.0.2: + /cacheable-request@7.0.2: resolution: { integrity: sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==, @@ -8746,7 +8804,7 @@ packages: responselike: 2.0.0 dev: false - /call-bind/1.0.2: + /call-bind@1.0.2: resolution: { integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, @@ -8755,21 +8813,21 @@ packages: function-bind: 1.1.1 get-intrinsic: 1.1.1 - /call-me-maybe/1.0.1: + /call-me-maybe@1.0.1: resolution: { integrity: sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==, } dev: false - /callsites/3.1.0: + /callsites@3.1.0: resolution: { integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, } engines: {node: ">=6"} - /camelcase-keys/6.2.2: + /camelcase-keys@6.2.2: resolution: { integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, @@ -8781,21 +8839,21 @@ packages: quick-lru: 4.0.1 dev: false - /camelcase/5.3.1: + /camelcase@5.3.1: resolution: { integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, } engines: {node: ">=6"} - /camelcase/6.3.0: + /camelcase@6.3.0: resolution: { integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==, } engines: {node: ">=10"} - /camelcase/7.0.0: + /camelcase@7.0.0: resolution: { integrity: sha512-JToIvOmz6nhGsUhAYScbo2d6Py5wojjNfoxoc2mEVLUdJ70gJK2gnd+ABY1Tc3sVMyK7QDPtN0T/XdlCQWITyQ==, @@ -8803,19 +8861,19 @@ packages: engines: {node: ">=14.16"} dev: false - /caniuse-lite/1.0.30001339: + /caniuse-lite@1.0.30001339: resolution: { integrity: sha512-Es8PiVqCe+uXdms0Gu5xP5PF2bxLR7OBp3wUzUnuO7OHzhOfCyg3hdiGWVPVxhiuniOzng+hTc1u3fEQ0TlkSQ==, } - /caniuse-lite/1.0.30001434: + /caniuse-lite@1.0.30001434: resolution: { integrity: sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==, } - /chai/4.3.6: + /chai@4.3.6: resolution: { integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==, @@ -8830,7 +8888,7 @@ packages: pathval: 1.1.1 type-detect: 4.0.8 - /chalk/2.4.2: + /chalk@2.4.2: resolution: { integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, @@ -8841,7 +8899,7 @@ packages: escape-string-regexp: 1.0.5 supports-color: 5.5.0 - /chalk/3.0.0: + /chalk@3.0.0: resolution: { integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==, @@ -8851,7 +8909,7 @@ packages: ansi-styles: 4.3.0 supports-color: 7.2.0 - /chalk/4.1.2: + /chalk@4.1.2: resolution: { integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, @@ -8861,21 +8919,21 @@ packages: ansi-styles: 4.3.0 supports-color: 7.2.0 - /chalk/5.0.1: + /chalk@5.0.1: resolution: { integrity: sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==, } engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - /char-regex/1.0.2: + /char-regex@1.0.2: resolution: { integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, } engines: {node: ">=10"} - /character-parser/2.2.0: + /character-parser@2.2.0: resolution: { integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==, @@ -8884,20 +8942,20 @@ packages: is-regex: 1.1.4 dev: true - /chardet/0.7.0: + /chardet@0.7.0: resolution: { integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, } dev: false - /check-error/1.0.2: + /check-error@1.0.2: resolution: { integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==, } - /chevrotain/9.1.0: + /chevrotain@9.1.0: resolution: { integrity: sha512-A86/55so63HCfu0dgGg3j9u8uuuBOrSqly1OhBZxRu2x6sAKILLzfVjbGMw45kgier6lz45EzcjjWtTRgoT84Q==, @@ -8908,7 +8966,7 @@ packages: regexp-to-ast: 0.5.0 dev: false - /chokidar/3.5.3: + /chokidar@3.5.3: resolution: { integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, @@ -8925,7 +8983,7 @@ packages: optionalDependencies: fsevents: 2.3.2 - /chownr/2.0.0: + /chownr@2.0.0: resolution: { integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==, @@ -8933,7 +8991,7 @@ packages: engines: {node: ">=10"} dev: false - /chromedriver/100.0.0: + /chromedriver@100.0.0: resolution: { integrity: sha512-oLfB0IgFEGY9qYpFQO/BNSXbPw7bgfJUN5VX8Okps9W2qNT4IqKh5hDwKWtpUIQNI6K3ToWe2/J5NdpurTY02g==, @@ -8946,7 +9004,7 @@ packages: axios: 0.24.0 del: 6.1.1 extract-zip: 2.0.1 - https-proxy-agent: 5.0.1 + https-proxy-agent: 5.0.1(supports-color@8.1.1) proxy-from-env: 1.1.0 tcp-port-used: 1.0.2 transitivePeerDependencies: @@ -8954,32 +9012,32 @@ packages: - supports-color dev: true - /ci-info/2.0.0: + /ci-info@2.0.0: resolution: { integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==, } dev: false - /ci-info/3.3.1: + /ci-info@3.3.1: resolution: { integrity: sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==, } - /ci-info/3.5.0: + /ci-info@3.5.0: resolution: { integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==, } - /cjs-module-lexer/1.2.2: + /cjs-module-lexer@1.2.2: resolution: { integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==, } - /class-utils/0.3.6: + /class-utils@0.3.6: resolution: { integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==, @@ -8992,14 +9050,14 @@ packages: static-extend: 0.1.2 dev: false - /clean-stack/2.2.0: + /clean-stack@2.2.0: resolution: { integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, } engines: {node: ">=6"} - /cli-boxes/2.2.1: + /cli-boxes@2.2.1: resolution: { integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==, @@ -9007,7 +9065,7 @@ packages: engines: {node: ">=6"} dev: false - /cli-boxes/3.0.0: + /cli-boxes@3.0.0: resolution: { integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==, @@ -9015,7 +9073,7 @@ packages: engines: {node: ">=10"} dev: false - /cli-cursor/3.1.0: + /cli-cursor@3.1.0: resolution: { integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, @@ -9024,7 +9082,7 @@ packages: dependencies: restore-cursor: 3.1.0 - /cli-spinners/2.6.1: + /cli-spinners@2.6.1: resolution: { integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==, @@ -9032,7 +9090,7 @@ packages: engines: {node: ">=6"} dev: false - /cli-truncate/2.1.0: + /cli-truncate@2.1.0: resolution: { integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==, @@ -9042,7 +9100,7 @@ packages: slice-ansi: 3.0.0 string-width: 4.2.3 - /cli-truncate/3.1.0: + /cli-truncate@3.1.0: resolution: { integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==, @@ -9052,13 +9110,13 @@ packages: slice-ansi: 5.0.0 string-width: 5.1.2 - /client-only/0.0.1: + /client-only@0.0.1: resolution: { integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, } - /cliui/6.0.0: + /cliui@6.0.0: resolution: { integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, @@ -9069,7 +9127,18 @@ packages: wrap-ansi: 6.2.0 dev: false - /cliui/8.0.1: + /cliui@7.0.4: + resolution: + { + integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==, + } + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /cliui@8.0.1: resolution: { integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, @@ -9080,7 +9149,7 @@ packages: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - /clone-buffer/1.0.0: + /clone-buffer@1.0.0: resolution: { integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==, @@ -9088,7 +9157,7 @@ packages: engines: {node: ">= 0.10"} dev: false - /clone-deep/4.0.1: + /clone-deep@4.0.1: resolution: { integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==, @@ -9100,7 +9169,7 @@ packages: shallow-clone: 3.0.1 dev: false - /clone-response/1.0.2: + /clone-response@1.0.2: resolution: { integrity: sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==, @@ -9109,14 +9178,14 @@ packages: mimic-response: 1.0.1 dev: false - /clone-stats/1.0.0: + /clone-stats@1.0.0: resolution: { integrity: sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==, } dev: false - /clone/1.0.4: + /clone@1.0.4: resolution: { integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, @@ -9124,7 +9193,7 @@ packages: engines: {node: ">=0.8"} dev: false - /clone/2.1.2: + /clone@2.1.2: resolution: { integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, @@ -9132,7 +9201,7 @@ packages: engines: {node: ">=0.8"} dev: false - /cloneable-readable/1.1.3: + /cloneable-readable@1.1.3: resolution: { integrity: sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==, @@ -9143,14 +9212,14 @@ packages: readable-stream: 2.3.7 dev: false - /co/4.6.0: + /co@4.6.0: resolution: { integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==, } engines: {iojs: ">= 1.0.0", node: ">= 0.12.0"} - /code-excerpt/3.0.0: + /code-excerpt@3.0.0: resolution: { integrity: sha512-VHNTVhd7KsLGOqfX3SyeO8RyYPMp1GJOg194VITk04WMYCv4plV68YWe6TJZxd9MhobjtpMRnVky01gqZsalaw==, @@ -9160,13 +9229,13 @@ packages: convert-to-spaces: 1.0.2 dev: false - /collect-v8-coverage/1.0.1: + /collect-v8-coverage@1.0.1: resolution: { integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==, } - /collection-visit/1.0.0: + /collection-visit@1.0.0: resolution: { integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==, @@ -9177,7 +9246,7 @@ packages: object-visit: 1.0.1 dev: false - /color-convert/1.9.3: + /color-convert@1.9.3: resolution: { integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, @@ -9185,7 +9254,7 @@ packages: dependencies: color-name: 1.1.3 - /color-convert/2.0.1: + /color-convert@2.0.1: resolution: { integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, @@ -9194,25 +9263,25 @@ packages: dependencies: color-name: 1.1.4 - /color-name/1.1.3: + /color-name@1.1.3: resolution: { integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, } - /color-name/1.1.4: + /color-name@1.1.4: resolution: { integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, } - /colorette/2.0.17: + /colorette@2.0.17: resolution: { integrity: sha512-hJo+3Bkn0NCHybn9Tu35fIeoOKGOk5OCC32y4Hz2It+qlCO2Q3DeQ1hRn/tDDMQKRYUEzqsl7jbF6dYKjlE60g==, } - /colors/1.4.0: + /colors@1.4.0: resolution: { integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==, @@ -9220,7 +9289,7 @@ packages: engines: {node: ">=0.1.90"} dev: false - /combined-stream/1.0.8: + /combined-stream@1.0.8: resolution: { integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, @@ -9229,13 +9298,13 @@ packages: dependencies: delayed-stream: 1.0.0 - /commander/2.20.3: + /commander@2.20.3: resolution: { integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, } - /commander/4.1.1: + /commander@4.1.1: resolution: { integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==, @@ -9243,7 +9312,7 @@ packages: engines: {node: ">= 6"} dev: true - /commander/6.2.1: + /commander@6.2.1: resolution: { integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==, @@ -9251,27 +9320,27 @@ packages: engines: {node: ">= 6"} dev: true - /commander/9.4.1: + /commander@9.4.1: resolution: { integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==, } engines: {node: ^12.20.0 || >=14} - /commondir/1.0.1: + /commondir@1.0.1: resolution: { integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==, } - /component-emitter/1.3.0: + /component-emitter@1.3.0: resolution: { integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==, } dev: false - /compress-brotli/1.3.8: + /compress-brotli@1.3.8: resolution: { integrity: sha512-lVcQsjhxhIXsuupfy9fmZUFtAIdBmXA7EGY6GBdgZ++qkM9zG4YFT8iU7FoBxzryNDMOpD1HIFHUSX4D87oqhQ==, @@ -9282,20 +9351,20 @@ packages: json-buffer: 3.0.1 dev: false - /concat-map/0.0.1: + /concat-map@0.0.1: resolution: { integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, } - /consola/2.15.3: + /consola@2.15.3: resolution: { integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==, } dev: true - /console-table-printer/2.10.0: + /console-table-printer@2.10.0: resolution: { integrity: sha512-7pTsysaJs1+R+OO4cCtJbl+Lr4piHYIhi7/V1qHbOg/uiYgq2yUINFgvXZtVHqm9qpW0+Uk190qkGcKvzdunvg==, @@ -9304,7 +9373,7 @@ packages: simple-wcswidth: 1.0.1 dev: false - /constantinople/4.0.1: + /constantinople@4.0.1: resolution: { integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==, @@ -9314,7 +9383,7 @@ packages: "@babel/types": 7.18.4 dev: true - /content-disposition/0.5.4: + /content-disposition@0.5.4: resolution: { integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, @@ -9324,7 +9393,7 @@ packages: safe-buffer: 5.2.1 dev: true - /content-type/1.0.4: + /content-type@1.0.4: resolution: { integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==, @@ -9332,7 +9401,7 @@ packages: engines: {node: ">= 0.6"} dev: true - /convert-source-map/1.8.0: + /convert-source-map@1.8.0: resolution: { integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==, @@ -9340,13 +9409,13 @@ packages: dependencies: safe-buffer: 5.1.2 - /convert-source-map/2.0.0: + /convert-source-map@2.0.0: resolution: { integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, } - /convert-to-spaces/1.0.2: + /convert-to-spaces@1.0.2: resolution: { integrity: sha512-cj09EBuObp9gZNQCzc7hByQyrs6jVGE+o9kSJmeUoj+GiPiJvi5LYqEH/Hmme4+MTLHM+Ejtq+FChpjjEnsPdQ==, @@ -9354,7 +9423,7 @@ packages: engines: {node: ">= 4"} dev: false - /cookie-session/2.0.0_supports-color@8.1.1: + /cookie-session@2.0.0(supports-color@8.1.1): resolution: { integrity: sha512-hKvgoThbw00zQOleSlUr2qpvuNweoqBtxrmx0UFosx6AGi9lYtLoA+RbsvknrEX8Pr6MDbdWAb2j6SnMn+lPsg==, @@ -9362,18 +9431,18 @@ packages: engines: {node: ">= 0.10"} dependencies: cookies: 0.8.0 - debug: 3.2.7_supports-color@8.1.1 + debug: 3.2.7(supports-color@8.1.1) on-headers: 1.0.2 safe-buffer: 5.2.1 transitivePeerDependencies: - supports-color dev: false - /cookie-signature/1.0.6: + /cookie-signature@1.0.6: resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} dev: true - /cookie/0.4.1: + /cookie@0.4.1: resolution: { integrity: sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==, @@ -9381,7 +9450,7 @@ packages: engines: {node: ">= 0.6"} dev: false - /cookie/0.4.2: + /cookie@0.4.2: resolution: { integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==, @@ -9389,14 +9458,14 @@ packages: engines: {node: ">= 0.6"} dev: true - /cookie/0.5.0: + /cookie@0.5.0: resolution: { integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==, } engines: {node: ">= 0.6"} - /cookies/0.8.0: + /cookies@0.8.0: resolution: { integrity: sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==, @@ -9407,7 +9476,7 @@ packages: keygrip: 1.1.0 dev: false - /copy-anything/3.0.2: + /copy-anything@3.0.2: resolution: { integrity: sha512-CzATjGXzUQ0EvuvgOCI6A4BGOo2bcVx8B+eC2nF862iv9fopnPQwlrbACakNCHRIJbCSBj+J/9JeDf60k64MkA==, @@ -9417,7 +9486,7 @@ packages: is-what: 4.1.7 dev: false - /copy-descriptor/0.1.1: + /copy-descriptor@0.1.1: resolution: { integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==, @@ -9425,7 +9494,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /core-js-compat/3.22.5: + /core-js-compat@3.22.5: resolution: { integrity: sha512-rEF75n3QtInrYICvJjrAgV03HwKiYvtKHdPtaba1KucG+cNZ4NJnH9isqt979e67KZlhpbCOTwnsvnIr+CVeOg==, @@ -9434,7 +9503,7 @@ packages: browserslist: 4.21.4 semver: 7.0.0 - /core-js-pure/3.23.0: + /core-js-pure@3.23.0: resolution: { integrity: sha512-ksjJc/xVTQzT2q6trPja2qWynMEaGO36rDui2SiqLPYab9TmPgT8nIVcre/yscviPCSweUdCDGKe4MsQA9w1zQ==, @@ -9442,19 +9511,19 @@ packages: deprecated: core-js-pure@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js-pure. requiresBuild: true - /core-util-is/1.0.3: + /core-util-is@1.0.3: resolution: { integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, } - /create-require/1.1.1: + /create-require@1.1.1: resolution: { integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, } - /cross-spawn/5.1.0: + /cross-spawn@5.1.0: resolution: { integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, @@ -9465,7 +9534,7 @@ packages: which: 1.3.1 dev: false - /cross-spawn/6.0.5: + /cross-spawn@6.0.5: resolution: { integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==, @@ -9478,7 +9547,7 @@ packages: shebang-command: 1.2.0 which: 1.3.1 - /cross-spawn/7.0.3: + /cross-spawn@7.0.3: resolution: { integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, @@ -9489,7 +9558,7 @@ packages: shebang-command: 2.0.0 which: 2.0.2 - /crypto-random-string/3.3.1: + /crypto-random-string@3.3.1: resolution: { integrity: sha512-5j88ECEn6h17UePrLi6pn1JcLtAiANa3KExyr9y9Z5vo2mv56Gh3I4Aja/B9P9uyMwyxNHAHWv+nE72f30T5Dg==, @@ -9499,14 +9568,14 @@ packages: type-fest: 0.8.1 dev: true - /css.escape/1.5.1: + /css.escape@1.5.1: resolution: { integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==, } dev: true - /css/3.0.0: + /css@3.0.0: resolution: { integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==, @@ -9517,19 +9586,26 @@ packages: source-map-resolve: 0.6.0 dev: true - /cssom/0.3.8: + /cssom@0.3.8: resolution: { integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==, } - /cssom/0.5.0: + /cssom@0.4.4: + resolution: + { + integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==, + } + dev: true + + /cssom@0.5.0: resolution: { integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==, } - /cssstyle/2.3.0: + /cssstyle@2.3.0: resolution: { integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==, @@ -9538,34 +9614,34 @@ packages: dependencies: cssom: 0.3.8 - /csstype/3.1.0: + /csstype@3.1.0: resolution: { integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==, } - /csv-generate/3.4.3: + /csv-generate@3.4.3: resolution: { integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==, } dev: false - /csv-parse/4.16.3: + /csv-parse@4.16.3: resolution: { integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==, } dev: false - /csv-stringify/5.6.5: + /csv-stringify@5.6.5: resolution: { integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==, } dev: false - /csv/5.5.3: + /csv@5.5.3: resolution: { integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==, @@ -9578,20 +9654,32 @@ packages: stream-transform: 2.1.3 dev: false - /damerau-levenshtein/1.0.8: + /damerau-levenshtein@1.0.8: resolution: { integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, } - /data-uri-to-buffer/4.0.0: + /data-uri-to-buffer@4.0.0: resolution: { integrity: sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==, } engines: {node: ">= 12"} - /data-urls/3.0.2: + /data-urls@2.0.0: + resolution: + { + integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==, + } + engines: {node: ">=10"} + dependencies: + abab: 2.0.6 + whatwg-mimetype: 2.3.0 + whatwg-url: 8.7.0 + dev: true + + /data-urls@3.0.2: resolution: { integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==, @@ -9602,27 +9690,14 @@ packages: whatwg-mimetype: 3.0.0 whatwg-url: 11.0.0 - /debounce/1.2.1: + /debounce@1.2.1: resolution: { integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==, } dev: true - /debug/2.6.9: - resolution: - { - integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, - } - peerDependencies: - supports-color: "*" - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.0.0 - - /debug/2.6.9_supports-color@8.1.1: + /debug@2.6.9(supports-color@8.1.1): resolution: { integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, @@ -9636,20 +9711,7 @@ packages: ms: 2.0.0 supports-color: 8.1.1 - /debug/3.2.7: - resolution: - { - integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, - } - peerDependencies: - supports-color: "*" - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.3 - - /debug/3.2.7_supports-color@8.1.1: + /debug@3.2.7(supports-color@8.1.1): resolution: { integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, @@ -9662,9 +9724,8 @@ packages: dependencies: ms: 2.1.3 supports-color: 8.1.1 - dev: false - /debug/4.3.1: + /debug@4.3.1: resolution: { integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==, @@ -9679,21 +9740,7 @@ packages: ms: 2.1.2 dev: true - /debug/4.3.3: - resolution: - { - integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==, - } - engines: {node: ">=6.0"} - peerDependencies: - supports-color: "*" - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - - /debug/4.3.3_supports-color@8.1.1: + /debug@4.3.3(supports-color@8.1.1): resolution: { integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==, @@ -9708,21 +9755,7 @@ packages: ms: 2.1.2 supports-color: 8.1.1 - /debug/4.3.4: - resolution: - { - integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, - } - engines: {node: ">=6.0"} - peerDependencies: - supports-color: "*" - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - - /debug/4.3.4_supports-color@8.1.1: + /debug@4.3.4(supports-color@8.1.1): resolution: { integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, @@ -9737,7 +9770,7 @@ packages: ms: 2.1.2 supports-color: 8.1.1 - /decamelize-keys/1.1.0: + /decamelize-keys@1.1.0: resolution: { integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==, @@ -9748,7 +9781,7 @@ packages: map-obj: 1.0.1 dev: false - /decamelize/1.2.0: + /decamelize@1.2.0: resolution: { integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, @@ -9756,26 +9789,26 @@ packages: engines: {node: ">=0.10.0"} dev: false - /decimal.js/10.3.1: + /decimal.js@10.3.1: resolution: { integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==, } - /decimal.js/10.4.2: + /decimal.js@10.4.2: resolution: { integrity: sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==, } - /decode-uri-component/0.2.0: + /decode-uri-component@0.2.0: resolution: { integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==, } engines: {node: ">=0.10"} - /decompress-response/3.3.0: + /decompress-response@3.3.0: resolution: { integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==, @@ -9785,7 +9818,7 @@ packages: mimic-response: 1.0.1 dev: false - /decompress-response/6.0.0: + /decompress-response@6.0.0: resolution: { integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==, @@ -9795,13 +9828,13 @@ packages: mimic-response: 3.1.0 dev: false - /dedent/0.7.0: + /dedent@0.7.0: resolution: { integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==, } - /deep-eql/3.0.1: + /deep-eql@3.0.1: resolution: { integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==, @@ -9810,7 +9843,7 @@ packages: dependencies: type-detect: 4.0.8 - /deep-extend/0.6.0: + /deep-extend@0.6.0: resolution: { integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==, @@ -9818,20 +9851,20 @@ packages: engines: {node: ">=4.0.0"} dev: false - /deep-is/0.1.4: + /deep-is@0.1.4: resolution: { integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, } - /deepmerge/4.2.2: + /deepmerge@4.2.2: resolution: { integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==, } engines: {node: ">=0.10.0"} - /defaults/1.0.3: + /defaults@1.0.3: resolution: { integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==, @@ -9840,14 +9873,14 @@ packages: clone: 1.0.4 dev: false - /defer-to-connect/1.1.3: + /defer-to-connect@1.1.3: resolution: { integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==, } dev: false - /defer-to-connect/2.0.1: + /defer-to-connect@2.0.1: resolution: { integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==, @@ -9855,15 +9888,14 @@ packages: engines: {node: ">=10"} dev: false - /define-lazy-prop/2.0.0: + /define-lazy-prop@2.0.0: resolution: { integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==, } engines: {node: ">=8"} - dev: true - /define-properties/1.1.4: + /define-properties@1.1.4: resolution: { integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==, @@ -9873,7 +9905,7 @@ packages: has-property-descriptors: 1.0.0 object-keys: 1.1.1 - /define-property/0.2.5: + /define-property@0.2.5: resolution: { integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==, @@ -9883,7 +9915,7 @@ packages: is-descriptor: 0.1.6 dev: false - /define-property/1.0.0: + /define-property@1.0.0: resolution: { integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==, @@ -9893,7 +9925,7 @@ packages: is-descriptor: 1.0.2 dev: false - /define-property/2.0.2: + /define-property@2.0.2: resolution: { integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==, @@ -9904,21 +9936,21 @@ packages: isobject: 3.0.1 dev: false - /defu/5.0.1: + /defu@5.0.1: resolution: { integrity: sha512-EPS1carKg+dkEVy3qNTqIdp2qV7mUP08nIsupfwQpz++slCVRw7qbQyWvSTig+kFPwz2XXp5/kIIkH+CwrJKkQ==, } dev: true - /defu/6.0.0: + /defu@6.0.0: resolution: { integrity: sha512-t2MZGLf1V2rV4VBZbWIaXKdX/mUcYW0n2znQZoADBkGGxYL8EWqCuCZBmJPJ/Yy9fofJkyuuSuo5GSwo0XdEgw==, } dev: true - /del/6.1.1: + /del@6.1.1: resolution: { integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==, @@ -9935,21 +9967,21 @@ packages: slash: 3.0.0 dev: true - /delay/5.0.0: + /delay@5.0.0: resolution: { integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==, } engines: {node: ">=10"} - /delayed-stream/1.0.0: + /delayed-stream@1.0.0: resolution: { integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, } engines: {node: ">=0.4.0"} - /depd/1.1.2: + /depd@1.1.2: resolution: { integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==, @@ -9957,7 +9989,7 @@ packages: engines: {node: ">= 0.6"} dev: true - /depd/2.0.0: + /depd@2.0.0: resolution: { integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, @@ -9965,14 +9997,14 @@ packages: engines: {node: ">= 0.8"} dev: false - /destroy/1.0.4: + /destroy@1.0.4: resolution: { integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==, } dev: true - /detect-file/1.0.0: + /detect-file@1.0.0: resolution: { integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==, @@ -9980,7 +10012,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /detect-indent/6.1.0: + /detect-indent@6.1.0: resolution: { integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, @@ -9988,21 +10020,21 @@ packages: engines: {node: ">=8"} dev: false - /detect-newline/3.1.0: + /detect-newline@3.1.0: resolution: { integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==, } engines: {node: ">=8"} - /detect-node/2.1.0: + /detect-node@2.1.0: resolution: { integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==, } dev: false - /detect-port/1.3.0_supports-color@8.1.1: + /detect-port@1.3.0(supports-color@8.1.1): resolution: { integrity: sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==, @@ -10011,26 +10043,34 @@ packages: hasBin: true dependencies: address: 1.2.0 - debug: 2.6.9_supports-color@8.1.1 + debug: 2.6.9(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false - /diff-sequences/29.2.0: + /diff-sequences@27.5.1: + resolution: + { + integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dev: true + + /diff-sequences@29.2.0: resolution: { integrity: sha512-413SY5JpYeSBZxmenGEmCVQ8mCgtFJF0w9PROdaS6z987XC2Pd2GOKqOITLtMftmyFZqgtCOb/QA7/Z3ZXfzIw==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /diff/4.0.2: + /diff@4.0.2: resolution: { integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, } engines: {node: ">=0.3.1"} - /diff/5.0.0: + /diff@5.0.0: resolution: { integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==, @@ -10038,7 +10078,7 @@ packages: engines: {node: ">=0.3.1"} dev: false - /dir-glob/2.2.2: + /dir-glob@2.2.2: resolution: { integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==, @@ -10048,7 +10088,7 @@ packages: path-type: 3.0.0 dev: false - /dir-glob/3.0.1: + /dir-glob@3.0.1: resolution: { integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, @@ -10057,11 +10097,11 @@ packages: dependencies: path-type: 4.0.0 - /discontinuous-range/1.0.0: + /discontinuous-range@1.0.0: resolution: {integrity: sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=} dev: true - /display-notification/2.0.0: + /display-notification@2.0.0: resolution: { integrity: sha512-TdmtlAcdqy1NU+j7zlkDdMnCL878zriLaBmoD9quOoq1ySSSGv03l0hXK5CvIFZlIfFI/hizqdQuW+Num7xuhw==, @@ -10072,7 +10112,7 @@ packages: run-applescript: 3.2.0 dev: true - /doctrine/2.1.0: + /doctrine@2.1.0: resolution: { integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, @@ -10081,7 +10121,7 @@ packages: dependencies: esutils: 2.0.3 - /doctrine/3.0.0: + /doctrine@3.0.0: resolution: { integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, @@ -10090,21 +10130,21 @@ packages: dependencies: esutils: 2.0.3 - /doctypes/1.1.0: + /doctypes@1.1.0: resolution: { integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==, } dev: true - /dom-accessibility-api/0.5.14: + /dom-accessibility-api@0.5.14: resolution: { integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==, } dev: true - /dom-serializer/1.4.1: + /dom-serializer@1.4.1: resolution: { integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==, @@ -10115,14 +10155,24 @@ packages: entities: 2.2.0 dev: true - /domelementtype/2.3.0: + /domelementtype@2.3.0: resolution: { integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, } dev: true - /domexception/4.0.0: + /domexception@2.0.1: + resolution: + { + integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==, + } + engines: {node: ">=8"} + dependencies: + webidl-conversions: 5.0.0 + dev: true + + /domexception@4.0.0: resolution: { integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==, @@ -10131,7 +10181,7 @@ packages: dependencies: webidl-conversions: 7.0.0 - /domhandler/4.3.1: + /domhandler@4.3.1: resolution: { integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==, @@ -10141,7 +10191,7 @@ packages: domelementtype: 2.3.0 dev: true - /domutils/2.8.0: + /domutils@2.8.0: resolution: { integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==, @@ -10152,7 +10202,7 @@ packages: domhandler: 4.3.1 dev: true - /dotenv-expand/8.0.3: + /dotenv-expand@8.0.3: resolution: { integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==, @@ -10160,7 +10210,7 @@ packages: engines: {node: ">=12"} dev: false - /dotenv/16.0.0: + /dotenv@16.0.0: resolution: { integrity: sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==, @@ -10168,27 +10218,27 @@ packages: engines: {node: ">=12"} dev: false - /duplexer/0.1.2: + /duplexer3@0.1.4: resolution: { - integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, + integrity: sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==, } - dev: true + dev: false - /duplexer3/0.1.4: + /duplexer@0.1.2: resolution: { - integrity: sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==, + integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, } - dev: false + dev: true - /eastasianwidth/0.2.0: + /eastasianwidth@0.2.0: resolution: { integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, } - /ecdsa-sig-formatter/1.0.11: + /ecdsa-sig-formatter@1.0.11: resolution: { integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==, @@ -10197,11 +10247,11 @@ packages: safe-buffer: 5.2.1 dev: false - /ee-first/1.1.1: + /ee-first@1.1.1: resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} dev: true - /ejs/3.1.8: + /ejs@3.1.8: resolution: { integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==, @@ -10212,38 +10262,46 @@ packages: jake: 10.8.5 dev: false - /electron-to-chromium/1.4.146: + /electron-to-chromium@1.4.146: resolution: { integrity: sha512-4eWebzDLd+hYLm4csbyMU2EbBnqhwl8Oe9eF/7CBDPWcRxFmqzx4izxvHH+lofQxzieg8UbB8ZuzNTxeukzfTg==, } - /electron-to-chromium/1.4.284: + /electron-to-chromium@1.4.284: resolution: { integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==, } - /emittery/0.13.1: + /emittery@0.13.1: resolution: { integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==, } engines: {node: ">=12"} - /emoji-regex/8.0.0: + /emittery@0.8.1: + resolution: + { + integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==, + } + engines: {node: ">=10"} + dev: true + + /emoji-regex@8.0.0: resolution: { integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, } - /emoji-regex/9.2.2: + /emoji-regex@9.2.2: resolution: { integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, } - /encodeurl/1.0.2: + /encodeurl@1.0.2: resolution: { integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==, @@ -10251,7 +10309,7 @@ packages: engines: {node: ">= 0.8"} dev: true - /encoding-japanese/2.0.0: + /encoding-japanese@2.0.0: resolution: { integrity: sha512-++P0RhebUC8MJAwJOsT93dT+5oc5oPImp1HubZpAuCZ5kTLnhuuBhKHj2jJeO/Gj93idPBWmIuQ9QWMe5rX3pQ==, @@ -10259,7 +10317,7 @@ packages: engines: {node: ">=8.10.0"} dev: true - /end-of-stream/1.4.4: + /end-of-stream@1.4.4: resolution: { integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, @@ -10267,7 +10325,7 @@ packages: dependencies: once: 1.4.0 - /enhanced-resolve/5.11.0: + /enhanced-resolve@5.11.0: resolution: { integrity: sha512-0Gcraf7gAJSQoPg+bTSXNhuzAYtXqLc4C011vb8S3B8XUSEkGYNBk20c68X9291VF4vvsCD8SPkr6Mza+DwU+g==, @@ -10276,9 +10334,8 @@ packages: dependencies: graceful-fs: 4.2.10 tapable: 2.2.1 - dev: true - /enquirer/2.3.6: + /enquirer@2.3.6: resolution: { integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==, @@ -10288,21 +10345,21 @@ packages: ansi-colors: 4.1.3 dev: false - /entities/2.2.0: + /entities@2.2.0: resolution: { integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==, } dev: true - /entities/4.4.0: + /entities@4.4.0: resolution: { integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==, } engines: {node: ">=0.12"} - /envinfo/7.8.1: + /envinfo@7.8.1: resolution: { integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==, @@ -10311,7 +10368,7 @@ packages: hasBin: true dev: false - /error-ex/1.3.2: + /error-ex@1.3.2: resolution: { integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, @@ -10319,7 +10376,7 @@ packages: dependencies: is-arrayish: 0.2.1 - /es-abstract/1.20.1: + /es-abstract@1.20.1: resolution: { integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==, @@ -10350,14 +10407,14 @@ packages: string.prototype.trimstart: 1.0.5 unbox-primitive: 1.0.2 - /es-module-lexer/0.9.3: + /es-module-lexer@0.9.3: resolution: { integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==, } dev: true - /es-shim-unscopables/1.0.0: + /es-shim-unscopables@1.0.0: resolution: { integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, @@ -10365,7 +10422,7 @@ packages: dependencies: has: 1.0.3 - /es-to-primitive/1.2.1: + /es-to-primitive@1.2.1: resolution: { integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, @@ -10376,21 +10433,21 @@ packages: is-date-object: 1.0.5 is-symbol: 1.0.4 - /es6-error/4.1.1: + /es6-error@4.1.1: resolution: { integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==, } dev: false - /es6-promise/4.2.8: + /es6-promise@4.2.8: resolution: { integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==, } dev: false - /esbuild-android-64/0.14.34: + /esbuild-android-64@0.14.34: resolution: { integrity: sha512-XfxcfJqmMYsT/LXqrptzFxmaR3GWzXHDLdFNIhm6S00zPaQF1TBBWm+9t0RZ6LRR7iwH57DPjaOeW20vMqI4Yw==, @@ -10402,7 +10459,7 @@ packages: dev: false optional: true - /esbuild-android-64/0.14.51: + /esbuild-android-64@0.14.51: resolution: { integrity: sha512-6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ==, @@ -10414,7 +10471,7 @@ packages: dev: true optional: true - /esbuild-android-64/0.15.15: + /esbuild-android-64@0.15.15: resolution: { integrity: sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==, @@ -10425,7 +10482,7 @@ packages: requiresBuild: true optional: true - /esbuild-android-arm64/0.14.34: + /esbuild-android-arm64@0.14.34: resolution: { integrity: sha512-T02+NXTmSRL1Mc6puz+R9CB54rSPICkXKq6+tw8B6vxZFnCPzbJxgwIX4kcluz9p8nYBjF3+lSilTGWb7+Xgew==, @@ -10437,7 +10494,7 @@ packages: dev: false optional: true - /esbuild-android-arm64/0.14.51: + /esbuild-android-arm64@0.14.51: resolution: { integrity: sha512-vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A==, @@ -10449,7 +10506,7 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.15.15: + /esbuild-android-arm64@0.15.15: resolution: { integrity: sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==, @@ -10460,7 +10517,7 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-64/0.14.34: + /esbuild-darwin-64@0.14.34: resolution: { integrity: sha512-pLRip2Bh4Ng7Bf6AMgCrSp3pPe/qZyf11h5Qo2mOfJqLWzSVjxrXW+CFRJfrOVP7TCnh/gmZSM2AFdCPB72vtw==, @@ -10472,7 +10529,7 @@ packages: dev: false optional: true - /esbuild-darwin-64/0.14.51: + /esbuild-darwin-64@0.14.51: resolution: { integrity: sha512-YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA==, @@ -10484,7 +10541,7 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.15.15: + /esbuild-darwin-64@0.15.15: resolution: { integrity: sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==, @@ -10495,7 +10552,7 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-arm64/0.14.34: + /esbuild-darwin-arm64@0.14.34: resolution: { integrity: sha512-vpidSJEBxx6lf1NWgXC+DCmGqesJuZ5Y8aQVVsaoO4i8tRXbXb0whChRvop/zd3nfNM4dIl5EXAky0knRX5I6w==, @@ -10507,7 +10564,7 @@ packages: dev: false optional: true - /esbuild-darwin-arm64/0.14.51: + /esbuild-darwin-arm64@0.14.51: resolution: { integrity: sha512-juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow==, @@ -10519,7 +10576,7 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.15.15: + /esbuild-darwin-arm64@0.15.15: resolution: { integrity: sha512-P8jOZ5zshCNIuGn+9KehKs/cq5uIniC+BeCykvdVhx/rBXSxmtj3CUIKZz4sDCuESMbitK54drf/2QX9QHG5Ag==, @@ -10530,7 +10587,7 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-64/0.14.34: + /esbuild-freebsd-64@0.14.34: resolution: { integrity: sha512-m0HBjePhe0hAQJgtMRMNV9kMgIyV4/qSnzPx42kRMQBcPhgjAq1JRu4Il26czC+9FgpMbFkUktb07f/Lwnc6CA==, @@ -10542,7 +10599,7 @@ packages: dev: false optional: true - /esbuild-freebsd-64/0.14.51: + /esbuild-freebsd-64@0.14.51: resolution: { integrity: sha512-cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g==, @@ -10554,7 +10611,7 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.15.15: + /esbuild-freebsd-64@0.15.15: resolution: { integrity: sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==, @@ -10565,7 +10622,7 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-arm64/0.14.34: + /esbuild-freebsd-arm64@0.14.34: resolution: { integrity: sha512-cpRc2B94L1KvMPPYB4D6G39jLqpKlD3noAMY4/e86iXXXkhUYJJEtTuyNFTa9JRpWM0xCAp4mxjHjoIiLuoCLA==, @@ -10577,7 +10634,7 @@ packages: dev: false optional: true - /esbuild-freebsd-arm64/0.14.51: + /esbuild-freebsd-arm64@0.14.51: resolution: { integrity: sha512-TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg==, @@ -10589,7 +10646,7 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.15.15: + /esbuild-freebsd-arm64@0.15.15: resolution: { integrity: sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==, @@ -10600,7 +10657,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-32/0.14.34: + /esbuild-linux-32@0.14.34: resolution: { integrity: sha512-8nQaEaoW7MH/K/RlozJa+lE1ejHIr8fuPIHhc513UebRav7HtXgQvxHQ6VZRUkWtep23M6dd7UqhwO1tMOfzQQ==, @@ -10612,7 +10669,7 @@ packages: dev: false optional: true - /esbuild-linux-32/0.14.51: + /esbuild-linux-32@0.14.51: resolution: { integrity: sha512-RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w==, @@ -10624,7 +10681,7 @@ packages: dev: true optional: true - /esbuild-linux-32/0.15.15: + /esbuild-linux-32@0.15.15: resolution: { integrity: sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==, @@ -10635,7 +10692,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-64/0.14.34: + /esbuild-linux-64@0.14.34: resolution: { integrity: sha512-Y3of4qQoLLlAgf042MlrY1P+7PnN9zWj8nVtw9XQG5hcLOZLz7IKpU35oeu7n4wvyaZHwvQqDJ93gRLqdJekcQ==, @@ -10647,7 +10704,7 @@ packages: dev: false optional: true - /esbuild-linux-64/0.14.51: + /esbuild-linux-64@0.14.51: resolution: { integrity: sha512-dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA==, @@ -10659,7 +10716,7 @@ packages: dev: true optional: true - /esbuild-linux-64/0.15.15: + /esbuild-linux-64@0.15.15: resolution: { integrity: sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==, @@ -10670,77 +10727,77 @@ packages: requiresBuild: true optional: true - /esbuild-linux-arm/0.14.34: + /esbuild-linux-arm64@0.14.34: resolution: { - integrity: sha512-9lpq1NcJqssAF7alCO6zL3gvBVVt/lKw4oetUM7OgNnRX0OWpB+ZIO9FwCrSj/dMdmgDhPLf+119zB8QxSMmAg==, + integrity: sha512-IlWaGtj9ir7+Nrume1DGcyzBDlK8GcnJq0ANKwcI9pVw8tqr+6GD0eqyF9SF1mR8UmAp+odrx1H5NdR2cHdFHA==, } engines: {node: ">=12"} - cpu: [arm] + cpu: [arm64] os: [linux] requiresBuild: true dev: false optional: true - /esbuild-linux-arm/0.14.51: + /esbuild-linux-arm64@0.14.51: resolution: { - integrity: sha512-LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg==, + integrity: sha512-D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw==, } engines: {node: ">=12"} - cpu: [arm] + cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /esbuild-linux-arm/0.15.15: + /esbuild-linux-arm64@0.15.15: resolution: { - integrity: sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==, + integrity: sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==, } engines: {node: ">=12"} - cpu: [arm] + cpu: [arm64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-arm64/0.14.34: + /esbuild-linux-arm@0.14.34: resolution: { - integrity: sha512-IlWaGtj9ir7+Nrume1DGcyzBDlK8GcnJq0ANKwcI9pVw8tqr+6GD0eqyF9SF1mR8UmAp+odrx1H5NdR2cHdFHA==, + integrity: sha512-9lpq1NcJqssAF7alCO6zL3gvBVVt/lKw4oetUM7OgNnRX0OWpB+ZIO9FwCrSj/dMdmgDhPLf+119zB8QxSMmAg==, } engines: {node: ">=12"} - cpu: [arm64] + cpu: [arm] os: [linux] requiresBuild: true dev: false optional: true - /esbuild-linux-arm64/0.14.51: + /esbuild-linux-arm@0.14.51: resolution: { - integrity: sha512-D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw==, + integrity: sha512-LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg==, } engines: {node: ">=12"} - cpu: [arm64] + cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /esbuild-linux-arm64/0.15.15: + /esbuild-linux-arm@0.15.15: resolution: { - integrity: sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==, + integrity: sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==, } engines: {node: ">=12"} - cpu: [arm64] + cpu: [arm] os: [linux] requiresBuild: true optional: true - /esbuild-linux-mips64le/0.14.34: + /esbuild-linux-mips64le@0.14.34: resolution: { integrity: sha512-k3or+01Rska1AjUyNjA4buEwB51eyN/xPQAoOx1CjzAQC3l8rpjUDw55kXyL63O/1MUi4ISvtNtl8gLwdyEcxw==, @@ -10752,7 +10809,7 @@ packages: dev: false optional: true - /esbuild-linux-mips64le/0.14.51: + /esbuild-linux-mips64le@0.14.51: resolution: { integrity: sha512-vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A==, @@ -10764,7 +10821,7 @@ packages: dev: true optional: true - /esbuild-linux-mips64le/0.15.15: + /esbuild-linux-mips64le@0.15.15: resolution: { integrity: sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==, @@ -10775,7 +10832,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-ppc64le/0.14.34: + /esbuild-linux-ppc64le@0.14.34: resolution: { integrity: sha512-+qxb8M9FfM2CJaVU7GgYpJOHM1ngQOx+/VrtBjb4C8oVqaPcESCeg2anjl+HRZy8VpYc71q/iBYausPPbJ+Keg==, @@ -10787,7 +10844,7 @@ packages: dev: false optional: true - /esbuild-linux-ppc64le/0.14.51: + /esbuild-linux-ppc64le@0.14.51: resolution: { integrity: sha512-xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ==, @@ -10799,7 +10856,7 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.15.15: + /esbuild-linux-ppc64le@0.15.15: resolution: { integrity: sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==, @@ -10810,7 +10867,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-riscv64/0.14.34: + /esbuild-linux-riscv64@0.14.34: resolution: { integrity: sha512-Y717ltBdQ5j5sZIHdy1DV9kieo0wMip0dCmVSTceowCPYSn1Cg33Kd6981+F/3b9FDMzNWldZFOBRILViENZSA==, @@ -10822,7 +10879,7 @@ packages: dev: false optional: true - /esbuild-linux-riscv64/0.14.51: + /esbuild-linux-riscv64@0.14.51: resolution: { integrity: sha512-syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA==, @@ -10834,7 +10891,7 @@ packages: dev: true optional: true - /esbuild-linux-riscv64/0.15.15: + /esbuild-linux-riscv64@0.15.15: resolution: { integrity: sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==, @@ -10845,7 +10902,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-s390x/0.14.34: + /esbuild-linux-s390x@0.14.34: resolution: { integrity: sha512-bDDgYO4LhL4+zPs+WcBkXph+AQoPcQRTv18FzZS0WhjfH8TZx2QqlVPGhmhZ6WidrY+jKthUqO6UhGyIb4MpmA==, @@ -10857,7 +10914,7 @@ packages: dev: false optional: true - /esbuild-linux-s390x/0.14.51: + /esbuild-linux-s390x@0.14.51: resolution: { integrity: sha512-kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw==, @@ -10869,7 +10926,7 @@ packages: dev: true optional: true - /esbuild-linux-s390x/0.15.15: + /esbuild-linux-s390x@0.15.15: resolution: { integrity: sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==, @@ -10880,7 +10937,7 @@ packages: requiresBuild: true optional: true - /esbuild-netbsd-64/0.14.34: + /esbuild-netbsd-64@0.14.34: resolution: { integrity: sha512-cfaFGXdRt0+vHsjNPyF0POM4BVSHPSbhLPe8mppDc7GDDxjIl08mV1Zou14oDWMp/XZMjYN1kWYRSfftiD0vvQ==, @@ -10892,7 +10949,7 @@ packages: dev: false optional: true - /esbuild-netbsd-64/0.14.51: + /esbuild-netbsd-64@0.14.51: resolution: { integrity: sha512-ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A==, @@ -10904,7 +10961,7 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.15.15: + /esbuild-netbsd-64@0.15.15: resolution: { integrity: sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==, @@ -10915,7 +10972,7 @@ packages: requiresBuild: true optional: true - /esbuild-openbsd-64/0.14.34: + /esbuild-openbsd-64@0.14.34: resolution: { integrity: sha512-vmy9DxXVnRiI14s8GKuYBtess+EVcDALkbpTqd5jw4XITutIzyB7n4x0Tj5utAkKsgZJB22lLWGekr0ABnSLow==, @@ -10927,7 +10984,7 @@ packages: dev: false optional: true - /esbuild-openbsd-64/0.14.51: + /esbuild-openbsd-64@0.14.51: resolution: { integrity: sha512-7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA==, @@ -10939,7 +10996,7 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.15.15: + /esbuild-openbsd-64@0.15.15: resolution: { integrity: sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==, @@ -10950,7 +11007,7 @@ packages: requiresBuild: true optional: true - /esbuild-register/3.3.3_esbuild@0.14.34: + /esbuild-register@3.3.3(esbuild@0.14.34): resolution: { integrity: sha512-eFHOkutgIMJY5gc8LUp/7c+LLlDqzNi9T6AwCZ2WKKl3HmT+5ef3ZRyPPxDOynInML0fgaC50yszPKfPnjC0NQ==, @@ -10961,7 +11018,7 @@ packages: esbuild: 0.14.34 dev: false - /esbuild-sunos-64/0.14.34: + /esbuild-sunos-64@0.14.34: resolution: { integrity: sha512-eNPVatNET1F7tRMhii7goL/eptfxc0ALRjrj9SPFNqp0zmxrehBFD6BaP3R4LjMn6DbMO0jOAnTLFKr8NqcJAA==, @@ -10973,7 +11030,7 @@ packages: dev: false optional: true - /esbuild-sunos-64/0.14.51: + /esbuild-sunos-64@0.14.51: resolution: { integrity: sha512-HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA==, @@ -10985,7 +11042,7 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.15.15: + /esbuild-sunos-64@0.15.15: resolution: { integrity: sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==, @@ -10996,7 +11053,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-32/0.14.34: + /esbuild-windows-32@0.14.34: resolution: { integrity: sha512-EFhpXyHEcnqWYe2rAHFd8dRw8wkrd9U+9oqcyoEL84GbanAYjiiIjBZsnR8kl0sCQ5w6bLpk7vCEIA2VS32Vcg==, @@ -11008,7 +11065,7 @@ packages: dev: false optional: true - /esbuild-windows-32/0.14.51: + /esbuild-windows-32@0.14.51: resolution: { integrity: sha512-4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg==, @@ -11020,7 +11077,7 @@ packages: dev: true optional: true - /esbuild-windows-32/0.15.15: + /esbuild-windows-32@0.15.15: resolution: { integrity: sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==, @@ -11031,7 +11088,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-64/0.14.34: + /esbuild-windows-64@0.14.34: resolution: { integrity: sha512-a8fbl8Ky7PxNEjf1aJmtxdDZj32/hC7S1OcA2ckEpCJRTjiKslI9vAdPpSjrKIWhws4Galpaawy0nB7fjHYf5Q==, @@ -11043,7 +11100,7 @@ packages: dev: false optional: true - /esbuild-windows-64/0.14.51: + /esbuild-windows-64@0.14.51: resolution: { integrity: sha512-HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA==, @@ -11055,7 +11112,7 @@ packages: dev: true optional: true - /esbuild-windows-64/0.15.15: + /esbuild-windows-64@0.15.15: resolution: { integrity: sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==, @@ -11066,7 +11123,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-arm64/0.14.34: + /esbuild-windows-arm64@0.14.34: resolution: { integrity: sha512-EYvmKbSa2B3sPnpC28UEu9jBK5atGV4BaVRE7CYGUci2Hlz4AvtV/LML+TcDMT6gBgibnN2gcltWclab3UutMg==, @@ -11078,7 +11135,7 @@ packages: dev: false optional: true - /esbuild-windows-arm64/0.14.51: + /esbuild-windows-arm64@0.14.51: resolution: { integrity: sha512-JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g==, @@ -11090,7 +11147,7 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.15.15: + /esbuild-windows-arm64@0.15.15: resolution: { integrity: sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==, @@ -11101,7 +11158,7 @@ packages: requiresBuild: true optional: true - /esbuild/0.14.34: + /esbuild@0.14.34: resolution: { integrity: sha512-QIWdPT/gFF6hCaf4m7kP0cJ+JIuFkdHibI7vVFvu3eJS1HpVmYHWDulyN5WXwbRA0SX/7ZDaJ/1DH8SdY9xOJg==, @@ -11132,7 +11189,7 @@ packages: esbuild-windows-arm64: 0.14.34 dev: false - /esbuild/0.14.51: + /esbuild@0.14.51: resolution: { integrity: sha512-+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw==, @@ -11163,7 +11220,7 @@ packages: esbuild-windows-arm64: 0.14.51 dev: true - /esbuild/0.15.15: + /esbuild@0.15.15: resolution: { integrity: sha512-TEw/lwK4Zzld9x3FedV6jy8onOUHqcEX3ADFk4k+gzPUwrxn8nWV62tH0udo8jOtjFodlEfc4ypsqX3e+WWO6w==, @@ -11195,21 +11252,21 @@ packages: esbuild-windows-64: 0.15.15 esbuild-windows-arm64: 0.15.15 - /escalade/3.1.1: + /escalade@3.1.1: resolution: { integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, } engines: {node: ">=6"} - /escape-html/1.0.3: + /escape-html@1.0.3: resolution: { integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, } dev: true - /escape-string-applescript/1.0.0: + /escape-string-applescript@1.0.0: resolution: { integrity: sha512-4/hFwoYaC6TkpDn9A3pTC52zQPArFeXuIfhUtCGYdauTzXVP9H3BDr3oO/QzQehMpLDC7srvYgfwvImPFGfvBA==, @@ -11217,28 +11274,28 @@ packages: engines: {node: ">=0.10.0"} dev: true - /escape-string-regexp/1.0.5: + /escape-string-regexp@1.0.5: resolution: { integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, } engines: {node: ">=0.8.0"} - /escape-string-regexp/2.0.0: + /escape-string-regexp@2.0.0: resolution: { integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, } engines: {node: ">=8"} - /escape-string-regexp/4.0.0: + /escape-string-regexp@4.0.0: resolution: { integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, } engines: {node: ">=10"} - /escodegen/2.0.0: + /escodegen@2.0.0: resolution: { integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==, @@ -11253,7 +11310,7 @@ packages: optionalDependencies: source-map: 0.6.1 - /eslint-config-next/12.3.1_rmayb2veg2btbq6mbmnyivgasy: + /eslint-config-next@12.3.1(eslint@8.27.0)(typescript@4.8.4): resolution: { integrity: sha512-EN/xwKPU6jz1G0Qi6Bd/BqMnHLyRAL0VsaQaWA7F3KkjAgZHi4f1uL1JKGWNxdQpHTW/sdGONBd0bzxUka/DJg==, @@ -11267,48 +11324,20 @@ packages: dependencies: "@next/eslint-plugin-next": 12.3.1 "@rushstack/eslint-patch": 1.1.3 - "@typescript-eslint/parser": 5.43.0_rmayb2veg2btbq6mbmnyivgasy - eslint: 8.27.0 + "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) + eslint: 8.27.0(supports-color@8.1.1) eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.7.1_dcpv4nbdr5ks2h5677xdltrk6e - eslint-plugin-import: 2.26.0_ttnp75sbivpcvanbhjbkcsh3ly - eslint-plugin-jsx-a11y: 6.5.1_eslint@8.27.0 - eslint-plugin-react: 7.31.8_eslint@8.27.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.27.0 + eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) + eslint-plugin-jsx-a11y: 6.5.1(eslint@8.27.0) + eslint-plugin-react: 7.31.8(eslint@8.27.0) + eslint-plugin-react-hooks: 4.5.0(eslint@8.27.0) typescript: 4.8.4 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color - dev: true - - /eslint-config-next/12.3.1_typescript@4.8.4: - resolution: - { - integrity: sha512-EN/xwKPU6jz1G0Qi6Bd/BqMnHLyRAL0VsaQaWA7F3KkjAgZHi4f1uL1JKGWNxdQpHTW/sdGONBd0bzxUka/DJg==, - } - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 - typescript: ">=3.3.1" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@next/eslint-plugin-next": 12.3.1 - "@rushstack/eslint-patch": 1.1.3 - "@typescript-eslint/parser": 5.43.0_typescript@4.8.4 - eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.7.1_fkfqfehjtk7sk2efaqbgxsuasa - eslint-plugin-import: 2.26.0_thmqqzpxv5mluo3coertzplf2y - eslint-plugin-jsx-a11y: 6.5.1 - eslint-plugin-react: 7.31.8 - eslint-plugin-react-hooks: 4.5.0 - typescript: 4.8.4 - transitivePeerDependencies: - - eslint-import-resolver-webpack - - supports-color - dev: false - /eslint-config-next/13.0.0_wyqvi574yv7oiwfeinomdzmc3m: + /eslint-config-next@13.0.0(eslint@8.26.0)(typescript@4.8.4): resolution: { integrity: sha512-y2nqWS2tycWySdVhb+rhp6CuDmDazGySqkzzQZf3UTyfHyC7og1m5m/AtMFwCo5mtvDqvw1BENin52kV9733lg==, @@ -11322,24 +11351,24 @@ packages: dependencies: "@next/eslint-plugin-next": 13.0.0 "@rushstack/eslint-patch": 1.1.3 - "@typescript-eslint/parser": 5.43.0_wyqvi574yv7oiwfeinomdzmc3m + "@typescript-eslint/parser": 5.43.0(eslint@8.26.0)(typescript@4.8.4) eslint: 8.26.0 eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.7.1_mynvxvmq5qtyojffiqgev4x7mm - eslint-plugin-import: 2.26.0_lcezp3og7ox4rmwnvswasffmgu - eslint-plugin-jsx-a11y: 6.5.1_eslint@8.26.0 - eslint-plugin-react: 7.31.8_eslint@8.26.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.26.0 + eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0)(eslint@8.26.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) + eslint-plugin-jsx-a11y: 6.5.1(eslint@8.26.0) + eslint-plugin-react: 7.31.8(eslint@8.26.0) + eslint-plugin-react-hooks: 4.5.0(eslint@8.26.0) typescript: 4.8.4 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color dev: true - /eslint-config-next/13.3.4_rmayb2veg2btbq6mbmnyivgasy: + /eslint-config-next@13.4.3(eslint@8.27.0)(typescript@4.8.4): resolution: { - integrity: sha512-TknEcP+EdTqLvJ2zMY1KnWqcx8ZHl1C2Tjjbq3qmtWcHRU5oxe1PAsz3vrKG3NOzonSaPcB2SpCSfYqcgj6nfA==, + integrity: sha512-1lXwdFi29fKxzeugof/TUE7lpHyJQt5+U4LaUHyvQfHjvsWO77vFNicJv5sX6k0VDVSbnfz0lw+avxI+CinbMg==, } peerDependencies: eslint: ^7.23.0 || ^8.0.0 @@ -11348,33 +11377,23 @@ packages: typescript: optional: true dependencies: - "@next/eslint-plugin-next": 13.3.4 + "@next/eslint-plugin-next": 13.4.3 "@rushstack/eslint-patch": 1.1.3 - "@typescript-eslint/parser": 5.43.0_rmayb2veg2btbq6mbmnyivgasy - eslint: 8.27.0 + "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) + eslint: 8.27.0(supports-color@8.1.1) eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 3.5.2_dcpv4nbdr5ks2h5677xdltrk6e - eslint-plugin-import: 2.26.0_bbzxof3vtngyannf3l4jlcflvy - eslint-plugin-jsx-a11y: 6.5.1_eslint@8.27.0 - eslint-plugin-react: 7.31.8_eslint@8.27.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.27.0 + eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.26.0)(eslint@8.27.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) + eslint-plugin-jsx-a11y: 6.5.1(eslint@8.27.0) + eslint-plugin-react: 7.31.8(eslint@8.27.0) + eslint-plugin-react-hooks: 4.5.0(eslint@8.27.0) typescript: 4.8.4 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color dev: true - /eslint-config-prettier/8.5.0: - resolution: - { - integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==, - } - hasBin: true - peerDependencies: - eslint: ">=7.0.0" - dev: false - - /eslint-config-prettier/8.5.0_eslint@8.27.0: + /eslint-config-prettier@8.5.0(eslint@8.27.0): resolution: { integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==, @@ -11383,21 +11402,20 @@ packages: peerDependencies: eslint: ">=7.0.0" dependencies: - eslint: 8.27.0 - dev: true + eslint: 8.27.0(supports-color@8.1.1) - /eslint-import-resolver-node/0.3.6: + /eslint-import-resolver-node@0.3.6: resolution: { integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==, } dependencies: - debug: 3.2.7 + debug: 3.2.7(supports-color@8.1.1) resolve: 1.22.1 transitivePeerDependencies: - supports-color - /eslint-import-resolver-typescript/2.7.1_dcpv4nbdr5ks2h5677xdltrk6e: + /eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0)(eslint@8.26.0): resolution: { integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==, @@ -11407,9 +11425,9 @@ packages: eslint: "*" eslint-plugin-import: "*" dependencies: - debug: 4.3.4 - eslint: 8.27.0 - eslint-plugin-import: 2.26.0_ttnp75sbivpcvanbhjbkcsh3ly + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.26.0 + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) glob: 7.2.0 is-glob: 4.0.3 resolve: 1.22.1 @@ -11418,7 +11436,7 @@ packages: - supports-color dev: true - /eslint-import-resolver-typescript/2.7.1_fkfqfehjtk7sk2efaqbgxsuasa: + /eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0): resolution: { integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==, @@ -11428,29 +11446,9 @@ packages: eslint: "*" eslint-plugin-import: "*" dependencies: - debug: 4.3.4 - eslint-plugin-import: 2.26.0_thmqqzpxv5mluo3coertzplf2y - glob: 7.2.0 - is-glob: 4.0.3 - resolve: 1.22.1 - tsconfig-paths: 3.14.1 - transitivePeerDependencies: - - supports-color - dev: false - - /eslint-import-resolver-typescript/2.7.1_mynvxvmq5qtyojffiqgev4x7mm: - resolution: - { - integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==, - } - engines: {node: ">=4"} - peerDependencies: - eslint: "*" - eslint-plugin-import: "*" - dependencies: - debug: 4.3.4 - eslint: 8.26.0 - eslint-plugin-import: 2.26.0_lcezp3og7ox4rmwnvswasffmgu + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0(supports-color@8.1.1) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) glob: 7.2.0 is-glob: 4.0.3 resolve: 1.22.1 @@ -11458,7 +11456,7 @@ packages: transitivePeerDependencies: - supports-color - /eslint-import-resolver-typescript/3.5.2_dcpv4nbdr5ks2h5677xdltrk6e: + /eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.26.0)(eslint@8.27.0): resolution: { integrity: sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==, @@ -11468,10 +11466,10 @@ packages: eslint: "*" eslint-plugin-import: "*" dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) enhanced-resolve: 5.11.0 - eslint: 8.27.0 - eslint-plugin-import: 2.26.0_bbzxof3vtngyannf3l4jlcflvy + eslint: 8.27.0(supports-color@8.1.1) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) get-tsconfig: 4.2.0 globby: 13.1.2 is-core-module: 2.11.0 @@ -11479,39 +11477,8 @@ packages: synckit: 0.8.4 transitivePeerDependencies: - supports-color - dev: true - - /eslint-module-utils/2.7.3_clahhyedowhj7lywpxe6ohktxi: - resolution: - { - integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==, - } - engines: {node: ">=4"} - peerDependencies: - "@typescript-eslint/parser": "*" - eslint-import-resolver-node: "*" - eslint-import-resolver-typescript: "*" - eslint-import-resolver-webpack: "*" - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true - dependencies: - "@typescript-eslint/parser": 5.43.0_rmayb2veg2btbq6mbmnyivgasy - debug: 3.2.7 - eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 3.5.2_dcpv4nbdr5ks2h5677xdltrk6e - find-up: 2.1.0 - transitivePeerDependencies: - - supports-color - dev: true - /eslint-module-utils/2.7.3_rmba4edv35vyqs75pdxciqmxgu: + /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2): resolution: { integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==, @@ -11532,115 +11499,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - "@typescript-eslint/parser": 5.43.0_wyqvi574yv7oiwfeinomdzmc3m - debug: 3.2.7 + "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) + debug: 3.2.7(supports-color@8.1.1) eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.7.1_mynvxvmq5qtyojffiqgev4x7mm + eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.26.0)(eslint@8.27.0) find-up: 2.1.0 transitivePeerDependencies: - supports-color - /eslint-plugin-import/2.26.0_bbzxof3vtngyannf3l4jlcflvy: - resolution: - { - integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, - } - engines: {node: ">=4"} - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true - dependencies: - "@typescript-eslint/parser": 5.43.0_rmayb2veg2btbq6mbmnyivgasy - array-includes: 3.1.5 - array.prototype.flat: 1.3.0 - debug: 2.6.9 - doctrine: 2.1.0 - eslint: 8.27.0 - eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_clahhyedowhj7lywpxe6ohktxi - has: 1.0.3 - is-core-module: 2.11.0 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.values: 1.1.5 - resolve: 1.22.1 - tsconfig-paths: 3.14.1 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - dev: true - - /eslint-plugin-import/2.26.0_lcezp3og7ox4rmwnvswasffmgu: - resolution: - { - integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, - } - engines: {node: ">=4"} - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true - dependencies: - "@typescript-eslint/parser": 5.43.0_wyqvi574yv7oiwfeinomdzmc3m - array-includes: 3.1.5 - array.prototype.flat: 1.3.0 - debug: 2.6.9 - doctrine: 2.1.0 - eslint: 8.26.0 - eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_rmba4edv35vyqs75pdxciqmxgu - has: 1.0.3 - is-core-module: 2.11.0 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.values: 1.1.5 - resolve: 1.22.1 - tsconfig-paths: 3.14.1 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - - /eslint-plugin-import/2.26.0_thmqqzpxv5mluo3coertzplf2y: - resolution: - { - integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, - } - engines: {node: ">=4"} - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true - dependencies: - "@typescript-eslint/parser": 5.43.0_typescript@4.8.4 - array-includes: 3.1.5 - array.prototype.flat: 1.3.0 - debug: 2.6.9 - doctrine: 2.1.0 - eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_rmba4edv35vyqs75pdxciqmxgu - has: 1.0.3 - is-core-module: 2.11.0 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.values: 1.1.5 - resolve: 1.22.1 - tsconfig-paths: 3.14.1 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - dev: false - - /eslint-plugin-import/2.26.0_ttnp75sbivpcvanbhjbkcsh3ly: + /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0): resolution: { integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, @@ -11653,14 +11520,14 @@ packages: "@typescript-eslint/parser": optional: true dependencies: - "@typescript-eslint/parser": 5.43.0_rmayb2veg2btbq6mbmnyivgasy + "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) array-includes: 3.1.5 array.prototype.flat: 1.3.0 - debug: 2.6.9 + debug: 2.6.9(supports-color@8.1.1) doctrine: 2.1.0 - eslint: 8.27.0 + eslint: 8.27.0(supports-color@8.1.1) eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_rmba4edv35vyqs75pdxciqmxgu + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2) has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -11672,32 +11539,8 @@ packages: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - dev: true - - /eslint-plugin-jsx-a11y/6.5.1: - resolution: - { - integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==, - } - engines: {node: ">=4.0"} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - "@babel/runtime": 7.18.3 - aria-query: 4.2.2 - array-includes: 3.1.5 - ast-types-flow: 0.0.7 - axe-core: 4.4.2 - axobject-query: 2.2.0 - damerau-levenshtein: 1.0.8 - emoji-regex: 9.2.2 - has: 1.0.3 - jsx-ast-utils: 3.3.0 - language-tags: 1.0.5 - minimatch: 3.1.2 - dev: false - /eslint-plugin-jsx-a11y/6.5.1_eslint@8.26.0: + /eslint-plugin-jsx-a11y@6.5.1(eslint@8.26.0): resolution: { integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==, @@ -11721,7 +11564,7 @@ packages: minimatch: 3.1.2 dev: true - /eslint-plugin-jsx-a11y/6.5.1_eslint@8.27.0: + /eslint-plugin-jsx-a11y@6.5.1(eslint@8.27.0): resolution: { integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==, @@ -11738,24 +11581,13 @@ packages: axobject-query: 2.2.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.27.0 + eslint: 8.27.0(supports-color@8.1.1) has: 1.0.3 jsx-ast-utils: 3.3.0 language-tags: 1.0.5 minimatch: 3.1.2 - dev: true - - /eslint-plugin-react-hooks/4.5.0: - resolution: - { - integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==, - } - engines: {node: ">=10"} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - dev: false - /eslint-plugin-react-hooks/4.5.0_eslint@8.26.0: + /eslint-plugin-react-hooks@4.5.0(eslint@8.26.0): resolution: { integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==, @@ -11767,44 +11599,18 @@ packages: eslint: 8.26.0 dev: true - /eslint-plugin-react-hooks/4.5.0_eslint@8.27.0: + /eslint-plugin-react-hooks@4.5.0(eslint@8.27.0): resolution: { integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==, } 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: - eslint: 8.27.0 - dev: true - - /eslint-plugin-react/7.31.8: - resolution: - { - integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==, - } - engines: {node: ">=4"} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - array-includes: 3.1.5 - array.prototype.flatmap: 1.3.0 - doctrine: 2.1.0 - estraverse: 5.3.0 - jsx-ast-utils: 3.3.0 - minimatch: 3.1.2 - object.entries: 1.1.5 - object.fromentries: 2.0.5 - object.hasown: 1.1.1 - object.values: 1.1.5 - prop-types: 15.8.1 - resolve: 2.0.0-next.3 - semver: 6.3.0 - string.prototype.matchall: 4.0.7 - dev: false + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 8.27.0(supports-color@8.1.1) - /eslint-plugin-react/7.31.8_eslint@8.26.0: + /eslint-plugin-react@7.31.8(eslint@8.26.0): resolution: { integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==, @@ -11830,7 +11636,7 @@ packages: string.prototype.matchall: 4.0.7 dev: true - /eslint-plugin-react/7.31.8_eslint@8.27.0: + /eslint-plugin-react@7.31.8(eslint@8.27.0): resolution: { integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==, @@ -11842,7 +11648,7 @@ packages: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.27.0 + eslint: 8.27.0(supports-color@8.1.1) estraverse: 5.3.0 jsx-ast-utils: 3.3.0 minimatch: 3.1.2 @@ -11854,9 +11660,8 @@ packages: resolve: 2.0.0-next.3 semver: 6.3.0 string.prototype.matchall: 4.0.7 - dev: true - /eslint-plugin-testing-library/5.0.1_rmayb2veg2btbq6mbmnyivgasy: + /eslint-plugin-testing-library@5.0.1(eslint@8.27.0)(typescript@4.8.4): resolution: { integrity: sha512-8ZV4HbbacvOwu+adNnGpYd8E64NRcil2a11aFAbc/TZDUB/xxK2c8Z+LoeoHUbxNBGbTUdpAE4YUugxK85pcwQ==, @@ -11865,14 +11670,14 @@ packages: peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - "@typescript-eslint/experimental-utils": 5.28.0_rmayb2veg2btbq6mbmnyivgasy - eslint: 8.27.0 + "@typescript-eslint/experimental-utils": 5.28.0(eslint@8.27.0)(typescript@4.8.4) + eslint: 8.27.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-scope/5.1.1: + /eslint-scope@5.1.1: resolution: { integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, @@ -11882,7 +11687,7 @@ packages: esrecurse: 4.3.0 estraverse: 4.3.0 - /eslint-scope/7.1.1: + /eslint-scope@7.1.1: resolution: { integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==, @@ -11892,19 +11697,7 @@ packages: esrecurse: 4.3.0 estraverse: 5.3.0 - /eslint-utils/3.0.0: - resolution: - { - integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, - } - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: ">=5" - dependencies: - eslint-visitor-keys: 2.1.0 - dev: false - - /eslint-utils/3.0.0_eslint@8.26.0: + /eslint-utils@3.0.0(eslint@8.26.0): resolution: { integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, @@ -11915,8 +11708,9 @@ packages: dependencies: eslint: 8.26.0 eslint-visitor-keys: 2.1.0 + dev: true - /eslint-utils/3.0.0_eslint@8.27.0: + /eslint-utils@3.0.0(eslint@8.27.0): resolution: { integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, @@ -11925,24 +11719,24 @@ packages: peerDependencies: eslint: ">=5" dependencies: - eslint: 8.27.0 + eslint: 8.27.0(supports-color@8.1.1) eslint-visitor-keys: 2.1.0 - /eslint-visitor-keys/2.1.0: + /eslint-visitor-keys@2.1.0: resolution: { integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, } engines: {node: ">=10"} - /eslint-visitor-keys/3.3.0: + /eslint-visitor-keys@3.3.0: resolution: { integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /eslint/8.26.0: + /eslint@8.26.0: resolution: { integrity: sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==, @@ -11950,68 +11744,18 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - "@eslint/eslintrc": 1.3.3 - "@humanwhocodes/config-array": 0.11.7 - "@humanwhocodes/module-importer": 1.0.1 - "@nodelib/fs.walk": 1.2.8 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4 - doctrine: 3.0.0 - escape-string-regexp: 4.0.0 - eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.26.0 - eslint-visitor-keys: 3.3.0 - espree: 9.4.1 - esquery: 1.4.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - find-up: 5.0.0 - glob-parent: 6.0.2 - globals: 13.15.0 - grapheme-splitter: 1.0.4 - ignore: 5.2.0 - import-fresh: 3.3.0 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-sdsl: 4.1.5 - js-yaml: 4.1.0 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.1 - regexpp: 3.2.0 - strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 - text-table: 0.2.0 - transitivePeerDependencies: - - supports-color - - /eslint/8.27.0: - resolution: - { - integrity: sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true - dependencies: - "@eslint/eslintrc": 1.3.3 - "@humanwhocodes/config-array": 0.11.7 + "@eslint/eslintrc": 1.3.3(supports-color@8.1.1) + "@humanwhocodes/config-array": 0.11.7(supports-color@8.1.1) "@humanwhocodes/module-importer": 1.0.1 "@nodelib/fs.walk": 1.2.8 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.3 + debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.27.0 + eslint-utils: 3.0.0(eslint@8.26.0) eslint-visitor-keys: 3.3.0 espree: 9.4.1 esquery: 1.4.0 @@ -12041,8 +11785,9 @@ packages: text-table: 0.2.0 transitivePeerDependencies: - supports-color + dev: true - /eslint/8.27.0_supports-color@8.1.1: + /eslint@8.27.0(supports-color@8.1.1): resolution: { integrity: sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==, @@ -12050,18 +11795,18 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - "@eslint/eslintrc": 1.3.3_supports-color@8.1.1 - "@humanwhocodes/config-array": 0.11.7_supports-color@8.1.1 + "@eslint/eslintrc": 1.3.3(supports-color@8.1.1) + "@humanwhocodes/config-array": 0.11.7(supports-color@8.1.1) "@humanwhocodes/module-importer": 1.0.1 "@nodelib/fs.walk": 1.2.8 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.3_supports-color@8.1.1 + debug: 4.3.3(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.27.0 + eslint-utils: 3.0.0(eslint@8.27.0) eslint-visitor-keys: 3.3.0 espree: 9.4.1 esquery: 1.4.0 @@ -12091,9 +11836,8 @@ packages: text-table: 0.2.0 transitivePeerDependencies: - supports-color - dev: true - /espree/9.4.1: + /espree@9.4.1: resolution: { integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==, @@ -12101,10 +11845,10 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.8.1 - acorn-jsx: 5.3.2_acorn@8.8.1 + acorn-jsx: 5.3.2(acorn@8.8.1) eslint-visitor-keys: 3.3.0 - /esprima/4.0.1: + /esprima@4.0.1: resolution: { integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, @@ -12112,7 +11856,7 @@ packages: engines: {node: ">=4"} hasBin: true - /esquery/1.4.0: + /esquery@1.4.0: resolution: { integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==, @@ -12121,7 +11865,7 @@ packages: dependencies: estraverse: 5.3.0 - /esrecurse/4.3.0: + /esrecurse@4.3.0: resolution: { integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, @@ -12130,42 +11874,42 @@ packages: dependencies: estraverse: 5.3.0 - /estraverse/4.3.0: + /estraverse@4.3.0: resolution: { integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, } engines: {node: ">=4.0"} - /estraverse/5.3.0: + /estraverse@5.3.0: resolution: { integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, } engines: {node: ">=4.0"} - /estree-walker/1.0.1: + /estree-walker@1.0.1: resolution: { integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==, } dev: true - /estree-walker/2.0.2: + /estree-walker@2.0.2: resolution: { integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, } dev: true - /esutils/2.0.3: + /esutils@2.0.3: resolution: { integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, } engines: {node: ">=0.10.0"} - /etag/1.8.1: + /etag@1.8.1: resolution: { integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, @@ -12173,7 +11917,7 @@ packages: engines: {node: ">= 0.6"} dev: true - /exec-sh/0.2.2: + /exec-sh@0.2.2: resolution: { integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==, @@ -12182,7 +11926,7 @@ packages: merge: 1.2.1 dev: true - /execa/0.10.0: + /execa@0.10.0: resolution: { integrity: sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==, @@ -12198,7 +11942,7 @@ packages: strip-eof: 1.0.0 dev: true - /execa/1.0.0: + /execa@1.0.0: resolution: { integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==, @@ -12214,7 +11958,7 @@ packages: strip-eof: 1.0.0 dev: false - /execa/4.1.0: + /execa@4.1.0: resolution: { integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==, @@ -12231,7 +11975,7 @@ packages: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - /execa/5.1.1: + /execa@5.1.1: resolution: { integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, @@ -12248,7 +11992,7 @@ packages: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - /execa/6.1.0: + /execa@6.1.0: resolution: { integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==, @@ -12265,60 +12009,55 @@ packages: signal-exit: 3.0.7 strip-final-newline: 3.0.0 - /exit/0.1.2: + /exit@0.1.2: resolution: { integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, } engines: {node: ">= 0.8.0"} - /expand-brackets/2.1.4: + /expand-brackets@2.1.4(supports-color@8.1.1): resolution: { integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==, } engines: {node: ">=0.10.0"} dependencies: - debug: 2.6.9 + debug: 2.6.9(supports-color@8.1.1) define-property: 0.2.5 extend-shallow: 2.0.1 posix-character-classes: 0.1.1 regex-not: 1.0.2 - snapdragon: 0.8.2 + snapdragon: 0.8.2(supports-color@8.1.1) to-regex: 3.0.2 transitivePeerDependencies: - supports-color dev: false - /expand-brackets/2.1.4_supports-color@8.1.1: + /expand-tilde@2.0.2: resolution: { - integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==, + integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==, } engines: {node: ">=0.10.0"} dependencies: - debug: 2.6.9_supports-color@8.1.1 - define-property: 0.2.5 - extend-shallow: 2.0.1 - posix-character-classes: 0.1.1 - regex-not: 1.0.2 - snapdragon: 0.8.2_supports-color@8.1.1 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color + homedir-polyfill: 1.0.3 dev: false - /expand-tilde/2.0.2: + /expect@27.5.1: resolution: { - integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==, + integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==, } - engines: {node: ">=0.10.0"} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - homedir-polyfill: 1.0.3 - dev: false + "@jest/types": 27.5.1 + jest-get-type: 27.5.1 + jest-matcher-utils: 27.5.1 + jest-message-util: 27.5.1 + dev: true - /expect/29.3.0: + /expect@29.3.0: resolution: { integrity: sha512-bms139btnQNZh4uxCPmzbWz46YOjtEpYIZ847OfY9GCeSBEfzedHWH0CkdR20Sy+XBs8/FI2lFJPZiuH0NGv+w==, @@ -12331,48 +12070,7 @@ packages: jest-message-util: 29.2.1 jest-util: 29.2.1 - /express/4.17.3: - resolution: - { - integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==, - } - engines: {node: ">= 0.10.0"} - dependencies: - accepts: 1.3.8 - array-flatten: 1.1.1 - body-parser: 1.19.2 - content-disposition: 0.5.4 - content-type: 1.0.4 - cookie: 0.4.2 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 1.1.2 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.1.2 - fresh: 0.5.2 - merge-descriptors: 1.0.1 - methods: 1.1.2 - on-finished: 2.3.0 - parseurl: 1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: 2.0.7 - qs: 6.9.7 - range-parser: 1.2.1 - safe-buffer: 5.2.1 - send: 0.17.2 - serve-static: 1.14.2 - setprototypeof: 1.2.0 - statuses: 1.5.0 - type-is: 1.6.18 - utils-merge: 1.0.1 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color - dev: true - - /express/4.17.3_supports-color@8.1.1: + /express@4.17.3(supports-color@8.1.1): resolution: { integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==, @@ -12381,17 +12079,17 @@ packages: dependencies: accepts: 1.3.8 array-flatten: 1.1.1 - body-parser: 1.19.2_supports-color@8.1.1 + body-parser: 1.19.2(supports-color@8.1.1) content-disposition: 0.5.4 content-type: 1.0.4 cookie: 0.4.2 cookie-signature: 1.0.6 - debug: 2.6.9_supports-color@8.1.1 + debug: 2.6.9(supports-color@8.1.1) depd: 1.1.2 encodeurl: 1.0.2 escape-html: 1.0.3 etag: 1.8.1 - finalhandler: 1.1.2_supports-color@8.1.1 + finalhandler: 1.1.2(supports-color@8.1.1) fresh: 0.5.2 merge-descriptors: 1.0.1 methods: 1.1.2 @@ -12402,8 +12100,8 @@ packages: qs: 6.9.7 range-parser: 1.2.1 safe-buffer: 5.2.1 - send: 0.17.2_supports-color@8.1.1 - serve-static: 1.14.2_supports-color@8.1.1 + send: 0.17.2(supports-color@8.1.1) + serve-static: 1.14.2(supports-color@8.1.1) setprototypeof: 1.2.0 statuses: 1.5.0 type-is: 1.6.18 @@ -12413,7 +12111,7 @@ packages: - supports-color dev: true - /extend-shallow/2.0.1: + /extend-shallow@2.0.1: resolution: { integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==, @@ -12423,7 +12121,7 @@ packages: is-extendable: 0.1.1 dev: false - /extend-shallow/3.0.2: + /extend-shallow@3.0.2: resolution: { integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==, @@ -12434,14 +12132,14 @@ packages: is-extendable: 1.0.1 dev: false - /extendable-error/0.1.7: + /extendable-error@0.1.7: resolution: { integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, } dev: false - /external-editor/3.1.0: + /external-editor@3.1.0: resolution: { integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, @@ -12453,26 +12151,7 @@ packages: tmp: 0.0.33 dev: false - /extglob/2.0.4: - resolution: - { - integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==, - } - engines: {node: ">=0.10.0"} - dependencies: - array-unique: 0.3.2 - define-property: 1.0.0 - expand-brackets: 2.1.4 - extend-shallow: 2.0.1 - fragment-cache: 0.2.1 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - - /extglob/2.0.4_supports-color@8.1.1: + /extglob@2.0.4(supports-color@8.1.1): resolution: { integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==, @@ -12481,17 +12160,17 @@ packages: dependencies: array-unique: 0.3.2 define-property: 1.0.0 - expand-brackets: 2.1.4_supports-color@8.1.1 + expand-brackets: 2.1.4(supports-color@8.1.1) extend-shallow: 2.0.1 fragment-cache: 0.2.1 regex-not: 1.0.2 - snapdragon: 0.8.2_supports-color@8.1.1 + snapdragon: 0.8.2(supports-color@8.1.1) to-regex: 3.0.2 transitivePeerDependencies: - supports-color dev: false - /extract-zip/2.0.1: + /extract-zip@2.0.1: resolution: { integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==, @@ -12499,7 +12178,7 @@ packages: engines: {node: ">= 10.17.0"} hasBin: true dependencies: - debug: 4.3.3 + debug: 4.3.3(supports-color@8.1.1) get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -12508,13 +12187,13 @@ packages: - supports-color dev: true - /fast-deep-equal/3.1.3: + /fast-deep-equal@3.1.3: resolution: { integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, } - /fast-glob/2.2.7: + /fast-glob@2.2.7: resolution: { integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==, @@ -12526,12 +12205,12 @@ packages: glob-parent: 3.1.0 is-glob: 4.0.3 merge2: 1.4.1 - micromatch: 3.1.10 + micromatch: 3.1.10(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false - /fast-glob/3.2.11: + /fast-glob@3.2.11: resolution: { integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==, @@ -12544,7 +12223,7 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-glob/3.2.12: + /fast-glob@3.2.12: resolution: { integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==, @@ -12557,19 +12236,19 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-json-stable-stringify/2.1.0: + /fast-json-stable-stringify@2.1.0: resolution: { integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, } - /fast-levenshtein/2.0.6: + /fast-levenshtein@2.0.6: resolution: { integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, } - /fastq/1.13.0: + /fastq@1.13.0: resolution: { integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==, @@ -12577,7 +12256,7 @@ packages: dependencies: reusify: 1.0.4 - /fb-watchman/2.0.1: + /fb-watchman@2.0.1: resolution: { integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==, @@ -12585,7 +12264,7 @@ packages: dependencies: bser: 2.1.1 - /fd-slicer/1.1.0: + /fd-slicer@1.1.0: resolution: { integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==, @@ -12594,7 +12273,7 @@ packages: pend: 1.2.0 dev: true - /fetch-blob/3.1.5: + /fetch-blob@3.1.5: resolution: { integrity: sha512-N64ZpKqoLejlrwkIAnb9iLSA3Vx/kjgzpcDhygcqJ2KKjky8nCgUQ+dzXtbrLaWZGZNmNfQTsiQ0weZ1svglHg==, @@ -12604,7 +12283,7 @@ packages: node-domexception: 1.0.0 web-streams-polyfill: 3.2.1 - /file-entry-cache/6.0.1: + /file-entry-cache@6.0.1: resolution: { integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, @@ -12613,7 +12292,7 @@ packages: dependencies: flat-cache: 3.0.4 - /filelist/1.0.4: + /filelist@1.0.4: resolution: { integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, @@ -12622,7 +12301,7 @@ packages: minimatch: 5.1.0 dev: false - /fill-range/4.0.0: + /fill-range@4.0.0: resolution: { integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==, @@ -12635,7 +12314,7 @@ packages: to-regex-range: 2.1.1 dev: false - /fill-range/7.0.1: + /fill-range@7.0.1: resolution: { integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, @@ -12644,32 +12323,14 @@ packages: dependencies: to-regex-range: 5.0.1 - /finalhandler/1.1.2: - resolution: - { - integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==, - } - engines: {node: ">= 0.8"} - dependencies: - debug: 2.6.9 - encodeurl: 1.0.2 - escape-html: 1.0.3 - on-finished: 2.3.0 - parseurl: 1.3.3 - statuses: 1.5.0 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /finalhandler/1.1.2_supports-color@8.1.1: + /finalhandler@1.1.2(supports-color@8.1.1): resolution: { integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==, } engines: {node: ">= 0.8"} dependencies: - debug: 2.6.9_supports-color@8.1.1 + debug: 2.6.9(supports-color@8.1.1) encodeurl: 1.0.2 escape-html: 1.0.3 on-finished: 2.3.0 @@ -12680,7 +12341,7 @@ packages: - supports-color dev: true - /find-cache-dir/2.1.0: + /find-cache-dir@2.1.0: resolution: { integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==, @@ -12692,14 +12353,14 @@ packages: pkg-dir: 3.0.0 dev: false - /find-index/0.1.1: + /find-index@0.1.1: resolution: { integrity: sha512-uJ5vWrfBKMcE6y2Z8834dwEZj9mNGxYa3t3I53OwFeuZ8D9oc2E5zcsrkuhX6h4iYrjhiv0T3szQmxlAV9uxDg==, } dev: true - /find-up/2.1.0: + /find-up@2.1.0: resolution: { integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==, @@ -12708,7 +12369,7 @@ packages: dependencies: locate-path: 2.0.0 - /find-up/3.0.0: + /find-up@3.0.0: resolution: { integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, @@ -12718,7 +12379,7 @@ packages: locate-path: 3.0.0 dev: false - /find-up/4.1.0: + /find-up@4.1.0: resolution: { integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, @@ -12728,7 +12389,7 @@ packages: locate-path: 5.0.0 path-exists: 4.0.0 - /find-up/5.0.0: + /find-up@5.0.0: resolution: { integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, @@ -12738,7 +12399,7 @@ packages: locate-path: 6.0.0 path-exists: 4.0.0 - /find-yarn-workspace-root2/1.2.16: + /find-yarn-workspace-root2@1.2.16: resolution: { integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==, @@ -12748,7 +12409,7 @@ packages: pkg-dir: 4.2.0 dev: false - /findup-sync/5.0.0: + /findup-sync@5.0.0: resolution: { integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==, @@ -12761,7 +12422,7 @@ packages: resolve-dir: 1.0.1 dev: false - /first-chunk-stream/2.0.0: + /first-chunk-stream@2.0.0: resolution: { integrity: sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==, @@ -12771,7 +12432,7 @@ packages: readable-stream: 2.3.7 dev: false - /flat-cache/3.0.4: + /flat-cache@3.0.4: resolution: { integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, @@ -12781,13 +12442,13 @@ packages: flatted: 3.2.7 rimraf: 3.0.2 - /flatted/3.2.7: + /flatted@3.2.7: resolution: { integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, } - /flow-parser/0.179.0: + /flow-parser@0.179.0: resolution: { integrity: sha512-M4dEgnvsGFa1lUTK05RFW+cwle8tkTHioFm6gGWdeGpDJjjhmvyaN8vLIqb8sAHI05TQxARsnUC3U2chzQP1Dw==, @@ -12795,7 +12456,7 @@ packages: engines: {node: ">=0.4.0"} dev: false - /follow-redirects/1.15.1: + /follow-redirects@1.15.1: resolution: { integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==, @@ -12807,7 +12468,7 @@ packages: debug: optional: true - /for-in/1.0.2: + /for-in@1.0.2: resolution: { integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==, @@ -12815,7 +12476,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /form-data/3.0.1: + /form-data@3.0.1: resolution: { integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, @@ -12827,7 +12488,7 @@ packages: mime-types: 2.1.35 dev: true - /form-data/4.0.0: + /form-data@4.0.0: resolution: { integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, @@ -12838,7 +12499,7 @@ packages: combined-stream: 1.0.8 mime-types: 2.1.35 - /formdata-polyfill/4.0.10: + /formdata-polyfill@4.0.10: resolution: { integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==, @@ -12847,7 +12508,7 @@ packages: dependencies: fetch-blob: 3.1.5 - /forwarded/0.2.0: + /forwarded@0.2.0: resolution: { integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==, @@ -12855,7 +12516,7 @@ packages: engines: {node: ">= 0.6"} dev: true - /fragment-cache/0.2.1: + /fragment-cache@0.2.1: resolution: { integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==, @@ -12865,12 +12526,12 @@ packages: map-cache: 0.2.2 dev: false - /fresh/0.5.2: + /fresh@0.5.2: resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} engines: {node: ">= 0.6"} dev: true - /fs-extra/10.0.1: + /fs-extra@10.0.1: resolution: { integrity: sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==, @@ -12881,7 +12542,7 @@ packages: jsonfile: 6.1.0 universalify: 2.0.0 - /fs-extra/7.0.1: + /fs-extra@7.0.1: resolution: { integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, @@ -12893,7 +12554,7 @@ packages: universalify: 0.1.2 dev: false - /fs-extra/8.1.0: + /fs-extra@8.1.0: resolution: { integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, @@ -12905,7 +12566,7 @@ packages: universalify: 0.1.2 dev: false - /fs-extra/9.1.0: + /fs-extra@9.1.0: resolution: { integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==, @@ -12918,7 +12579,7 @@ packages: universalify: 2.0.0 dev: true - /fs-minipass/2.1.0: + /fs-minipass@2.1.0: resolution: { integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==, @@ -12928,13 +12589,13 @@ packages: minipass: 3.3.4 dev: false - /fs.realpath/1.0.0: + /fs.realpath@1.0.0: resolution: { integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, } - /fsevents/2.3.2: + /fsevents@2.3.2: resolution: { integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, @@ -12944,13 +12605,13 @@ packages: requiresBuild: true optional: true - /function-bind/1.1.1: + /function-bind@1.1.1: resolution: { integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, } - /function.prototype.name/1.1.5: + /function.prototype.name@1.1.5: resolution: { integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, @@ -12962,33 +12623,33 @@ packages: es-abstract: 1.20.1 functions-have-names: 1.2.3 - /functions-have-names/1.2.3: + /functions-have-names@1.2.3: resolution: { integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, } - /gensync/1.0.0-beta.2: + /gensync@1.0.0-beta.2: resolution: { integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, } engines: {node: ">=6.9.0"} - /get-caller-file/2.0.5: + /get-caller-file@2.0.5: resolution: { integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, } engines: {node: 6.* || 8.* || >= 10.*} - /get-func-name/2.0.0: + /get-func-name@2.0.0: resolution: { integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==, } - /get-intrinsic/1.1.1: + /get-intrinsic@1.1.1: resolution: { integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==, @@ -12998,14 +12659,14 @@ packages: has: 1.0.3 has-symbols: 1.0.3 - /get-package-type/0.1.0: + /get-package-type@0.1.0: resolution: { integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, } engines: {node: ">=8.0.0"} - /get-port/5.1.1: + /get-port@5.1.1: resolution: { integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==, @@ -13013,7 +12674,7 @@ packages: engines: {node: ">=8"} dev: true - /get-port/6.1.2: + /get-port@6.1.2: resolution: { integrity: sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw==, @@ -13021,7 +12682,7 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true - /get-stream/3.0.0: + /get-stream@3.0.0: resolution: { integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==, @@ -13029,7 +12690,7 @@ packages: engines: {node: ">=4"} dev: true - /get-stream/4.1.0: + /get-stream@4.1.0: resolution: { integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==, @@ -13039,7 +12700,7 @@ packages: pump: 3.0.0 dev: false - /get-stream/5.2.0: + /get-stream@5.2.0: resolution: { integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, @@ -13048,14 +12709,14 @@ packages: dependencies: pump: 3.0.0 - /get-stream/6.0.1: + /get-stream@6.0.1: resolution: { integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, } engines: {node: ">=10"} - /get-symbol-description/1.0.0: + /get-symbol-description@1.0.0: resolution: { integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, @@ -13065,14 +12726,13 @@ packages: call-bind: 1.0.2 get-intrinsic: 1.1.1 - /get-tsconfig/4.2.0: + /get-tsconfig@4.2.0: resolution: { integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==, } - dev: true - /get-value/2.0.6: + /get-value@2.0.6: resolution: { integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==, @@ -13080,7 +12740,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /get-workspaces/0.6.0: + /get-workspaces@0.6.0: resolution: { integrity: sha512-EWfuENHoxNGk4xoel0jJdm/nhm8oMGQYRsTWJDqrHaj7jyebSckZI0TwQaeWX1rzqpMLULYFrdxhYJPI1l2j3w==, @@ -13094,7 +12754,7 @@ packages: - supports-color dev: false - /glob-parent/3.1.0: + /glob-parent@3.1.0: resolution: { integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==, @@ -13104,7 +12764,7 @@ packages: path-dirname: 1.0.2 dev: false - /glob-parent/5.1.2: + /glob-parent@5.1.2: resolution: { integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, @@ -13113,7 +12773,7 @@ packages: dependencies: is-glob: 4.0.3 - /glob-parent/6.0.2: + /glob-parent@6.0.2: resolution: { integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, @@ -13122,28 +12782,35 @@ packages: dependencies: is-glob: 4.0.3 - /glob-regex/0.3.2: + /glob-regex@0.3.2: resolution: { integrity: sha512-m5blUd3/OqDTWwzBBtWBPrGlAzatRywHameHeekAZyZrskYouOGdNB8T/q6JucucvJXtOuyHIn0/Yia7iDasDw==, } dev: true - /glob-to-regexp/0.3.0: + /glob-to-regexp@0.3.0: resolution: { integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==, } dev: false - /glob-to-regexp/0.4.1: + /glob-to-regexp@0.4.1: resolution: { integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, } dev: false - /glob/7.1.6: + /glob2base@0.0.12: + resolution: {integrity: sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=} + engines: {node: ">= 0.10"} + dependencies: + find-index: 0.1.1 + dev: true + + /glob@7.1.6: resolution: { integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==, @@ -13157,7 +12824,7 @@ packages: path-is-absolute: 1.0.1 dev: true - /glob/7.1.7: + /glob@7.1.7: resolution: { integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==, @@ -13170,7 +12837,7 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob/7.2.0: + /glob@7.2.0: resolution: { integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==, @@ -13183,14 +12850,7 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob2base/0.0.12: - resolution: {integrity: sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=} - engines: {node: ">= 0.10"} - dependencies: - find-index: 0.1.1 - dev: true - - /global-agent/3.0.0: + /global-agent@3.0.0: resolution: { integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==, @@ -13205,7 +12865,7 @@ packages: serialize-error: 7.0.1 dev: false - /global-modules/1.0.0: + /global-modules@1.0.0: resolution: { integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==, @@ -13217,7 +12877,7 @@ packages: resolve-dir: 1.0.1 dev: false - /global-prefix/1.0.2: + /global-prefix@1.0.2: resolution: { integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==, @@ -13231,14 +12891,14 @@ packages: which: 1.3.1 dev: false - /globals/11.12.0: + /globals@11.12.0: resolution: { integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, } engines: {node: ">=4"} - /globals/13.15.0: + /globals@13.15.0: resolution: { integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==, @@ -13247,7 +12907,7 @@ packages: dependencies: type-fest: 0.20.2 - /globalthis/1.0.3: + /globalthis@1.0.3: resolution: { integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, @@ -13257,14 +12917,13 @@ packages: define-properties: 1.1.4 dev: false - /globalyzer/0.1.0: + /globalyzer@0.1.0: resolution: { integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==, } - dev: true - /globby/11.1.0: + /globby@11.1.0: resolution: { integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, @@ -13278,7 +12937,7 @@ packages: merge2: 1.4.1 slash: 3.0.0 - /globby/13.1.2: + /globby@13.1.2: resolution: { integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==, @@ -13291,7 +12950,7 @@ packages: merge2: 1.4.1 slash: 4.0.0 - /globby/9.2.0: + /globby@9.2.0: resolution: { integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==, @@ -13310,14 +12969,13 @@ packages: - supports-color dev: false - /globrex/0.1.2: + /globrex@0.1.2: resolution: { integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==, } - dev: true - /got/11.8.1: + /got@11.8.1: resolution: { integrity: sha512-9aYdZL+6nHmvJwHALLwKSUZ0hMwGaJGYv3hoPLPgnT8BoBXm1SjnZeky+91tfwJaDzun2s4RsBRy48IEYv2q2Q==, @@ -13337,7 +12995,7 @@ packages: responselike: 2.0.0 dev: false - /got/9.6.0: + /got@9.6.0: resolution: { integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==, @@ -13359,19 +13017,19 @@ packages: url-parse-lax: 3.0.0 dev: false - /graceful-fs/4.2.10: + /graceful-fs@4.2.10: resolution: { integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==, } - /grapheme-splitter/1.0.4: + /grapheme-splitter@1.0.4: resolution: { integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, } - /gzip-size/6.0.0: + /gzip-size@6.0.0: resolution: { integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==, @@ -13381,7 +13039,7 @@ packages: duplexer: 0.1.2 dev: true - /hard-rejection/2.1.0: + /hard-rejection@2.1.0: resolution: { integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, @@ -13389,27 +13047,27 @@ packages: engines: {node: ">=6"} dev: false - /has-bigints/1.0.2: + /has-bigints@1.0.2: resolution: { integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, } - /has-flag/3.0.0: + /has-flag@3.0.0: resolution: { integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, } engines: {node: ">=4"} - /has-flag/4.0.0: + /has-flag@4.0.0: resolution: { integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, } engines: {node: ">=8"} - /has-property-descriptors/1.0.0: + /has-property-descriptors@1.0.0: resolution: { integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, @@ -13417,14 +13075,14 @@ packages: dependencies: get-intrinsic: 1.1.1 - /has-symbols/1.0.3: + /has-symbols@1.0.3: resolution: { integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, } engines: {node: ">= 0.4"} - /has-tostringtag/1.0.0: + /has-tostringtag@1.0.0: resolution: { integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, @@ -13433,7 +13091,7 @@ packages: dependencies: has-symbols: 1.0.3 - /has-value/0.3.1: + /has-value@0.3.1: resolution: { integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==, @@ -13445,7 +13103,7 @@ packages: isobject: 2.1.0 dev: false - /has-value/1.0.0: + /has-value@1.0.0: resolution: { integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==, @@ -13457,7 +13115,7 @@ packages: isobject: 3.0.1 dev: false - /has-values/0.1.4: + /has-values@0.1.4: resolution: { integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==, @@ -13465,7 +13123,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /has-values/1.0.0: + /has-values@1.0.0: resolution: { integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==, @@ -13476,7 +13134,7 @@ packages: kind-of: 4.0.0 dev: false - /has/1.0.3: + /has@1.0.3: resolution: { integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, @@ -13485,14 +13143,14 @@ packages: dependencies: function-bind: 1.1.1 - /hasbin/1.2.3: + /hasbin@1.2.3: resolution: {integrity: sha1-eMWSaJPIAhXCtWiuH9P8q3omlrA=} engines: {node: ">=0.10"} dependencies: async: 1.5.2 dev: false - /he/1.2.0: + /he@1.2.0: resolution: { integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, @@ -13500,7 +13158,7 @@ packages: hasBin: true dev: true - /hoist-non-react-statics/3.3.2: + /hoist-non-react-statics@3.3.2: resolution: { integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==, @@ -13509,7 +13167,7 @@ packages: react-is: 16.13.1 dev: false - /homedir-polyfill/1.0.3: + /homedir-polyfill@1.0.3: resolution: { integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==, @@ -13519,21 +13177,31 @@ packages: parse-passwd: 1.0.0 dev: false - /hookable/5.1.1: + /hookable@5.1.1: resolution: { integrity: sha512-7qam9XBFb+DijNBthaL1k/7lHU2TEMZkWSyuqmU3sCQze1wFm5w9AlEx30PD7a+QVAjOy6Ec2goFwe1YVyk2uA==, } dev: true - /hosted-git-info/2.8.9: + /hosted-git-info@2.8.9: resolution: { integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, } dev: false - /html-encoding-sniffer/3.0.0: + /html-encoding-sniffer@2.0.1: + resolution: + { + integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==, + } + engines: {node: ">=10"} + dependencies: + whatwg-encoding: 1.0.5 + dev: true + + /html-encoding-sniffer@3.0.0: resolution: { integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==, @@ -13542,13 +13210,13 @@ packages: dependencies: whatwg-encoding: 2.0.0 - /html-escaper/2.0.2: + /html-escaper@2.0.2: resolution: { integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, } - /html-to-text/8.2.0: + /html-to-text@8.2.0: resolution: { integrity: sha512-CLXExYn1b++Lgri+ZyVvbUEFwzkLZppjjZOwB7X1qv2jIi8MrMEvxWX5KQ7zATAzTvcqgmtO00M2kCRMtEdOKQ==, @@ -13564,7 +13232,7 @@ packages: selderee: 0.6.0 dev: true - /htmlparser2/6.1.0: + /htmlparser2@6.1.0: resolution: { integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==, @@ -13576,14 +13244,14 @@ packages: entities: 2.2.0 dev: true - /http-cache-semantics/4.1.0: + /http-cache-semantics@4.1.0: resolution: { integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==, } dev: false - /http-errors/1.8.1: + /http-errors@1.8.1: resolution: { integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==, @@ -13597,27 +13265,34 @@ packages: toidentifier: 1.0.1 dev: true - /http-proxy-agent/5.0.0: + /http-proxy-agent@4.0.1(supports-color@8.1.1): resolution: { - integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==, + integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==, } engines: {node: ">= 6"} dependencies: - "@tootallnate/once": 2.0.0 - agent-base: 6.0.2 - debug: 4.3.4 + "@tootallnate/once": 1.1.2 + agent-base: 6.0.2(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color + dev: true - /http/0.0.1-security: + /http-proxy-agent@5.0.0: resolution: { - integrity: sha512-RnDvP10Ty9FxqOtPZuxtebw1j4L/WiqNMDtuc1YMH1XQm5TgDRaR1G9u8upL6KD1bXHSp9eSXo/ED+8Q7FAr+g==, + integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==, } - dev: false + engines: {node: ">= 6"} + dependencies: + "@tootallnate/once": 2.0.0 + agent-base: 6.0.2(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color - /http2-wrapper/1.0.3: + /http2-wrapper@1.0.3: resolution: { integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==, @@ -13628,47 +13303,54 @@ packages: resolve-alpn: 1.2.1 dev: false - /https-proxy-agent/5.0.1: + /http@0.0.1-security: + resolution: + { + integrity: sha512-RnDvP10Ty9FxqOtPZuxtebw1j4L/WiqNMDtuc1YMH1XQm5TgDRaR1G9u8upL6KD1bXHSp9eSXo/ED+8Q7FAr+g==, + } + dev: false + + /https-proxy-agent@5.0.1(supports-color@8.1.1): resolution: { integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, } engines: {node: ">= 6"} dependencies: - agent-base: 6.0.2 - debug: 4.3.4 + agent-base: 6.0.2(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /human-id/1.0.2: + /human-id@1.0.2: resolution: { integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==, } dev: false - /human-signals/1.1.1: + /human-signals@1.1.1: resolution: { integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==, } engines: {node: ">=8.12.0"} - /human-signals/2.1.0: + /human-signals@2.1.0: resolution: { integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, } engines: {node: ">=10.17.0"} - /human-signals/3.0.1: + /human-signals@3.0.1: resolution: { integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==, } engines: {node: ">=12.20.0"} - /husky/8.0.2: + /husky@8.0.2: resolution: { integrity: sha512-Tkv80jtvbnkK3mYWxPZePGFpQ/tT3HNSs/sasF9P2YfkMezDl3ON37YN6jUUI4eTg5LcyVynlb6r4eyvOmspvg==, @@ -13676,7 +13358,7 @@ packages: engines: {node: ">=14"} hasBin: true - /iconv-lite/0.4.24: + /iconv-lite@0.4.24: resolution: { integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, @@ -13685,7 +13367,7 @@ packages: dependencies: safer-buffer: 2.1.2 - /iconv-lite/0.6.3: + /iconv-lite@0.6.3: resolution: { integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==, @@ -13694,14 +13376,14 @@ packages: dependencies: safer-buffer: 2.1.2 - /ieee754/1.2.1: + /ieee754@1.2.1: resolution: { integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, } dev: false - /ignore/4.0.6: + /ignore@4.0.6: resolution: { integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==, @@ -13709,21 +13391,21 @@ packages: engines: {node: ">= 4"} dev: false - /ignore/5.2.0: + /ignore@5.2.0: resolution: { integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==, } engines: {node: ">= 4"} - /immediate/3.0.6: + /immediate@3.0.6: resolution: { integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==, } dev: true - /import-fresh/3.3.0: + /import-fresh@3.3.0: resolution: { integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, @@ -13733,7 +13415,7 @@ packages: parent-module: 1.0.1 resolve-from: 4.0.0 - /import-local/3.1.0: + /import-local@3.1.0: resolution: { integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, @@ -13744,21 +13426,21 @@ packages: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - /imurmurhash/0.1.4: + /imurmurhash@0.1.4: resolution: { integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, } engines: {node: ">=0.8.19"} - /indent-string/4.0.0: + /indent-string@4.0.0: resolution: { integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, } engines: {node: ">=8"} - /inflight/1.0.6: + /inflight@1.0.6: resolution: { integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, @@ -13767,27 +13449,27 @@ packages: once: 1.4.0 wrappy: 1.0.2 - /inherits/2.0.3: + /inherits@2.0.3: resolution: { integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==, } dev: false - /inherits/2.0.4: + /inherits@2.0.4: resolution: { integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, } - /ini/1.3.8: + /ini@1.3.8: resolution: { integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, } dev: false - /ink-spinner/4.0.3_ink@3.2.0+react@18.2.0: + /ink-spinner@4.0.3(ink@3.2.0)(react@18.2.0): resolution: { integrity: sha512-uJ4nbH00MM9fjTJ5xdw0zzvtXMkeGb0WV6dzSWvFv2/+ks6FIhpkt+Ge/eLdh0Ah6Vjw5pLMyNfoHQpRDRVFbQ==, @@ -13798,11 +13480,11 @@ packages: react: ">=16.8.2" dependencies: cli-spinners: 2.6.1 - ink: 3.2.0_fan5qbzahqtxlm5dzefqlqx5ia + ink: 3.2.0(@types/react@18.0.25)(react@18.2.0) react: 18.2.0 dev: false - /ink/3.2.0_fan5qbzahqtxlm5dzefqlqx5ia: + /ink@3.2.0(@types/react@18.0.25)(react@18.2.0): resolution: { integrity: sha512-firNp1q3xxTzoItj/eOOSZQnYSlyrWks5llCTVX37nJ59K3eXbQ8PtzCguqo8YI19EELo5QxaKnJd4VxzhU8tg==, @@ -13829,7 +13511,7 @@ packages: patch-console: 1.0.0 react: 18.2.0 react-devtools-core: 4.25.0 - react-reconciler: 0.26.2_react@18.2.0 + react-reconciler: 0.26.2(react@18.2.0) scheduler: 0.20.2 signal-exit: 3.0.7 slice-ansi: 3.0.0 @@ -13845,7 +13527,7 @@ packages: - utf-8-validate dev: false - /internal-slot/1.0.3: + /internal-slot@1.0.3: resolution: { integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==, @@ -13856,7 +13538,7 @@ packages: has: 1.0.3 side-channel: 1.0.4 - /ip-regex/4.3.0: + /ip-regex@4.3.0: resolution: { integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==, @@ -13864,7 +13546,7 @@ packages: engines: {node: ">=8"} dev: true - /ipaddr.js/1.9.1: + /ipaddr.js@1.9.1: resolution: { integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==, @@ -13872,7 +13554,7 @@ packages: engines: {node: ">= 0.10"} dev: true - /is-accessor-descriptor/0.1.6: + /is-accessor-descriptor@0.1.6: resolution: { integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==, @@ -13882,7 +13564,7 @@ packages: kind-of: 3.2.2 dev: false - /is-accessor-descriptor/1.0.0: + /is-accessor-descriptor@1.0.0: resolution: { integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==, @@ -13892,13 +13574,13 @@ packages: kind-of: 6.0.3 dev: false - /is-arrayish/0.2.1: + /is-arrayish@0.2.1: resolution: { integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, } - /is-bigint/1.0.4: + /is-bigint@1.0.4: resolution: { integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, @@ -13906,7 +13588,7 @@ packages: dependencies: has-bigints: 1.0.2 - /is-binary-path/2.1.0: + /is-binary-path@2.1.0: resolution: { integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, @@ -13915,7 +13597,7 @@ packages: dependencies: binary-extensions: 2.2.0 - /is-boolean-object/1.1.2: + /is-boolean-object@1.1.2: resolution: { integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, @@ -13925,14 +13607,14 @@ packages: call-bind: 1.0.2 has-tostringtag: 1.0.0 - /is-buffer/1.1.6: + /is-buffer@1.1.6: resolution: { integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, } dev: false - /is-builtin-module/3.1.0: + /is-builtin-module@3.1.0: resolution: { integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==, @@ -13942,14 +13624,14 @@ packages: builtin-modules: 3.2.0 dev: true - /is-callable/1.2.4: + /is-callable@1.2.4: resolution: { integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==, } engines: {node: ">= 0.4"} - /is-ci/2.0.0: + /is-ci@2.0.0: resolution: { integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==, @@ -13959,7 +13641,7 @@ packages: ci-info: 2.0.0 dev: false - /is-ci/3.0.1: + /is-ci@3.0.1: resolution: { integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, @@ -13969,7 +13651,7 @@ packages: ci-info: 3.3.1 dev: false - /is-core-module/2.11.0: + /is-core-module@2.11.0: resolution: { integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==, @@ -13977,7 +13659,7 @@ packages: dependencies: has: 1.0.3 - /is-data-descriptor/0.1.4: + /is-data-descriptor@0.1.4: resolution: { integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==, @@ -13987,7 +13669,7 @@ packages: kind-of: 3.2.2 dev: false - /is-data-descriptor/1.0.0: + /is-data-descriptor@1.0.0: resolution: { integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==, @@ -13997,7 +13679,7 @@ packages: kind-of: 6.0.3 dev: false - /is-date-object/1.0.5: + /is-date-object@1.0.5: resolution: { integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, @@ -14006,7 +13688,7 @@ packages: dependencies: has-tostringtag: 1.0.0 - /is-descriptor/0.1.6: + /is-descriptor@0.1.6: resolution: { integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==, @@ -14018,7 +13700,7 @@ packages: kind-of: 5.1.0 dev: false - /is-descriptor/1.0.2: + /is-descriptor@1.0.2: resolution: { integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==, @@ -14030,16 +13712,15 @@ packages: kind-of: 6.0.3 dev: false - /is-docker/2.2.1: + /is-docker@2.2.1: resolution: { integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==, } engines: {node: ">=8"} hasBin: true - dev: true - /is-expression/4.0.0: + /is-expression@4.0.0: resolution: { integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==, @@ -14049,7 +13730,7 @@ packages: object-assign: 4.1.1 dev: true - /is-extendable/0.1.1: + /is-extendable@0.1.1: resolution: { integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==, @@ -14057,7 +13738,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /is-extendable/1.0.1: + /is-extendable@1.0.1: resolution: { integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==, @@ -14067,35 +13748,35 @@ packages: is-plain-object: 2.0.4 dev: false - /is-extglob/2.1.1: + /is-extglob@2.1.1: resolution: { integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, } engines: {node: ">=0.10.0"} - /is-fullwidth-code-point/3.0.0: + /is-fullwidth-code-point@3.0.0: resolution: { integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, } engines: {node: ">=8"} - /is-fullwidth-code-point/4.0.0: + /is-fullwidth-code-point@4.0.0: resolution: { integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, } engines: {node: ">=12"} - /is-generator-fn/2.1.0: + /is-generator-fn@2.1.0: resolution: { integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, } engines: {node: ">=6"} - /is-glob/3.1.0: + /is-glob@3.1.0: resolution: { integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==, @@ -14105,7 +13786,7 @@ packages: is-extglob: 2.1.1 dev: false - /is-glob/4.0.3: + /is-glob@4.0.3: resolution: { integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, @@ -14114,7 +13795,7 @@ packages: dependencies: is-extglob: 2.1.1 - /is-interactive/1.0.0: + /is-interactive@1.0.0: resolution: { integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==, @@ -14122,21 +13803,21 @@ packages: engines: {node: ">=8"} dev: false - /is-module/1.0.0: + /is-module@1.0.0: resolution: { integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==, } dev: true - /is-negative-zero/2.0.2: + /is-negative-zero@2.0.2: resolution: { integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, } engines: {node: ">= 0.4"} - /is-number-object/1.0.7: + /is-number-object@1.0.7: resolution: { integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, @@ -14145,7 +13826,7 @@ packages: dependencies: has-tostringtag: 1.0.0 - /is-number/3.0.0: + /is-number@3.0.0: resolution: { integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==, @@ -14155,14 +13836,14 @@ packages: kind-of: 3.2.2 dev: false - /is-number/7.0.0: + /is-number@7.0.0: resolution: { integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, } engines: {node: ">=0.12.0"} - /is-path-cwd/2.2.0: + /is-path-cwd@2.2.0: resolution: { integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==, @@ -14170,14 +13851,14 @@ packages: engines: {node: ">=6"} dev: true - /is-path-inside/3.0.3: + /is-path-inside@3.0.3: resolution: { integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, } engines: {node: ">=8"} - /is-plain-obj/1.1.0: + /is-plain-obj@1.1.0: resolution: { integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, @@ -14185,7 +13866,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /is-plain-object/2.0.4: + /is-plain-object@2.0.4: resolution: { integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==, @@ -14195,20 +13876,20 @@ packages: isobject: 3.0.1 dev: false - /is-potential-custom-element-name/1.0.1: + /is-potential-custom-element-name@1.0.1: resolution: { integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==, } - /is-promise/2.2.2: + /is-promise@2.2.2: resolution: { integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==, } dev: true - /is-reference/1.2.1: + /is-reference@1.2.1: resolution: { integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==, @@ -14217,7 +13898,7 @@ packages: "@types/estree": 0.0.51 dev: true - /is-regex/1.1.4: + /is-regex@1.1.4: resolution: { integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, @@ -14227,7 +13908,7 @@ packages: call-bind: 1.0.2 has-tostringtag: 1.0.0 - /is-shared-array-buffer/1.0.2: + /is-shared-array-buffer@1.0.2: resolution: { integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, @@ -14235,28 +13916,28 @@ packages: dependencies: call-bind: 1.0.2 - /is-stream/1.1.0: + /is-stream@1.1.0: resolution: { integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==, } engines: {node: ">=0.10.0"} - /is-stream/2.0.1: + /is-stream@2.0.1: resolution: { integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, } engines: {node: ">=8"} - /is-stream/3.0.0: + /is-stream@3.0.0: resolution: { integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, } engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - /is-string/1.0.7: + /is-string@1.0.7: resolution: { integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, @@ -14265,7 +13946,7 @@ packages: dependencies: has-tostringtag: 1.0.0 - /is-subdir/1.2.0: + /is-subdir@1.2.0: resolution: { integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, @@ -14275,7 +13956,7 @@ packages: better-path-resolve: 1.0.0 dev: false - /is-symbol/1.0.4: + /is-symbol@1.0.4: resolution: { integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, @@ -14284,7 +13965,14 @@ packages: dependencies: has-symbols: 1.0.3 - /is-unicode-supported/0.1.0: + /is-typedarray@1.0.0: + resolution: + { + integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, + } + dev: true + + /is-unicode-supported@0.1.0: resolution: { integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, @@ -14292,21 +13980,21 @@ packages: engines: {node: ">=10"} dev: false - /is-url/1.2.4: + /is-url@1.2.4: resolution: { integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==, } dev: true - /is-utf8/0.2.1: + /is-utf8@0.2.1: resolution: { integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==, } dev: false - /is-weakref/1.0.2: + /is-weakref@1.0.2: resolution: { integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, @@ -14314,7 +14002,7 @@ packages: dependencies: call-bind: 1.0.2 - /is-what/4.1.7: + /is-what@4.1.7: resolution: { integrity: sha512-DBVOQNiPKnGMxRMLIYSwERAS5MVY1B7xYiGnpgctsOFvVDz9f9PFXXxMcTOHuoqYp4NK9qFYQaIC1NRRxLMpBQ==, @@ -14322,7 +14010,7 @@ packages: engines: {node: ">=12.13"} dev: false - /is-windows/1.0.2: + /is-windows@1.0.2: resolution: { integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, @@ -14330,7 +14018,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /is-wsl/2.2.0: + /is-wsl@2.2.0: resolution: { integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, @@ -14338,9 +14026,8 @@ packages: engines: {node: ">=8"} dependencies: is-docker: 2.2.1 - dev: true - /is2/2.0.7: + /is2@2.0.7: resolution: { integrity: sha512-4vBQoURAXC6hnLFxD4VW7uc04XiwTTl/8ydYJxKvPwkWQrSjInkuM5VZVg6BGr1/natq69zDuvO9lGpLClJqvA==, @@ -14352,13 +14039,13 @@ packages: is-url: 1.2.4 dev: true - /isarray/1.0.0: + /isarray@1.0.0: resolution: { integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, } - /isbinaryfile/4.0.10: + /isbinaryfile@4.0.10: resolution: { integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==, @@ -14366,13 +14053,13 @@ packages: engines: {node: ">= 8.0.0"} dev: false - /isexe/2.0.0: + /isexe@2.0.0: resolution: { integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, } - /isobject/2.1.0: + /isobject@2.1.0: resolution: { integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==, @@ -14382,7 +14069,7 @@ packages: isarray: 1.0.0 dev: false - /isobject/3.0.1: + /isobject@3.0.1: resolution: { integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==, @@ -14390,21 +14077,21 @@ packages: engines: {node: ">=0.10.0"} dev: false - /istanbul-lib-coverage/3.2.0: + /istanbul-lib-coverage@3.2.0: resolution: { integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==, } engines: {node: ">=8"} - /istanbul-lib-instrument/5.2.0: + /istanbul-lib-instrument@5.2.0(supports-color@8.1.1): resolution: { integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==, } engines: {node: ">=8"} dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/parser": 7.20.3 "@istanbuljs/schema": 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -14412,7 +14099,7 @@ packages: transitivePeerDependencies: - supports-color - /istanbul-lib-report/3.0.0: + /istanbul-lib-report@3.0.0: resolution: { integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==, @@ -14423,20 +14110,20 @@ packages: make-dir: 3.1.0 supports-color: 7.2.0 - /istanbul-lib-source-maps/4.0.1: + /istanbul-lib-source-maps@4.0.1(supports-color@8.1.1): resolution: { integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, } engines: {node: ">=10"} dependencies: - debug: 4.3.4 + debug: 4.3.3(supports-color@8.1.1) istanbul-lib-coverage: 3.2.0 source-map: 0.6.1 transitivePeerDependencies: - supports-color - /istanbul-reports/3.1.4: + /istanbul-reports@3.1.4: resolution: { integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==, @@ -14446,7 +14133,7 @@ packages: html-escaper: 2.0.2 istanbul-lib-report: 3.0.0 - /jake/10.8.5: + /jake@10.8.5: resolution: { integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==, @@ -14460,7 +14147,19 @@ packages: minimatch: 3.1.2 dev: false - /jest-changed-files/29.2.0: + /jest-changed-files@27.5.1: + resolution: + { + integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + "@jest/types": 27.5.1 + execa: 5.1.1 + throat: 6.0.2 + dev: true + + /jest-changed-files@29.2.0: resolution: { integrity: sha512-qPVmLLyBmvF5HJrY7krDisx6Voi8DmlV3GZYX0aFNbaQsZeoz1hfxcCMbqDGuQCxU1dJy9eYc2xscE8QrCCYaA==, @@ -14470,7 +14169,37 @@ packages: execa: 5.1.1 p-limit: 3.1.0 - /jest-circus/29.3.0: + /jest-circus@27.5.1(supports-color@8.1.1): + 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.11.9 + chalk: 4.1.2 + co: 4.6.0 + dedent: 0.7.0 + expect: 27.5.1 + is-generator-fn: 2.1.0 + jest-each: 27.5.1 + jest-matcher-utils: 27.5.1 + jest-message-util: 27.5.1 + jest-runtime: 27.5.1(supports-color@8.1.1) + jest-snapshot: 27.5.1(supports-color@8.1.1) + jest-util: 27.5.1 + pretty-format: 27.5.1 + slash: 3.0.0 + stack-utils: 2.0.5 + throat: 6.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-circus@29.3.0: resolution: { integrity: sha512-xL1cmbUGBGy923KBZpZ2LRKspHlIhrltrwGaefJ677HXCPY5rTF758BtweamBype2ogcSEK/oqcp1SmYZ/ATig==, @@ -14499,12 +14228,12 @@ packages: transitivePeerDependencies: - supports-color - /jest-cli/29.3.0_odkjkoia5xunhxkdrka32ib6vi: + /jest-cli@27.5.1(supports-color@8.1.1): resolution: { - integrity: sha512-rDb9iasZvqTkgrlwzVGemR5i20T0/XN1ug46Ch2vxTRa0zS5PHaVXQXYzYbuLFHs1xpc+XsB9xPfEkkwbnLJBg==, + integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==, } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -14512,25 +14241,27 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 29.3.0_ts-node@10.9.1 - "@jest/test-result": 29.2.1 - "@jest/types": 29.2.1 + "@jest/core": 27.5.1(supports-color@8.1.1) + "@jest/test-result": 27.5.1 + "@jest/types": 27.5.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 29.3.0_odkjkoia5xunhxkdrka32ib6vi - jest-util: 29.2.1 - jest-validate: 29.2.2 + jest-config: 27.5.1(supports-color@8.1.1) + jest-util: 27.5.1 + jest-validate: 27.5.1 prompts: 2.4.2 - yargs: 17.6.2 + yargs: 16.2.0 transitivePeerDependencies: - - "@types/node" + - bufferutil + - canvas - supports-color - ts-node + - utf-8-validate dev: true - /jest-cli/29.3.0_ts-node@10.9.1: + /jest-cli@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): resolution: { integrity: sha512-rDb9iasZvqTkgrlwzVGemR5i20T0/XN1ug46Ch2vxTRa0zS5PHaVXQXYzYbuLFHs1xpc+XsB9xPfEkkwbnLJBg==, @@ -14543,14 +14274,14 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 29.3.0_ts-node@10.9.1 + "@jest/core": 29.3.0(ts-node@10.9.1) "@jest/test-result": 29.2.1 "@jest/types": 29.2.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 29.3.0_ts-node@10.9.1 + jest-config: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) jest-util: 29.2.1 jest-validate: 29.2.2 prompts: 2.4.2 @@ -14559,51 +14290,51 @@ packages: - "@types/node" - supports-color - ts-node - dev: false - /jest-config/29.3.0_odkjkoia5xunhxkdrka32ib6vi: + /jest-config@27.5.1(supports-color@8.1.1): resolution: { - integrity: sha512-sTSDs/M+//njznsytxiBxwfDnSWRb6OqiNSlO/B2iw1HUaa1YLsdWmV4AWLXss1XKzv1F0yVK+kA4XOhZ0I1qQ==, + integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==, } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: - "@types/node": "*" ts-node: ">=9.0.0" peerDependenciesMeta: - "@types/node": - optional: true ts-node: optional: true dependencies: - "@babel/core": 7.20.2 - "@jest/test-sequencer": 29.3.0 - "@jest/types": 29.2.1 - "@types/node": 18.11.9 - babel-jest: 29.3.0_@babel+core@7.20.2 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@jest/test-sequencer": 27.5.1(supports-color@8.1.1) + "@jest/types": 27.5.1 + babel-jest: 27.5.1(@babel/core@7.12.10)(supports-color@8.1.1) chalk: 4.1.2 ci-info: 3.5.0 deepmerge: 4.2.2 glob: 7.2.0 graceful-fs: 4.2.10 - jest-circus: 29.3.0 - jest-environment-node: 29.3.0 - jest-get-type: 29.2.0 - jest-regex-util: 29.2.0 - jest-resolve: 29.3.0 - jest-runner: 29.3.0 - jest-util: 29.2.1 - jest-validate: 29.2.2 + jest-circus: 27.5.1(supports-color@8.1.1) + jest-environment-jsdom: 27.5.1(supports-color@8.1.1) + jest-environment-node: 27.5.1 + jest-get-type: 27.5.1 + jest-jasmine2: 27.5.1(supports-color@8.1.1) + jest-regex-util: 27.5.1 + jest-resolve: 27.5.1 + jest-runner: 27.5.1(supports-color@8.1.1) + jest-util: 27.5.1 + jest-validate: 27.5.1 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 29.2.1 + pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_typescript@4.8.4 transitivePeerDependencies: + - bufferutil + - canvas - supports-color + - utf-8-validate + dev: true - /jest-config/29.3.0_ts-node@10.9.1: + /jest-config@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): resolution: { integrity: sha512-sTSDs/M+//njznsytxiBxwfDnSWRb6OqiNSlO/B2iw1HUaa1YLsdWmV4AWLXss1XKzv1F0yVK+kA4XOhZ0I1qQ==, @@ -14618,10 +14349,11 @@ packages: ts-node: optional: true dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@jest/test-sequencer": 29.3.0 "@jest/types": 29.2.1 - babel-jest: 29.3.0_@babel+core@7.20.2 + "@types/node": 18.11.9 + babel-jest: 29.3.0(@babel/core@7.20.2) chalk: 4.1.2 ci-info: 3.5.0 deepmerge: 4.2.2 @@ -14640,12 +14372,24 @@ packages: pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_typescript@4.8.4 + ts-node: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) transitivePeerDependencies: - supports-color - dev: false - /jest-diff/29.2.1: + /jest-diff@27.5.1: + resolution: + { + integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + chalk: 4.1.2 + diff-sequences: 27.5.1 + jest-get-type: 27.5.1 + pretty-format: 27.5.1 + dev: true + + /jest-diff@29.2.1: resolution: { integrity: sha512-gfh/SMNlQmP3MOUgdzxPOd4XETDJifADpT937fN1iUGz+9DgOu2eUPHH25JDkLVcLwwqxv3GzVyK4VBUr9fjfA==, @@ -14657,7 +14401,17 @@ packages: jest-get-type: 29.2.0 pretty-format: 29.2.1 - /jest-docblock/29.2.0: + /jest-docblock@27.5.1: + resolution: + { + integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + detect-newline: 3.1.0 + dev: true + + /jest-docblock@29.2.0: resolution: { integrity: sha512-bkxUsxTgWQGbXV5IENmfiIuqZhJcyvF7tU4zJ/7ioTutdz4ToB5Yx6JOFBpgI+TphRY4lhOyCWGNH/QFQh5T6A==, @@ -14666,7 +14420,21 @@ packages: dependencies: detect-newline: 3.1.0 - /jest-each/29.2.1: + /jest-each@27.5.1: + 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 + chalk: 4.1.2 + jest-get-type: 27.5.1 + jest-util: 27.5.1 + pretty-format: 27.5.1 + dev: true + + /jest-each@29.2.1: resolution: { integrity: sha512-sGP86H/CpWHMyK3qGIGFCgP6mt+o5tu9qG4+tobl0LNdgny0aitLXs9/EBacLy3Bwqy+v4uXClqJgASJWcruYw==, @@ -14679,7 +14447,28 @@ packages: jest-util: 29.2.1 pretty-format: 29.2.1 - /jest-environment-jsdom/29.3.0: + /jest-environment-jsdom@27.5.1(supports-color@8.1.1): + 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.11.9 + jest-mock: 27.5.1 + jest-util: 27.5.1 + jsdom: 16.7.0(supports-color@8.1.1) + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + dev: true + + /jest-environment-jsdom@29.3.0: resolution: { integrity: sha512-xFLbMR4OF4lntNcO9LthJdPRbI9WgfFlG73aQS6wQ54+v4oSAp8T4FKUw0add+Z+Ghu/dirRxuvc4FzzN5kRxw==, @@ -14704,7 +14493,22 @@ packages: - supports-color - utf-8-validate - /jest-environment-node/29.3.0: + /jest-environment-node@27.5.1: + 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.11.9 + jest-mock: 27.5.1 + jest-util: 27.5.1 + dev: true + + /jest-environment-node@29.3.0: resolution: { integrity: sha512-oikVE5pyiBUMrqi7J/kFGd1zeT14+EnJulyqzopDNijLX13ygwjiOF/GVpVKSGyBrrAwSkaj/ohEQJCcjkCtOA==, @@ -14718,14 +14522,45 @@ packages: jest-mock: 29.3.0 jest-util: 29.2.1 - /jest-get-type/29.2.0: + /jest-get-type@27.5.1: + resolution: + { + integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dev: true + + /jest-get-type@29.2.0: resolution: { integrity: sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /jest-haste-map/29.3.0: + /jest-haste-map@27.5.1: + resolution: + { + integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + "@jest/types": 27.5.1 + "@types/graceful-fs": 4.1.5 + "@types/node": 18.11.9 + anymatch: 3.1.2 + fb-watchman: 2.0.1 + graceful-fs: 4.2.10 + jest-regex-util: 27.5.1 + jest-serializer: 27.5.1 + jest-util: 27.5.1 + jest-worker: 27.5.1 + micromatch: 4.0.5 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /jest-haste-map@29.3.0: resolution: { integrity: sha512-ugdLIreycMRRg3+6AjiExECmuFI2D9PS+BmNU7eGvBt3fzVMKybb9USAZXN6kw4Q6Mn8DSK+7OFCloY2rN820Q==, @@ -14746,7 +14581,46 @@ packages: optionalDependencies: fsevents: 2.3.2 - /jest-leak-detector/29.2.1: + /jest-jasmine2@27.5.1(supports-color@8.1.1): + 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.11.9 + chalk: 4.1.2 + co: 4.6.0 + expect: 27.5.1 + is-generator-fn: 2.1.0 + jest-each: 27.5.1 + jest-matcher-utils: 27.5.1 + jest-message-util: 27.5.1 + jest-runtime: 27.5.1(supports-color@8.1.1) + jest-snapshot: 27.5.1(supports-color@8.1.1) + jest-util: 27.5.1 + pretty-format: 27.5.1 + throat: 6.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-leak-detector@27.5.1: + resolution: + { + integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + jest-get-type: 27.5.1 + pretty-format: 27.5.1 + dev: true + + /jest-leak-detector@29.2.1: resolution: { integrity: sha512-1YvSqYoiurxKOJtySc+CGVmw/e1v4yNY27BjWTVzp0aTduQeA7pdieLiW05wTYG/twlKOp2xS/pWuikQEmklug==, @@ -14756,7 +14630,20 @@ packages: jest-get-type: 29.2.0 pretty-format: 29.2.1 - /jest-matcher-utils/29.2.2: + /jest-matcher-utils@27.5.1: + resolution: + { + integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + chalk: 4.1.2 + jest-diff: 27.5.1 + jest-get-type: 27.5.1 + pretty-format: 27.5.1 + dev: true + + /jest-matcher-utils@29.2.2: resolution: { integrity: sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw==, @@ -14768,7 +14655,25 @@ packages: jest-get-type: 29.2.0 pretty-format: 29.2.1 - /jest-message-util/29.2.1: + /jest-message-util@27.5.1: + 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.18.6 + "@jest/types": 27.5.1 + "@types/stack-utils": 2.0.1 + chalk: 4.1.2 + graceful-fs: 4.2.10 + micromatch: 4.0.5 + pretty-format: 27.5.1 + slash: 3.0.0 + stack-utils: 2.0.5 + dev: true + + /jest-message-util@29.2.1: resolution: { integrity: sha512-Dx5nEjw9V8C1/Yj10S/8ivA8F439VS8vTq1L7hEgwHFn9ovSKNpYW/kwNh7UglaEgXO42XxzKJB+2x0nSglFVw==, @@ -14785,7 +14690,18 @@ packages: slash: 3.0.0 stack-utils: 2.0.5 - /jest-mock/29.3.0: + /jest-mock@27.5.1: + 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.11.9 + dev: true + + /jest-mock@29.3.0: resolution: { integrity: sha512-BRKfsAaeP3pTWeog+1D0ILeJF96SzB6y3k0JDxY63kssxiUy9nDLHmNUoVkBGILjMbpHULhbzVTsb3harPXuUQ==, @@ -14796,7 +14712,22 @@ packages: "@types/node": 18.11.9 jest-util: 29.2.1 - /jest-pnp-resolver/1.2.2_jest-resolve@29.3.0: + /jest-pnp-resolver@1.2.2(jest-resolve@27.5.1): + resolution: + { + integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==, + } + engines: {node: ">=6"} + peerDependencies: + jest-resolve: "*" + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 27.5.1 + dev: true + + /jest-pnp-resolver@1.2.2(jest-resolve@29.3.0): resolution: { integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==, @@ -14810,14 +14741,36 @@ packages: dependencies: jest-resolve: 29.3.0 - /jest-regex-util/29.2.0: + /jest-regex-util@27.5.1: + resolution: + { + integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dev: true + + /jest-regex-util@29.2.0: resolution: { integrity: sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /jest-resolve-dependencies/29.3.0: + /jest-resolve-dependencies@27.5.1(supports-color@8.1.1): + 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-regex-util: 27.5.1 + jest-snapshot: 27.5.1(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + + /jest-resolve-dependencies@29.3.0: resolution: { integrity: sha512-ykSbDbWmIaHprOBig57AExw7i6Fj0y69M6baiAd75Ivx1UMQt4wsM6A+SNqIhycV6Zy8XV3L40Ac3HYSrDSq7w==, @@ -14829,7 +14782,26 @@ packages: transitivePeerDependencies: - supports-color - /jest-resolve/29.3.0: + /jest-resolve@27.5.1: + 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 + chalk: 4.1.2 + graceful-fs: 4.2.10 + jest-haste-map: 27.5.1 + jest-pnp-resolver: 1.2.2(jest-resolve@27.5.1) + jest-util: 27.5.1 + jest-validate: 27.5.1 + resolve: 1.22.1 + resolve.exports: 1.1.0 + slash: 3.0.0 + dev: true + + /jest-resolve@29.3.0: resolution: { integrity: sha512-xH6C6loDlOWEWHdCgioLDlbpmsolNdNsV/UR35ChuK217x0ttHuhyEPdh5wa6CTQ/Eq4OGW2/EZTlh0ay5aojQ==, @@ -14839,14 +14811,49 @@ packages: chalk: 4.1.2 graceful-fs: 4.2.10 jest-haste-map: 29.3.0 - jest-pnp-resolver: 1.2.2_jest-resolve@29.3.0 + jest-pnp-resolver: 1.2.2(jest-resolve@29.3.0) jest-util: 29.2.1 jest-validate: 29.2.2 resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 - /jest-runner/29.3.0: + /jest-runner@27.5.1(supports-color@8.1.1): + 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(supports-color@8.1.1) + "@jest/types": 27.5.1 + "@types/node": 18.11.9 + chalk: 4.1.2 + emittery: 0.8.1 + graceful-fs: 4.2.10 + jest-docblock: 27.5.1 + jest-environment-jsdom: 27.5.1(supports-color@8.1.1) + jest-environment-node: 27.5.1 + jest-haste-map: 27.5.1 + jest-leak-detector: 27.5.1 + jest-message-util: 27.5.1 + jest-resolve: 27.5.1 + jest-runtime: 27.5.1(supports-color@8.1.1) + jest-util: 27.5.1 + jest-worker: 27.5.1 + source-map-support: 0.5.21 + throat: 6.0.2 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + dev: true + + /jest-runner@29.3.0: resolution: { integrity: sha512-E/ROzAVj7gy44FvIe+Tbz0xGWG1sa8WLkhUg/hsXHewPC0Z48kqWySdfYRtXkB7RmMn4OcWE+hIBfsRAMVV+sQ==, @@ -14877,7 +14884,40 @@ packages: transitivePeerDependencies: - supports-color - /jest-runtime/29.3.0: + /jest-runtime@27.5.1(supports-color@8.1.1): + 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(supports-color@8.1.1) + "@jest/types": 27.5.1 + chalk: 4.1.2 + cjs-module-lexer: 1.2.2 + collect-v8-coverage: 1.0.1 + execa: 5.1.1 + glob: 7.2.0 + graceful-fs: 4.2.10 + jest-haste-map: 27.5.1 + jest-message-util: 27.5.1 + jest-mock: 27.5.1 + jest-regex-util: 27.5.1 + jest-resolve: 27.5.1 + jest-snapshot: 27.5.1(supports-color@8.1.1) + jest-util: 27.5.1 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-runtime@29.3.0: resolution: { integrity: sha512-ufgX/hbpa7MLnjWRW82T5mVF73FBk3W38dGCLPXWtYZ5Zr1ZFh8QnaAtITKJt0p3kGXR8ZqlIjadSiBTk/QJ/A==, @@ -14909,25 +14949,69 @@ packages: transitivePeerDependencies: - supports-color - /jest-snapshot/29.3.0: + /jest-serializer@27.5.1: + resolution: + { + integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + "@types/node": 18.11.9 + graceful-fs: 4.2.10 + dev: true + + /jest-snapshot@27.5.1(supports-color@8.1.1): + 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.12.10(supports-color@8.1.1) + "@babel/generator": 7.20.4 + "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.12.10) + "@babel/traverse": 7.20.1(supports-color@8.1.1) + "@babel/types": 7.12.10 + "@jest/transform": 27.5.1(supports-color@8.1.1) + "@jest/types": 27.5.1 + "@types/babel__traverse": 7.17.1 + "@types/prettier": 2.4.4 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.10) + chalk: 4.1.2 + expect: 27.5.1 + graceful-fs: 4.2.10 + jest-diff: 27.5.1 + jest-get-type: 27.5.1 + jest-haste-map: 27.5.1 + jest-matcher-utils: 27.5.1 + jest-message-util: 27.5.1 + jest-util: 27.5.1 + natural-compare: 1.4.0 + pretty-format: 27.5.1 + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-snapshot@29.3.0: resolution: { integrity: sha512-+4mX3T8XI3ABbZFzBd/AM74mfwOb6gMpYVFNTc0Cgg2F2fGYvHii8D6jWWka99a3wyNFmni3ov8meEVTF8n13Q==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/core": 7.20.2 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/generator": 7.18.2 - "@babel/plugin-syntax-jsx": 7.17.12_@babel+core@7.20.2 - "@babel/plugin-syntax-typescript": 7.17.12_@babel+core@7.20.2 - "@babel/traverse": 7.18.2 + "@babel/plugin-syntax-jsx": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.20.2) + "@babel/traverse": 7.18.2(supports-color@8.1.1) "@babel/types": 7.18.4 "@jest/expect-utils": 29.2.2 "@jest/transform": 29.3.0 "@jest/types": 29.2.1 "@types/babel__traverse": 7.17.1 "@types/prettier": 2.6.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.2 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.2) chalk: 4.1.2 expect: 29.3.0 graceful-fs: 4.2.10 @@ -14943,7 +15027,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-util/27.5.1: + /jest-util@27.5.1: resolution: { integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==, @@ -14958,7 +15042,7 @@ packages: picomatch: 2.3.1 dev: true - /jest-util/29.2.1: + /jest-util@29.2.1: resolution: { integrity: sha512-P5VWDj25r7kj7kl4pN2rG/RN2c1TLfYYYZYULnS/35nFDjBai+hBeo3MDrYZS7p6IoY3YHZnt2vq4L6mKnLk0g==, @@ -14968,11 +15052,26 @@ packages: "@jest/types": 29.2.1 "@types/node": 18.11.9 chalk: 4.1.2 - ci-info: 3.5.0 - graceful-fs: 4.2.10 - picomatch: 2.3.1 + ci-info: 3.5.0 + graceful-fs: 4.2.10 + picomatch: 2.3.1 + + /jest-validate@27.5.1: + 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 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 27.5.1 + leven: 3.1.0 + pretty-format: 27.5.1 + dev: true - /jest-validate/29.2.2: + /jest-validate@29.2.2: resolution: { integrity: sha512-eJXATaKaSnOuxNfs8CLHgdABFgUrd0TtWS8QckiJ4L/QVDF4KVbZFBBOwCBZHOS0Rc5fOxqngXeGXE3nGQkpQA==, @@ -14986,7 +15085,23 @@ packages: leven: 3.1.0 pretty-format: 29.2.1 - /jest-watcher/29.2.2: + /jest-watcher@27.5.1: + 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.11.9 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + jest-util: 27.5.1 + string-length: 4.0.2 + dev: true + + /jest-watcher@29.2.2: resolution: { integrity: sha512-j2otfqh7mOvMgN2WlJ0n7gIx9XCMWntheYGlBK7+5g3b1Su13/UAK7pdKGyd4kDlrLwtH2QPvRv5oNIxWvsJ1w==, @@ -15002,7 +15117,19 @@ packages: jest-util: 29.2.1 string-length: 4.0.2 - /jest-worker/29.3.0: + /jest-worker@27.5.1: + resolution: + { + integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, + } + engines: {node: ">= 10.13.0"} + dependencies: + "@types/node": 18.11.9 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: true + + /jest-worker@29.3.0: resolution: { integrity: sha512-rP8LYClB5NCWW0p8GdQT9vRmZNrDmjypklEYZuGCIU5iNviVWCZK5MILS3rQwD0FY1u96bY7b+KoU17DdZy6Ww==, @@ -15014,12 +15141,12 @@ packages: merge-stream: 2.0.0 supports-color: 8.1.1 - /jest/29.3.0_odkjkoia5xunhxkdrka32ib6vi: + /jest@27.5.1(supports-color@8.1.1): resolution: { - integrity: sha512-lWmHtOcJSjR6FYRw+4oo7456QUe6LN73Lw6HLwOWKTPLcyQF60cMh0EoIHi67dV74SY5tw/kL+jYC+Ji43ScUg==, + integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==, } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -15027,17 +15154,18 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 29.3.0_ts-node@10.9.1 - "@jest/types": 29.2.1 + "@jest/core": 27.5.1(supports-color@8.1.1) import-local: 3.1.0 - jest-cli: 29.3.0_odkjkoia5xunhxkdrka32ib6vi + jest-cli: 27.5.1(supports-color@8.1.1) transitivePeerDependencies: - - "@types/node" + - bufferutil + - canvas - supports-color - ts-node + - utf-8-validate dev: true - /jest/29.3.0_ts-node@10.9.1: + /jest@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): resolution: { integrity: sha512-lWmHtOcJSjR6FYRw+4oo7456QUe6LN73Lw6HLwOWKTPLcyQF60cMh0EoIHi67dV74SY5tw/kL+jYC+Ji43ScUg==, @@ -15050,17 +15178,16 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 29.3.0_ts-node@10.9.1 + "@jest/core": 29.3.0(ts-node@10.9.1) "@jest/types": 29.2.1 import-local: 3.1.0 - jest-cli: 29.3.0_ts-node@10.9.1 + jest-cli: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) transitivePeerDependencies: - "@types/node" - supports-color - ts-node - dev: false - /jiti/1.14.0: + /jiti@1.14.0: resolution: { integrity: sha512-4IwstlaKQc9vCTC+qUXLM1hajy2ImiL9KnLvVYiaHOtS/v3wRjhLlGl121AmgDgx/O43uKmxownJghS5XMya2A==, @@ -15068,7 +15195,7 @@ packages: hasBin: true dev: true - /joi/17.6.0: + /joi@17.6.0: resolution: { integrity: sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==, @@ -15081,13 +15208,13 @@ packages: "@sideway/pinpoint": 2.0.0 dev: false - /jose/4.11.2: + /jose@4.11.2: resolution: { integrity: sha512-njj0VL2TsIxCtgzhO+9RRobBvws4oYyCM8TpvoUQwl/MbIM3NFJRR9+e6x0sS5xXaP1t6OCBkaBME98OV9zU5A==, } - /joycon/3.1.1: + /joycon@3.1.1: resolution: { integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==, @@ -15095,26 +15222,26 @@ packages: engines: {node: ">=10"} dev: true - /js-sdsl/4.1.5: + /js-sdsl@4.1.5: resolution: { integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==, } - /js-stringify/1.0.2: + /js-stringify@1.0.2: resolution: { integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==, } dev: true - /js-tokens/4.0.0: + /js-tokens@4.0.0: resolution: { integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, } - /js-yaml/3.14.1: + /js-yaml@3.14.1: resolution: { integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, @@ -15124,7 +15251,7 @@ packages: argparse: 1.0.10 esprima: 4.0.1 - /js-yaml/4.1.0: + /js-yaml@4.1.0: resolution: { integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, @@ -15133,72 +15260,7 @@ packages: dependencies: argparse: 2.0.1 - /jscodeshift/0.13.0: - resolution: - { - integrity: sha512-FNHLuwh7TeI0F4EzNVIRwUSxSqsGWM5nTv596FK4NfBnEEKFpIcyFeG559DMFGHSTIYA5AY4Fqh2cBrJx0EAwg==, - } - hasBin: true - peerDependencies: - "@babel/preset-env": ^7.1.6 - dependencies: - "@babel/core": 7.18.2 - "@babel/parser": 7.18.4 - "@babel/plugin-proposal-class-properties": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-proposal-optional-chaining": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-transform-modules-commonjs": 7.18.2_@babel+core@7.18.2 - "@babel/preset-flow": 7.17.12_@babel+core@7.18.2 - "@babel/preset-typescript": 7.17.12_@babel+core@7.18.2 - "@babel/register": 7.17.7_@babel+core@7.18.2 - babel-core: 7.0.0-bridge.0_@babel+core@7.18.2 - colors: 1.4.0 - flow-parser: 0.179.0 - graceful-fs: 4.2.10 - micromatch: 3.1.10 - neo-async: 2.6.2 - node-dir: 0.1.17 - recast: 0.20.5 - temp: 0.8.4 - write-file-atomic: 2.4.3 - transitivePeerDependencies: - - supports-color - dev: false - - /jscodeshift/0.13.0_@babel+preset-env@7.12.10: - resolution: - { - integrity: sha512-FNHLuwh7TeI0F4EzNVIRwUSxSqsGWM5nTv596FK4NfBnEEKFpIcyFeG559DMFGHSTIYA5AY4Fqh2cBrJx0EAwg==, - } - hasBin: true - peerDependencies: - "@babel/preset-env": ^7.1.6 - dependencies: - "@babel/core": 7.18.2 - "@babel/parser": 7.18.4 - "@babel/plugin-proposal-class-properties": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-proposal-optional-chaining": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-transform-modules-commonjs": 7.18.2_@babel+core@7.18.2 - "@babel/preset-env": 7.12.10_@babel+core@7.12.10 - "@babel/preset-flow": 7.17.12_@babel+core@7.18.2 - "@babel/preset-typescript": 7.17.12_@babel+core@7.18.2 - "@babel/register": 7.17.7_@babel+core@7.18.2 - babel-core: 7.0.0-bridge.0_@babel+core@7.18.2 - colors: 1.4.0 - flow-parser: 0.179.0 - graceful-fs: 4.2.10 - micromatch: 3.1.10 - neo-async: 2.6.2 - node-dir: 0.1.17 - recast: 0.20.5 - temp: 0.8.4 - write-file-atomic: 2.4.3 - transitivePeerDependencies: - - supports-color - dev: false - - /jscodeshift/0.13.0_slgjdbbopna4ebnpdn2nkn3v2a: + /jscodeshift@0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-FNHLuwh7TeI0F4EzNVIRwUSxSqsGWM5nTv596FK4NfBnEEKFpIcyFeG559DMFGHSTIYA5AY4Fqh2cBrJx0EAwg==, @@ -15207,21 +15269,21 @@ packages: peerDependencies: "@babel/preset-env": ^7.1.6 dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/parser": 7.18.4 - "@babel/plugin-proposal-class-properties": 7.17.12_aiglbhfglusiuujjiuminyg6ui - "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-proposal-optional-chaining": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-transform-modules-commonjs": 7.18.2_aiglbhfglusiuujjiuminyg6ui - "@babel/preset-env": 7.12.10_ps3yxa7qdojvlda5ukda3zlwie - "@babel/preset-flow": 7.17.12_@babel+core@7.18.2 - "@babel/preset-typescript": 7.17.12_aiglbhfglusiuujjiuminyg6ui - "@babel/register": 7.17.7_@babel+core@7.18.2 - babel-core: 7.0.0-bridge.0_@babel+core@7.18.2 + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.18.2)(supports-color@8.1.1) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.18.2)(supports-color@8.1.1) + "@babel/preset-env": 7.12.10(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/preset-flow": 7.17.12(@babel/core@7.18.2) + "@babel/preset-typescript": 7.17.12(@babel/core@7.18.2)(supports-color@8.1.1) + "@babel/register": 7.17.7(@babel/core@7.18.2) + babel-core: 7.0.0-bridge.0(@babel/core@7.18.2) colors: 1.4.0 flow-parser: 0.179.0 graceful-fs: 4.2.10 - micromatch: 3.1.10_supports-color@8.1.1 + micromatch: 3.1.10(supports-color@8.1.1) neo-async: 2.6.2 node-dir: 0.1.17 recast: 0.20.5 @@ -15231,39 +15293,52 @@ packages: - supports-color dev: false - /jscodeshift/0.13.0_supports-color@8.1.1: + /jsdom@16.7.0(supports-color@8.1.1): resolution: { - integrity: sha512-FNHLuwh7TeI0F4EzNVIRwUSxSqsGWM5nTv596FK4NfBnEEKFpIcyFeG559DMFGHSTIYA5AY4Fqh2cBrJx0EAwg==, + integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==, } - hasBin: true + engines: {node: ">=10"} peerDependencies: - "@babel/preset-env": ^7.1.6 + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true dependencies: - "@babel/core": 7.18.2_supports-color@8.1.1 - "@babel/parser": 7.18.4 - "@babel/plugin-proposal-class-properties": 7.17.12_aiglbhfglusiuujjiuminyg6ui - "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-proposal-optional-chaining": 7.17.12_@babel+core@7.18.2 - "@babel/plugin-transform-modules-commonjs": 7.18.2_aiglbhfglusiuujjiuminyg6ui - "@babel/preset-flow": 7.17.12_@babel+core@7.18.2 - "@babel/preset-typescript": 7.17.12_aiglbhfglusiuujjiuminyg6ui - "@babel/register": 7.17.7_@babel+core@7.18.2 - babel-core: 7.0.0-bridge.0_@babel+core@7.18.2 - colors: 1.4.0 - flow-parser: 0.179.0 - graceful-fs: 4.2.10 - micromatch: 3.1.10_supports-color@8.1.1 - neo-async: 2.6.2 - node-dir: 0.1.17 - recast: 0.20.5 - temp: 0.8.4 - write-file-atomic: 2.4.3 + abab: 2.0.6 + acorn: 8.8.1 + acorn-globals: 6.0.0 + cssom: 0.4.4 + cssstyle: 2.3.0 + data-urls: 2.0.0 + decimal.js: 10.4.2 + domexception: 2.0.1 + escodegen: 2.0.0 + form-data: 3.0.1 + html-encoding-sniffer: 2.0.1 + http-proxy-agent: 4.0.1(supports-color@8.1.1) + https-proxy-agent: 5.0.1(supports-color@8.1.1) + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.2 + parse5: 6.0.1 + saxes: 5.0.1 + symbol-tree: 3.2.4 + tough-cookie: 4.1.2 + w3c-hr-time: 1.0.2 + w3c-xmlserializer: 2.0.0 + webidl-conversions: 6.1.0 + whatwg-encoding: 1.0.5 + whatwg-mimetype: 2.3.0 + whatwg-url: 8.7.0 + ws: 7.5.8 + xml-name-validator: 3.0.0 transitivePeerDependencies: + - bufferutil - supports-color - dev: false + - utf-8-validate + dev: true - /jsdom/19.0.0: + /jsdom@19.0.0: resolution: { integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==, @@ -15287,7 +15362,7 @@ packages: form-data: 4.0.0 html-encoding-sniffer: 3.0.0 http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 + https-proxy-agent: 5.0.1(supports-color@8.1.1) is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.0 parse5: 6.0.1 @@ -15307,7 +15382,7 @@ packages: - supports-color - utf-8-validate - /jsdom/20.0.3: + /jsdom@20.0.3: resolution: { integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==, @@ -15331,7 +15406,7 @@ packages: form-data: 4.0.0 html-encoding-sniffer: 3.0.0 http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 + https-proxy-agent: 5.0.1(supports-color@8.1.1) is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.2 parse5: 7.1.1 @@ -15350,14 +15425,14 @@ packages: - supports-color - utf-8-validate - /jsesc/0.5.0: + /jsesc@0.5.0: resolution: { integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, } hasBin: true - /jsesc/2.5.2: + /jsesc@2.5.2: resolution: { integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, @@ -15365,46 +15440,46 @@ packages: engines: {node: ">=4"} hasBin: true - /json-buffer/3.0.0: + /json-buffer@3.0.0: resolution: { integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==, } dev: false - /json-buffer/3.0.1: + /json-buffer@3.0.1: resolution: { integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, } dev: false - /json-parse-even-better-errors/2.3.1: + /json-parse-even-better-errors@2.3.1: resolution: { integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, } - /json-schema-traverse/0.4.1: + /json-schema-traverse@0.4.1: resolution: { integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, } - /json-stable-stringify-without-jsonify/1.0.1: + /json-stable-stringify-without-jsonify@1.0.1: resolution: { integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, } - /json-stringify-safe/5.0.1: + /json-stringify-safe@5.0.1: resolution: { integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==, } dev: false - /json5/1.0.1: + /json5@1.0.1: resolution: { integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==, @@ -15413,7 +15488,7 @@ packages: dependencies: minimist: 1.2.6 - /json5/2.2.1: + /json5@2.2.1: resolution: { integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==, @@ -15421,14 +15496,14 @@ packages: engines: {node: ">=6"} hasBin: true - /jsonc-parser/3.0.0: + /jsonc-parser@3.0.0: resolution: { integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==, } dev: true - /jsonfile/4.0.0: + /jsonfile@4.0.0: resolution: { integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, @@ -15437,7 +15512,7 @@ packages: graceful-fs: 4.2.10 dev: false - /jsonfile/6.1.0: + /jsonfile@6.1.0: resolution: { integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, @@ -15447,7 +15522,7 @@ packages: optionalDependencies: graceful-fs: 4.2.10 - /jsonwebtoken/9.0.0: + /jsonwebtoken@9.0.0: resolution: { integrity: sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==, @@ -15460,14 +15535,14 @@ packages: semver: 7.3.8 dev: false - /jstransformer/1.0.0: + /jstransformer@1.0.0: resolution: {integrity: sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=} dependencies: is-promise: 2.2.2 promise: 7.3.1 dev: true - /jsx-ast-utils/3.3.0: + /jsx-ast-utils@3.3.0: resolution: { integrity: sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==, @@ -15477,7 +15552,7 @@ packages: array-includes: 3.1.5 object.assign: 4.1.2 - /jszip/3.10.0: + /jszip@3.10.0: resolution: { integrity: sha512-LDfVtOLtOxb9RXkYOwPyNBTQDL4eUbqahtoY6x07GiDJHwSYvn8sHHIw8wINImV3MqbMNve2gSuM1DDqEKk09Q==, @@ -15489,7 +15564,7 @@ packages: setimmediate: 1.0.5 dev: true - /jwa/1.4.1: + /jwa@1.4.1: resolution: { integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==, @@ -15500,7 +15575,7 @@ packages: safe-buffer: 5.2.1 dev: false - /jws/3.2.2: + /jws@3.2.2: resolution: { integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==, @@ -15510,7 +15585,7 @@ packages: safe-buffer: 5.2.1 dev: false - /keygrip/1.1.0: + /keygrip@1.1.0: resolution: { integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==, @@ -15520,7 +15595,7 @@ packages: tsscmp: 1.0.6 dev: false - /keyv/3.1.0: + /keyv@3.1.0: resolution: { integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==, @@ -15529,7 +15604,7 @@ packages: json-buffer: 3.0.0 dev: false - /keyv/4.3.0: + /keyv@4.3.0: resolution: { integrity: sha512-C30Un9+63J0CsR7Wka5quXKqYZsT6dcRQ2aOwGcSc3RiQ4HGWpTAHlCA+puNfw2jA/s11EsxA1nCXgZRuRKMQQ==, @@ -15539,7 +15614,7 @@ packages: json-buffer: 3.0.1 dev: false - /kind-of/3.2.2: + /kind-of@3.2.2: resolution: { integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==, @@ -15549,7 +15624,7 @@ packages: is-buffer: 1.1.6 dev: false - /kind-of/4.0.0: + /kind-of@4.0.0: resolution: { integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==, @@ -15559,7 +15634,7 @@ packages: is-buffer: 1.1.6 dev: false - /kind-of/5.1.0: + /kind-of@5.1.0: resolution: { integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==, @@ -15567,7 +15642,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /kind-of/6.0.3: + /kind-of@6.0.3: resolution: { integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, @@ -15575,20 +15650,20 @@ packages: engines: {node: ">=0.10.0"} dev: false - /kleur/3.0.3: + /kleur@3.0.3: resolution: { integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, } engines: {node: ">=6"} - /language-subtag-registry/0.3.21: + /language-subtag-registry@0.3.21: resolution: { integrity: sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==, } - /language-tags/1.0.5: + /language-tags@1.0.5: resolution: { integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==, @@ -15596,14 +15671,14 @@ packages: dependencies: language-subtag-registry: 0.3.21 - /leven/3.1.0: + /leven@3.1.0: resolution: { integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, } engines: {node: ">=6"} - /levn/0.3.0: + /levn@0.3.0: resolution: { integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==, @@ -15613,7 +15688,7 @@ packages: prelude-ls: 1.1.2 type-check: 0.3.2 - /levn/0.4.1: + /levn@0.4.1: resolution: { integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, @@ -15623,14 +15698,14 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 - /libbase64/1.2.1: + /libbase64@1.2.1: resolution: { integrity: sha512-l+nePcPbIG1fNlqMzrh68MLkX/gTxk/+vdvAb388Ssi7UuUN31MI44w4Yf33mM3Cm4xDfw48mdf3rkdHszLNew==, } dev: true - /libmime/5.1.0: + /libmime@5.1.0: resolution: { integrity: sha512-xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA==, @@ -15642,11 +15717,11 @@ packages: libqp: 1.1.0 dev: true - /libqp/1.1.0: + /libqp@1.1.0: resolution: {integrity: sha1-9ebgatdLeU+1tbZpiL9yjvHe2+g=} dev: true - /lie/3.3.0: + /lie@3.3.0: resolution: { integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==, @@ -15655,20 +15730,20 @@ packages: immediate: 3.0.6 dev: true - /lilconfig/2.0.5: + /lilconfig@2.0.5: resolution: { integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==, } engines: {node: ">=10"} - /lines-and-columns/1.2.4: + /lines-and-columns@1.2.4: resolution: { integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, } - /linkify-it/4.0.0: + /linkify-it@4.0.0: resolution: { integrity: sha512-QAxkXyzT/TXgwGyY4rTgC95Ex6/lZ5/lYTV9nug6eJt93BCBQGOE47D/g2+/m5J1MrVLr2ot97OXkBZ9bBpR4A==, @@ -15677,7 +15752,7 @@ packages: uc.micro: 1.0.6 dev: true - /lint-staged/13.0.3: + /lint-staged@13.0.3: resolution: { integrity: sha512-9hmrwSCFroTSYLjflGI8Uk+GWAwMB4OlpU4bMJEAT5d/llQwtYKoim4bLOyLCuWFAhWEupE0vkIFqtw/WIsPug==, @@ -15688,7 +15763,7 @@ packages: cli-truncate: 3.1.0 colorette: 2.0.17 commander: 9.4.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) execa: 6.1.0 lilconfig: 2.0.5 listr2: 4.0.5 @@ -15702,7 +15777,7 @@ packages: - enquirer - supports-color - /listr2/4.0.5: + /listr2@4.0.5: resolution: { integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==, @@ -15723,7 +15798,7 @@ packages: through: 2.3.8 wrap-ansi: 7.0.0 - /load-yaml-file/0.2.0: + /load-yaml-file@0.2.0: resolution: { integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==, @@ -15736,14 +15811,14 @@ packages: strip-bom: 3.0.0 dev: false - /local-pkg/0.4.2: + /local-pkg@0.4.2: resolution: { integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==, } engines: {node: ">=14"} - /locate-path/2.0.0: + /locate-path@2.0.0: resolution: { integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==, @@ -15753,7 +15828,7 @@ packages: p-locate: 2.0.0 path-exists: 3.0.0 - /locate-path/3.0.0: + /locate-path@3.0.0: resolution: { integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, @@ -15764,7 +15839,7 @@ packages: path-exists: 3.0.0 dev: false - /locate-path/5.0.0: + /locate-path@5.0.0: resolution: { integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, @@ -15773,7 +15848,7 @@ packages: dependencies: p-locate: 4.1.0 - /locate-path/6.0.0: + /locate-path@6.0.0: resolution: { integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, @@ -15782,33 +15857,33 @@ packages: dependencies: p-locate: 5.0.0 - /lodash.memoize/4.1.2: + /lodash.memoize@4.1.2: resolution: { integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==, } dev: true - /lodash.merge/4.6.2: + /lodash.merge@4.6.2: resolution: { integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, } - /lodash.startcase/4.4.0: + /lodash.startcase@4.4.0: resolution: { integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, } dev: false - /lodash/4.17.21: + /lodash@4.17.21: resolution: { integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, } - /log-symbols/4.1.0: + /log-symbols@4.1.0: resolution: { integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, @@ -15819,7 +15894,7 @@ packages: is-unicode-supported: 0.1.0 dev: false - /log-update/4.0.0: + /log-update@4.0.0: resolution: { integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==, @@ -15831,7 +15906,7 @@ packages: slice-ansi: 4.0.0 wrap-ansi: 6.2.0 - /loose-envify/1.4.0: + /loose-envify@1.4.0: resolution: { integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, @@ -15840,7 +15915,7 @@ packages: dependencies: js-tokens: 4.0.0 - /loupe/2.3.4: + /loupe@2.3.4: resolution: { integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==, @@ -15848,7 +15923,7 @@ packages: dependencies: get-func-name: 2.0.0 - /lowdb/3.0.0: + /lowdb@3.0.0: resolution: { integrity: sha512-9KZRulmIcU8fZuWiaM0d5e2/nPnrFyXkeXVpqT+MJS+vgbgOf1EbtvgQmba8HwUFgDl1oeZR6XqEJnkJmQdKmg==, @@ -15858,7 +15933,7 @@ packages: steno: 2.1.0 dev: false - /lowercase-keys/1.0.1: + /lowercase-keys@1.0.1: resolution: { integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==, @@ -15866,7 +15941,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /lowercase-keys/2.0.0: + /lowercase-keys@2.0.0: resolution: { integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==, @@ -15874,7 +15949,7 @@ packages: engines: {node: ">=8"} dev: false - /lru-cache/4.1.5: + /lru-cache@4.1.5: resolution: { integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, @@ -15884,7 +15959,7 @@ packages: yallist: 2.1.2 dev: false - /lru-cache/6.0.0: + /lru-cache@6.0.0: resolution: { integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, @@ -15893,7 +15968,7 @@ packages: dependencies: yallist: 4.0.0 - /lz-string/1.4.4: + /lz-string@1.4.4: resolution: { integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==, @@ -15901,7 +15976,7 @@ packages: hasBin: true dev: true - /macos-release/3.1.0: + /macos-release@3.1.0: resolution: { integrity: sha512-/M/R0gCDgM+Cv1IuBG1XGdfTFnMEG6PZeT+KGWHO/OG+imqmaD9CH5vHBTycEM3+Kc4uG2Il+tFAuUWLqQOeUA==, @@ -15909,7 +15984,7 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: false - /magic-string/0.25.9: + /magic-string@0.25.9: resolution: { integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==, @@ -15918,7 +15993,7 @@ packages: sourcemap-codec: 1.4.8 dev: true - /magic-string/0.26.2: + /magic-string@0.26.2: resolution: { integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==, @@ -15928,7 +16003,7 @@ packages: sourcemap-codec: 1.4.8 dev: true - /magic-string/0.26.7: + /magic-string@0.26.7: resolution: { integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==, @@ -15938,7 +16013,7 @@ packages: sourcemap-codec: 1.4.8 dev: true - /mailparser/3.5.0: + /mailparser@3.5.0: resolution: { integrity: sha512-mdr2DFgz8LKC0/Q6io6znA0HVnzaPFT0a4TTnLeZ7mWHlkfnm227Wxlq7mHh7AgeP32h7gOUpXvyhSfJJIEeyg==, @@ -15955,7 +16030,7 @@ packages: tlds: 1.231.0 dev: true - /mailsplit/5.3.2: + /mailsplit@5.3.2: resolution: { integrity: sha512-coES12hhKqagkuBTJoqERX+y9bXNpxbxw3Esd07auuwKYmcagouVlgucyIVRp48fnswMKxcUtLoFn/L1a75ynQ==, @@ -15966,7 +16041,7 @@ packages: libqp: 1.1.0 dev: true - /make-dir/2.1.0: + /make-dir@2.1.0: resolution: { integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==, @@ -15977,7 +16052,7 @@ packages: semver: 5.7.1 dev: false - /make-dir/3.1.0: + /make-dir@3.1.0: resolution: { integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, @@ -15986,13 +16061,13 @@ packages: dependencies: semver: 6.3.0 - /make-error/1.3.6: + /make-error@1.3.6: resolution: { integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, } - /makeerror/1.0.12: + /makeerror@1.0.12: resolution: { integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, @@ -16000,7 +16075,7 @@ packages: dependencies: tmpl: 1.0.5 - /map-age-cleaner/0.1.3: + /map-age-cleaner@0.1.3: resolution: { integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==, @@ -16010,7 +16085,7 @@ packages: p-defer: 1.0.0 dev: false - /map-cache/0.2.2: + /map-cache@0.2.2: resolution: { integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==, @@ -16018,7 +16093,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /map-obj/1.0.1: + /map-obj@1.0.1: resolution: { integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, @@ -16026,7 +16101,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /map-obj/4.3.0: + /map-obj@4.3.0: resolution: { integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, @@ -16034,7 +16109,7 @@ packages: engines: {node: ">=8"} dev: false - /map-visit/1.0.0: + /map-visit@1.0.0: resolution: { integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==, @@ -16044,7 +16119,7 @@ packages: object-visit: 1.0.1 dev: false - /matcher/3.0.0: + /matcher@3.0.0: resolution: { integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==, @@ -16054,12 +16129,12 @@ packages: escape-string-regexp: 4.0.0 dev: false - /media-typer/0.3.0: + /media-typer@0.3.0: resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} engines: {node: ">= 0.6"} dev: true - /mem-fs-editor/8.0.0: + /mem-fs-editor@8.0.0: resolution: { integrity: sha512-0+6Zp44EmPpF01MZOlY0kt7JTndjdvALo4jA7Kk9GPCuqGzGnBmWtcE44Cwzj1aru57IN5/LKIWd1lIvaT6sKw==, @@ -16077,7 +16152,7 @@ packages: vinyl: 2.2.1 dev: false - /mem-fs/1.2.0: + /mem-fs@1.2.0: resolution: { integrity: sha512-b8g0jWKdl8pM0LqAPdK9i8ERL7nYrzmJfRhxMiWH2uYdfYnb7uXnmwVb0ZGe7xyEl4lj+nLIU3yf4zPUT+XsVQ==, @@ -16088,7 +16163,7 @@ packages: vinyl-file: 3.0.0 dev: false - /mem/4.3.0: + /mem@4.3.0: resolution: { integrity: sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==, @@ -16100,7 +16175,7 @@ packages: p-is-promise: 2.1.0 dev: false - /meow/6.1.1: + /meow@6.1.1: resolution: { integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==, @@ -16120,63 +16195,39 @@ packages: yargs-parser: 18.1.3 dev: false - /merge-descriptors/1.0.1: + /merge-descriptors@1.0.1: resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=} dev: true - /merge-stream/2.0.0: + /merge-stream@2.0.0: resolution: { integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, } - /merge/1.2.1: - resolution: - { - integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==, - } - dev: true - - /merge2/1.4.1: + /merge2@1.4.1: resolution: { integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, } engines: {node: ">= 8"} - /methods/1.1.2: + /merge@1.2.1: resolution: { - integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, + integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==, } - engines: {node: ">= 0.6"} dev: true - /micromatch/3.1.10: + /methods@1.1.2: resolution: { - integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==, + integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, } - engines: {node: ">=0.10.0"} - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - braces: 2.3.2 - define-property: 2.0.2 - extend-shallow: 3.0.2 - extglob: 2.0.4 - fragment-cache: 0.2.1 - kind-of: 6.0.3 - nanomatch: 1.2.13 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: false + engines: {node: ">= 0.6"} + dev: true - /micromatch/3.1.10_supports-color@8.1.1: + /micromatch@3.1.10(supports-color@8.1.1): resolution: { integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==, @@ -16185,22 +16236,22 @@ packages: dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 - braces: 2.3.2_supports-color@8.1.1 + braces: 2.3.2(supports-color@8.1.1) define-property: 2.0.2 extend-shallow: 3.0.2 - extglob: 2.0.4_supports-color@8.1.1 + extglob: 2.0.4(supports-color@8.1.1) fragment-cache: 0.2.1 kind-of: 6.0.3 - nanomatch: 1.2.13_supports-color@8.1.1 + nanomatch: 1.2.13(supports-color@8.1.1) object.pick: 1.3.0 regex-not: 1.0.2 - snapdragon: 0.8.2_supports-color@8.1.1 + snapdragon: 0.8.2(supports-color@8.1.1) to-regex: 3.0.2 transitivePeerDependencies: - supports-color dev: false - /micromatch/4.0.5: + /micromatch@4.0.5: resolution: { integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, @@ -16210,14 +16261,14 @@ packages: braces: 3.0.2 picomatch: 2.3.1 - /mime-db/1.52.0: + /mime-db@1.52.0: resolution: { integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, } engines: {node: ">= 0.6"} - /mime-types/2.1.35: + /mime-types@2.1.35: resolution: { integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, @@ -16226,7 +16277,7 @@ packages: dependencies: mime-db: 1.52.0 - /mime/1.6.0: + /mime@1.6.0: resolution: { integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, @@ -16235,21 +16286,21 @@ packages: hasBin: true dev: true - /mimic-fn/2.1.0: + /mimic-fn@2.1.0: resolution: { integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, } engines: {node: ">=6"} - /mimic-fn/4.0.0: + /mimic-fn@4.0.0: resolution: { integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, } engines: {node: ">=12"} - /mimic-response/1.0.1: + /mimic-response@1.0.1: resolution: { integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==, @@ -16257,7 +16308,7 @@ packages: engines: {node: ">=4"} dev: false - /mimic-response/3.1.0: + /mimic-response@3.1.0: resolution: { integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==, @@ -16265,14 +16316,14 @@ packages: engines: {node: ">=10"} dev: false - /min-indent/1.0.1: + /min-indent@1.0.1: resolution: { integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, } engines: {node: ">=4"} - /minimatch/3.1.2: + /minimatch@3.1.2: resolution: { integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, @@ -16280,7 +16331,7 @@ packages: dependencies: brace-expansion: 1.1.11 - /minimatch/5.1.0: + /minimatch@5.1.0: resolution: { integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==, @@ -16290,7 +16341,7 @@ packages: brace-expansion: 2.0.1 dev: false - /minimist-options/4.1.0: + /minimist-options@4.1.0: resolution: { integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, @@ -16302,13 +16353,13 @@ packages: kind-of: 6.0.3 dev: false - /minimist/1.2.6: + /minimist@1.2.6: resolution: { integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==, } - /minipass/3.3.4: + /minipass@3.3.4: resolution: { integrity: sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==, @@ -16318,7 +16369,7 @@ packages: yallist: 4.0.0 dev: false - /minizlib/2.1.2: + /minizlib@2.1.2: resolution: { integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==, @@ -16329,7 +16380,7 @@ packages: yallist: 4.0.0 dev: false - /mixin-deep/1.3.2: + /mixin-deep@1.3.2: resolution: { integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==, @@ -16340,7 +16391,7 @@ packages: is-extendable: 1.0.1 dev: false - /mixme/0.5.4: + /mixme@0.5.4: resolution: { integrity: sha512-3KYa4m4Vlqx98GPdOHghxSdNtTvcP8E0kkaJ5Dlh+h2DRzF7zpuVVcA8B0QpKd11YJeP9QQ7ASkKzOeu195Wzw==, @@ -16348,7 +16399,7 @@ packages: engines: {node: ">= 8.0.0"} dev: false - /mkdirp/1.0.4: + /mkdirp@1.0.4: resolution: { integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==, @@ -16356,7 +16407,7 @@ packages: engines: {node: ">=10"} hasBin: true - /mkdist/0.3.13_typescript@4.8.4: + /mkdist@0.3.13(typescript@4.8.4): resolution: { integrity: sha512-+eCPpkr8l2X630y5PIlkts2tzYEsb+aGIgXdrQv9ZGtWE2bLlD6kVIFfI6FJwFpjjw4dPPyorxQc6Uhm/oXlvg==, @@ -16378,14 +16429,14 @@ packages: typescript: 4.8.4 dev: true - /mlly/0.4.3: + /mlly@0.4.3: resolution: { integrity: sha512-xezyv7hnfFPuiDS3AiJuWs0OxlvooS++3L2lURvmh/1n7UG4O2Ehz9UkwWgg3wyLEPKGVfJLlr2DjjTCl9UJTg==, } dev: true - /mlly/0.5.5: + /mlly@0.5.5: resolution: { integrity: sha512-2R4JT/SxRDPexomw4rmHYY/gWAGmL9Kkq1OR76Ua6w+P340a1aBDTWzKo2kAlxzrG82OdXs5VB9Lmcmyit0Obg==, @@ -16395,21 +16446,21 @@ packages: pkg-types: 0.3.3 dev: true - /moo/0.5.1: + /moo@0.5.1: resolution: { integrity: sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==, } dev: true - /mri/1.2.0: + /mri@1.2.0: resolution: { integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, } engines: {node: ">=4"} - /mrmime/1.0.1: + /mrmime@1.0.1: resolution: { integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==, @@ -16417,25 +16468,25 @@ packages: engines: {node: ">=10"} dev: true - /ms/2.0.0: + /ms@2.0.0: resolution: { integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, } - /ms/2.1.2: + /ms@2.1.2: resolution: { integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, } - /ms/2.1.3: + /ms@2.1.3: resolution: { integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, } - /multimatch/4.0.0: + /multimatch@4.0.0: resolution: { integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==, @@ -16448,7 +16499,7 @@ packages: arrify: 2.0.1 minimatch: 3.1.2 - /multimatch/5.0.0: + /multimatch@5.0.0: resolution: { integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==, @@ -16462,7 +16513,7 @@ packages: minimatch: 3.1.2 dev: false - /mz/2.7.0: + /mz@2.7.0: resolution: { integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==, @@ -16473,13 +16524,13 @@ packages: thenify-all: 1.6.0 dev: true - /nanoassert/1.1.0: + /nanoassert@1.1.0: resolution: { integrity: sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ==, } - /nanoid/3.2.0: + /nanoid@3.2.0: resolution: { integrity: sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==, @@ -16488,7 +16539,7 @@ packages: hasBin: true dev: false - /nanoid/3.3.4: + /nanoid@3.3.4: resolution: { integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==, @@ -16496,29 +16547,7 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - /nanomatch/1.2.13: - resolution: - { - integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==, - } - engines: {node: ">=0.10.0"} - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - define-property: 2.0.2 - extend-shallow: 3.0.2 - fragment-cache: 0.2.1 - is-windows: 1.0.2 - kind-of: 6.0.3 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - - /nanomatch/1.2.13_supports-color@8.1.1: + /nanomatch@1.2.13(supports-color@8.1.1): resolution: { integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==, @@ -16534,25 +16563,25 @@ packages: kind-of: 6.0.3 object.pick: 1.3.0 regex-not: 1.0.2 - snapdragon: 0.8.2_supports-color@8.1.1 + snapdragon: 0.8.2(supports-color@8.1.1) to-regex: 3.0.2 transitivePeerDependencies: - supports-color dev: false - /natural-compare-lite/1.4.0: + /natural-compare-lite@1.4.0: resolution: { integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==, } - /natural-compare/1.4.0: + /natural-compare@1.4.0: resolution: { integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, } - /nearley/2.20.1: + /nearley@2.20.1: resolution: { integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==, @@ -16565,7 +16594,7 @@ packages: randexp: 0.4.6 dev: true - /negotiator/0.6.3: + /negotiator@0.6.3: resolution: { integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==, @@ -16573,14 +16602,14 @@ packages: engines: {node: ">= 0.6"} dev: true - /neo-async/2.6.2: + /neo-async@2.6.2: resolution: { integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, } dev: false - /next-auth/4.18.7_yucv4tfv7v7nrkw2uguegj6e7e: + /next-auth@4.18.7(next@13.3.0)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-kR3s1JVPMaDuSAlFxcGyv7Ec3fdE6za71r1F77IOII5zJmW2wfkIA2xj223fM0D20ip2pzFpHfk/qN4L6l5XMA==, @@ -16599,16 +16628,16 @@ packages: "@panva/hkdf": 1.0.2 cookie: 0.5.0 jose: 4.11.2 - next: 13.3.0_biqbaboplfbrettd7655fr4n2y + next: 13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) oauth: 0.9.15 openid-client: 5.2.1 preact: 10.11.3 - preact-render-to-string: 5.2.6_preact@10.11.3 + preact-render-to-string: 5.2.6(preact@10.11.3) react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) uuid: 8.3.2 - /next-router-mock/0.9.1_next@13.3.0+react@18.2.0: + /next-router-mock@0.9.1(next@13.3.0)(react@18.2.0): resolution: { integrity: sha512-GTrns944dnFNgycpinyRszOiwwk99LUJsvvX0FWRgUFHv6hOuzCns1rmTlzO+DRimYB9/XMA+87X2/dQLzjiUQ==, @@ -16617,11 +16646,57 @@ packages: next: ">=10.0.0" react: ">=17.0.0" dependencies: - next: 13.3.0_biqbaboplfbrettd7655fr4n2y + next: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: true - /next/13.3.0: + /next@13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0): + resolution: + { + integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==, + } + engines: {node: ">=14.6.0"} + hasBin: true + peerDependencies: + "@opentelemetry/api": ^1.1.0 + fibers: ">= 3.1.0" + node-sass: ^6.0.0 || ^7.0.0 + react: ^18.2.0 + react-dom: ^18.2.0 + sass: ^1.3.0 + peerDependenciesMeta: + "@opentelemetry/api": + optional: true + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + dependencies: + "@next/env": 13.3.0 + "@swc/helpers": 0.4.14 + busboy: 1.6.0 + caniuse-lite: 1.0.30001434 + postcss: 8.4.14 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.12.10)(react@18.2.0) + optionalDependencies: + "@next/swc-darwin-arm64": 13.3.0 + "@next/swc-darwin-x64": 13.3.0 + "@next/swc-linux-arm64-gnu": 13.3.0 + "@next/swc-linux-arm64-musl": 13.3.0 + "@next/swc-linux-x64-gnu": 13.3.0 + "@next/swc-linux-x64-musl": 13.3.0 + "@next/swc-win32-arm64-msvc": 13.3.0 + "@next/swc-win32-ia32-msvc": 13.3.0 + "@next/swc-win32-x64-msvc": 13.3.0 + transitivePeerDependencies: + - "@babel/core" + - babel-plugin-macros + + /next@13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==, @@ -16651,9 +16726,8 @@ packages: caniuse-lite: 1.0.30001434 postcss: 8.4.14 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - styled-jsx: 5.1.1 - use-sync-external-store: 1.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.18.2)(react@18.2.0) optionalDependencies: "@next/swc-darwin-arm64": 13.3.0 "@next/swc-darwin-x64": 13.3.0 @@ -16669,7 +16743,7 @@ packages: - babel-plugin-macros dev: false - /next/13.3.0_biqbaboplfbrettd7655fr4n2y: + /next@13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==, @@ -16699,8 +16773,8 @@ packages: caniuse-lite: 1.0.30001434 postcss: 8.4.14 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - styled-jsx: 5.1.1_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.20.2)(react@18.2.0) optionalDependencies: "@next/swc-darwin-arm64": 13.3.0 "@next/swc-darwin-x64": 13.3.0 @@ -16715,13 +16789,13 @@ packages: - "@babel/core" - babel-plugin-macros - /nice-try/1.0.5: + /nice-try@1.0.5: resolution: { integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==, } - /node-dir/0.1.17: + /node-dir@0.1.17: resolution: { integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==, @@ -16731,14 +16805,14 @@ packages: minimatch: 3.1.2 dev: false - /node-domexception/1.0.0: + /node-domexception@1.0.0: resolution: { integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==, } engines: {node: ">=10.5.0"} - /node-fetch/3.2.3: + /node-fetch@3.2.3: resolution: { integrity: sha512-AXP18u4pidSZ1xYXRDPY/8jdv3RAozIt/WLNR/MBGZAz+xjtlr90RvCnsvHQRiXyWliZF/CpytExp32UU67/SA==, @@ -16749,32 +16823,32 @@ packages: fetch-blob: 3.1.5 formdata-polyfill: 4.0.10 - /node-gyp-build/4.4.0: + /node-gyp-build@4.4.0: resolution: { integrity: sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==, } hasBin: true - /node-int64/0.4.0: + /node-int64@0.4.0: resolution: { integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, } - /node-releases/2.0.5: + /node-releases@2.0.5: resolution: { integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==, } - /node-releases/2.0.6: + /node-releases@2.0.6: resolution: { integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==, } - /nodemailer/6.7.3: + /nodemailer@6.7.3: resolution: { integrity: sha512-KUdDsspqx89sD4UUyUKzdlUOper3hRkDVkrKh/89G+d9WKsU5ox51NWS4tB1XR5dPUdR4SP0E3molyEfOvSa3g==, @@ -16782,7 +16856,7 @@ packages: engines: {node: ">=6.0.0"} dev: true - /nodemailer/6.8.0: + /nodemailer@6.8.0: resolution: { integrity: sha512-EjYvSmHzekz6VNkNd12aUqAco+bOkRe3Of5jVhltqKhEsjw/y0PYPJfp83+s9Wzh1dspYAkUW/YNQ350NATbSQ==, @@ -16790,7 +16864,7 @@ packages: engines: {node: ">=6.0.0"} dev: true - /normalize-package-data/2.5.0: + /normalize-package-data@2.5.0: resolution: { integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, @@ -16802,14 +16876,14 @@ packages: validate-npm-package-license: 3.0.4 dev: false - /normalize-path/3.0.0: + /normalize-path@3.0.0: resolution: { integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, } engines: {node: ">=0.10.0"} - /normalize-url/4.5.1: + /normalize-url@4.5.1: resolution: { integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==, @@ -16817,7 +16891,7 @@ packages: engines: {node: ">=8"} dev: false - /normalize-url/6.1.0: + /normalize-url@6.1.0: resolution: { integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==, @@ -16825,7 +16899,7 @@ packages: engines: {node: ">=10"} dev: false - /npm-path/2.0.4: + /npm-path@2.0.4: resolution: { integrity: sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw==, @@ -16836,7 +16910,7 @@ packages: which: 1.3.1 dev: false - /npm-run-path/2.0.2: + /npm-run-path@2.0.2: resolution: { integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==, @@ -16845,7 +16919,7 @@ packages: dependencies: path-key: 2.0.1 - /npm-run-path/4.0.1: + /npm-run-path@4.0.1: resolution: { integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, @@ -16854,7 +16928,7 @@ packages: dependencies: path-key: 3.1.1 - /npm-run-path/5.1.0: + /npm-run-path@5.1.0: resolution: { integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==, @@ -16863,7 +16937,7 @@ packages: dependencies: path-key: 4.0.0 - /npm-which/3.0.1: + /npm-which@3.0.1: resolution: { integrity: sha512-CM8vMpeFQ7MAPin0U3wzDhSGV0hMHNwHU0wjo402IVizPDrs45jSfSuoC+wThevY88LQti8VvaAnqYAeVy3I1A==, @@ -16876,39 +16950,39 @@ packages: which: 1.3.1 dev: false - /nwsapi/2.2.0: + /nwsapi@2.2.0: resolution: { integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==, } - /nwsapi/2.2.2: + /nwsapi@2.2.2: resolution: { integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==, } - /oauth/0.10.0: + /oauth@0.10.0: resolution: { integrity: sha512-1orQ9MT1vHFGQxhuy7E/0gECD3fd2fCC+PIX+/jgmU/gI3EpRocXtmtvxCO5x3WZ443FLTLFWNDjl5MPJf9u+Q==, } dev: false - /oauth/0.9.15: + /oauth@0.9.15: resolution: { integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==, } - /object-assign/4.1.1: + /object-assign@4.1.1: resolution: { integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, } engines: {node: ">=0.10.0"} - /object-copy/0.1.0: + /object-copy@0.1.0: resolution: { integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==, @@ -16920,27 +16994,27 @@ packages: kind-of: 3.2.2 dev: false - /object-hash/2.2.0: + /object-hash@2.2.0: resolution: { integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==, } engines: {node: ">= 6"} - /object-inspect/1.12.2: + /object-inspect@1.12.2: resolution: { integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==, } - /object-keys/1.1.1: + /object-keys@1.1.1: resolution: { integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, } engines: {node: ">= 0.4"} - /object-visit/1.0.1: + /object-visit@1.0.1: resolution: { integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==, @@ -16950,7 +17024,7 @@ packages: isobject: 3.0.1 dev: false - /object.assign/4.1.2: + /object.assign@4.1.2: resolution: { integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==, @@ -16962,7 +17036,7 @@ packages: has-symbols: 1.0.3 object-keys: 1.1.1 - /object.entries/1.1.5: + /object.entries@1.1.5: resolution: { integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==, @@ -16973,7 +17047,7 @@ packages: define-properties: 1.1.4 es-abstract: 1.20.1 - /object.fromentries/2.0.5: + /object.fromentries@2.0.5: resolution: { integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==, @@ -16984,7 +17058,7 @@ packages: define-properties: 1.1.4 es-abstract: 1.20.1 - /object.hasown/1.1.1: + /object.hasown@1.1.1: resolution: { integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==, @@ -16993,7 +17067,7 @@ packages: define-properties: 1.1.4 es-abstract: 1.20.1 - /object.pick/1.3.0: + /object.pick@1.3.0: resolution: { integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==, @@ -17003,7 +17077,7 @@ packages: isobject: 3.0.1 dev: false - /object.values/1.1.5: + /object.values@1.1.5: resolution: { integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==, @@ -17014,14 +17088,14 @@ packages: define-properties: 1.1.4 es-abstract: 1.20.1 - /oidc-token-hash/5.0.1: + /oidc-token-hash@5.0.1: resolution: { integrity: sha512-EvoOtz6FIEBzE+9q253HsLCVRiK/0doEJ2HCvvqMQb3dHZrP3WlJKYtJ55CRTw4jmYomzH4wkPuCj/I3ZvpKxQ==, } engines: {node: ^10.13.0 || >=12.0.0} - /on-finished/2.3.0: + /on-finished@2.3.0: resolution: { integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==, @@ -17031,7 +17105,7 @@ packages: ee-first: 1.1.1 dev: true - /on-headers/1.0.2: + /on-headers@1.0.2: resolution: { integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==, @@ -17039,7 +17113,7 @@ packages: engines: {node: ">= 0.8"} dev: false - /once/1.4.0: + /once@1.4.0: resolution: { integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, @@ -17047,7 +17121,7 @@ packages: dependencies: wrappy: 1.0.2 - /onetime/5.1.2: + /onetime@5.1.2: resolution: { integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, @@ -17056,7 +17130,7 @@ packages: dependencies: mimic-fn: 2.1.0 - /onetime/6.0.0: + /onetime@6.0.0: resolution: { integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, @@ -17065,7 +17139,7 @@ packages: dependencies: mimic-fn: 4.0.0 - /only-allow/1.1.0: + /only-allow@1.1.0: resolution: { integrity: sha512-HYiuMpRuy0d0DjoQZwhwO1Ueal0NXJ2I4mNxLv3aGw/1naRcAAzVC953WNpcbjlo+ak3WsoKDjHvoMd2cSZLpw==, @@ -17076,7 +17150,7 @@ packages: which-pm-runs: 1.1.0 dev: false - /open/7.4.2: + /open@7.4.2: resolution: { integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==, @@ -17087,7 +17161,7 @@ packages: is-wsl: 2.2.0 dev: true - /open/8.4.0: + /open@8.4.0: resolution: { integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==, @@ -17097,9 +17171,8 @@ packages: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - dev: true - /opener/1.5.2: + /opener@1.5.2: resolution: { integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==, @@ -17107,7 +17180,7 @@ packages: hasBin: true dev: true - /openid-client/5.2.1: + /openid-client@5.2.1: resolution: { integrity: sha512-KPxqWnxobG/70Cxqyvd43RWfCfHedFnCdHSBpw5f7WnTnuBAeBnvot/BIo+brrcTr0wyAYUlL/qejQSGwWtdIg==, @@ -17118,7 +17191,7 @@ packages: object-hash: 2.2.0 oidc-token-hash: 5.0.1 - /optionator/0.8.3: + /optionator@0.8.3: resolution: { integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==, @@ -17132,7 +17205,7 @@ packages: type-check: 0.3.2 word-wrap: 1.2.3 - /optionator/0.9.1: + /optionator@0.9.1: resolution: { integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==, @@ -17146,7 +17219,7 @@ packages: type-check: 0.4.0 word-wrap: 1.2.3 - /ora/5.3.0: + /ora@5.3.0: resolution: { integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==, @@ -17163,7 +17236,7 @@ packages: wcwidth: 1.0.1 dev: false - /os-name/5.0.1: + /os-name@5.0.1: resolution: { integrity: sha512-0EQpaHUHq7olp2/YFUr+0vZi9tMpDTblHGz+Ch5RntKxiRXOAY0JOz1UlxhSjMSksHvkm13eD6elJj3M8Ht/kw==, @@ -17174,7 +17247,7 @@ packages: windows-release: 5.0.1 dev: false - /os-tmpdir/1.0.2: + /os-tmpdir@1.0.2: resolution: { integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, @@ -17182,14 +17255,14 @@ packages: engines: {node: ">=0.10.0"} dev: false - /outdent/0.5.0: + /outdent@0.5.0: resolution: { integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, } dev: false - /p-cancelable/1.1.0: + /p-cancelable@1.1.0: resolution: { integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==, @@ -17197,7 +17270,7 @@ packages: engines: {node: ">=6"} dev: false - /p-cancelable/2.1.1: + /p-cancelable@2.1.1: resolution: { integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==, @@ -17205,7 +17278,7 @@ packages: engines: {node: ">=8"} dev: false - /p-defer/1.0.0: + /p-defer@1.0.0: resolution: { integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==, @@ -17213,7 +17286,7 @@ packages: engines: {node: ">=4"} dev: false - /p-event/4.2.0: + /p-event@4.2.0: resolution: { integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==, @@ -17222,7 +17295,7 @@ packages: dependencies: p-timeout: 3.2.0 - /p-filter/2.1.0: + /p-filter@2.1.0: resolution: { integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, @@ -17232,14 +17305,14 @@ packages: p-map: 2.1.0 dev: false - /p-finally/1.0.0: + /p-finally@1.0.0: resolution: { integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==, } engines: {node: ">=4"} - /p-is-promise/2.1.0: + /p-is-promise@2.1.0: resolution: { integrity: sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==, @@ -17247,7 +17320,7 @@ packages: engines: {node: ">=6"} dev: false - /p-limit/1.3.0: + /p-limit@1.3.0: resolution: { integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==, @@ -17256,7 +17329,7 @@ packages: dependencies: p-try: 1.0.0 - /p-limit/2.3.0: + /p-limit@2.3.0: resolution: { integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, @@ -17265,7 +17338,7 @@ packages: dependencies: p-try: 2.2.0 - /p-limit/3.1.0: + /p-limit@3.1.0: resolution: { integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, @@ -17274,7 +17347,7 @@ packages: dependencies: yocto-queue: 0.1.0 - /p-locate/2.0.0: + /p-locate@2.0.0: resolution: { integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==, @@ -17283,7 +17356,7 @@ packages: dependencies: p-limit: 1.3.0 - /p-locate/3.0.0: + /p-locate@3.0.0: resolution: { integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, @@ -17293,7 +17366,7 @@ packages: p-limit: 2.3.0 dev: false - /p-locate/4.1.0: + /p-locate@4.1.0: resolution: { integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, @@ -17302,7 +17375,7 @@ packages: dependencies: p-limit: 2.3.0 - /p-locate/5.0.0: + /p-locate@5.0.0: resolution: { integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, @@ -17311,7 +17384,7 @@ packages: dependencies: p-limit: 3.1.0 - /p-map/2.1.0: + /p-map@2.1.0: resolution: { integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, @@ -17319,7 +17392,7 @@ packages: engines: {node: ">=6"} dev: false - /p-map/4.0.0: + /p-map@4.0.0: resolution: { integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, @@ -17328,7 +17401,7 @@ packages: dependencies: aggregate-error: 3.1.0 - /p-timeout/3.2.0: + /p-timeout@3.2.0: resolution: { integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==, @@ -17337,21 +17410,21 @@ packages: dependencies: p-finally: 1.0.0 - /p-try/1.0.0: + /p-try@1.0.0: resolution: { integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==, } engines: {node: ">=4"} - /p-try/2.2.0: + /p-try@2.2.0: resolution: { integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, } engines: {node: ">=6"} - /p-wait-for/3.2.0: + /p-wait-for@3.2.0: resolution: { integrity: sha512-wpgERjNkLrBiFmkMEjuZJEWKKDrNfHCKA1OhyN1wg1FrLkULbviEy6py1AyJUgZ72YWFbZ38FIpnqvVqAlDUwA==, @@ -17361,7 +17434,7 @@ packages: p-timeout: 3.2.0 dev: true - /package-json/6.5.0: + /package-json@6.5.0: resolution: { integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==, @@ -17374,14 +17447,14 @@ packages: semver: 6.3.0 dev: false - /pako/1.0.11: + /pako@1.0.11: resolution: { integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, } dev: true - /parent-module/1.0.1: + /parent-module@1.0.1: resolution: { integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, @@ -17390,7 +17463,7 @@ packages: dependencies: callsites: 3.1.0 - /parse-github-url/1.0.2: + /parse-github-url@1.0.2: resolution: { integrity: sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==, @@ -17399,7 +17472,7 @@ packages: hasBin: true dev: false - /parse-json/5.2.0: + /parse-json@5.2.0: resolution: { integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, @@ -17411,7 +17484,7 @@ packages: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parse-passwd/1.0.0: + /parse-passwd@1.0.0: resolution: { integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==, @@ -17419,13 +17492,13 @@ packages: engines: {node: ">=0.10.0"} dev: false - /parse5/6.0.1: + /parse5@6.0.1: resolution: { integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, } - /parse5/7.1.1: + /parse5@7.1.1: resolution: { integrity: sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg==, @@ -17433,7 +17506,7 @@ packages: dependencies: entities: 4.4.0 - /parseley/0.7.0: + /parseley@0.7.0: resolution: { integrity: sha512-xyOytsdDu077M3/46Am+2cGXEKM9U9QclBDv7fimY7e+BBlxh2JcBp2mgNsmkyA9uvgyTjVzDi7cP1v4hcFxbw==, @@ -17443,7 +17516,7 @@ packages: nearley: 2.20.1 dev: true - /parseurl/1.3.3: + /parseurl@1.3.3: resolution: { integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, @@ -17451,7 +17524,7 @@ packages: engines: {node: ">= 0.8"} dev: true - /pascalcase/0.1.1: + /pascalcase@0.1.1: resolution: { integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==, @@ -17459,7 +17532,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /passport-mock-strategy/2.0.0: + /passport-mock-strategy@2.0.0: resolution: { integrity: sha512-9YUT0sja/7n+HfQ+Jwx4XETERRh1uciRjpHhEZMcYS1FBnMrfrSlKVS42bMU06ewSFiPhXztazAE6XwiZdZQ/g==, @@ -17472,7 +17545,7 @@ packages: passport: 0.4.1 dev: false - /passport-oauth1/1.2.0: + /passport-oauth1@1.2.0: resolution: { integrity: sha512-Sv2YWodC6jN12M/OXwmR4BIXeeIHjjbwYTQw4kS6tHK4zYzSEpxBgSJJnknBjICA5cj0ju3FSnG1XmHgIhYnLg==, @@ -17484,7 +17557,7 @@ packages: utils-merge: 1.0.1 dev: false - /passport-strategy/1.0.0: + /passport-strategy@1.0.0: resolution: { integrity: sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==, @@ -17492,7 +17565,7 @@ packages: engines: {node: ">= 0.4.0"} dev: false - /passport-twitter/1.0.4: + /passport-twitter@1.0.4: resolution: {integrity: sha1-AaeZ4fdgvy3knyul+6MigvGJMtc=} engines: {node: ">= 0.4.0"} dependencies: @@ -17500,7 +17573,7 @@ packages: xtraverse: 0.1.0 dev: false - /passport/0.4.1: + /passport@0.4.1: resolution: { integrity: sha512-IxXgZZs8d7uFSt3eqNjM9NQ3g3uQCW5avD8mRNoXV99Yig50vjuaez6dQK2qC0kVWPRTujxY0dWgGfT09adjYg==, @@ -17511,7 +17584,7 @@ packages: pause: 0.0.1 dev: false - /passport/0.6.0: + /passport@0.6.0: resolution: { integrity: sha512-0fe+p3ZnrWRW74fe8+SvCyf4a3Pb2/h7gFkQ8yTJpAO50gDzlfjZUZTO1k5Eg9kUct22OxHLqDZoKUWRHOh9ug==, @@ -17523,7 +17596,7 @@ packages: utils-merge: 1.0.1 dev: false - /patch-console/1.0.0: + /patch-console@1.0.0: resolution: { integrity: sha512-nxl9nrnLQmh64iTzMfyylSlRozL7kAXIaxw1fVcLYdyhNkJCRUzirRZTikXGJsg+hc4fqpneTK6iU2H1Q8THSA==, @@ -17531,66 +17604,66 @@ packages: engines: {node: ">=10"} dev: false - /path-dirname/1.0.2: + /path-dirname@1.0.2: resolution: { integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==, } dev: false - /path-exists/3.0.0: + /path-exists@3.0.0: resolution: { integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, } engines: {node: ">=4"} - /path-exists/4.0.0: + /path-exists@4.0.0: resolution: { integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, } engines: {node: ">=8"} - /path-is-absolute/1.0.1: + /path-is-absolute@1.0.1: resolution: { integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, } engines: {node: ">=0.10.0"} - /path-key/2.0.1: + /path-key@2.0.1: resolution: { integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==, } engines: {node: ">=4"} - /path-key/3.1.1: + /path-key@3.1.1: resolution: { integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, } engines: {node: ">=8"} - /path-key/4.0.0: + /path-key@4.0.0: resolution: { integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, } engines: {node: ">=12"} - /path-parse/1.0.7: + /path-parse@1.0.7: resolution: { integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, } - /path-to-regexp/0.1.7: + /path-to-regexp@0.1.7: resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} dev: true - /path-type/3.0.0: + /path-type@3.0.0: resolution: { integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==, @@ -17600,68 +17673,68 @@ packages: pify: 3.0.0 dev: false - /path-type/4.0.0: + /path-type@4.0.0: resolution: { integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, } engines: {node: ">=8"} - /path/0.12.7: + /path@0.12.7: resolution: {integrity: sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=} dependencies: process: 0.11.10 util: 0.10.4 dev: false - /pathe/0.2.0: + /pathe@0.2.0: resolution: { integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==, } dev: true - /pathe/0.3.2: + /pathe@0.3.2: resolution: { integrity: sha512-qhnmX0TOqlCvdWWTkoM83wh5J8fZ2yhbDEc9MlsnAEtEc+JCwxUKEwmd6pkY9hRe6JR1Uecbc14VcAKX2yFSTA==, } dev: true - /pathval/1.1.1: + /pathval@1.1.1: resolution: { integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==, } - /pause/0.0.1: + /pause@0.0.1: resolution: { integrity: sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==, } dev: false - /pend/1.2.0: + /pend@1.2.0: resolution: { integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, } dev: true - /picocolors/1.0.0: + /picocolors@1.0.0: resolution: { integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, } - /picomatch/2.3.1: + /picomatch@2.3.1: resolution: { integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, } engines: {node: ">=8.6"} - /pidtree/0.6.0: + /pidtree@0.6.0: resolution: { integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, @@ -17669,7 +17742,7 @@ packages: engines: {node: ">=0.10"} hasBin: true - /pify/2.3.0: + /pify@2.3.0: resolution: { integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, @@ -17677,7 +17750,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /pify/3.0.0: + /pify@3.0.0: resolution: { integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==, @@ -17685,7 +17758,7 @@ packages: engines: {node: ">=4"} dev: false - /pify/4.0.1: + /pify@4.0.1: resolution: { integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, @@ -17693,14 +17766,14 @@ packages: engines: {node: ">=6"} dev: false - /pirates/4.0.5: + /pirates@4.0.5: resolution: { integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==, } engines: {node: ">= 6"} - /pkg-dir/3.0.0: + /pkg-dir@3.0.0: resolution: { integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==, @@ -17710,7 +17783,7 @@ packages: find-up: 3.0.0 dev: false - /pkg-dir/4.2.0: + /pkg-dir@4.2.0: resolution: { integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, @@ -17719,7 +17792,7 @@ packages: dependencies: find-up: 4.1.0 - /pkg-dir/5.0.0: + /pkg-dir@5.0.0: resolution: { integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==, @@ -17728,7 +17801,7 @@ packages: dependencies: find-up: 5.0.0 - /pkg-types/0.3.3: + /pkg-types@0.3.3: resolution: { integrity: sha512-6AJcCMnjUQPQv/Wk960w0TOmjhdjbeaQJoSKWRQv9N3rgkessCu6J0Ydsog/nw1MbpnxHuPzYbfOn2KmlZO1FA==, @@ -17739,7 +17812,7 @@ packages: pathe: 0.3.2 dev: true - /playwright-chromium/1.28.0: + /playwright-chromium@1.28.0: resolution: { integrity: sha512-5IUBJShMJMaK6NmRj/7KWdvVqd7J8DqLH0wVdXBs/4MfZUAvByBB35y5v6B33NjlJg3SZGX5alR8TANrcKaJNA==, @@ -17751,7 +17824,7 @@ packages: playwright-core: 1.28.0 dev: true - /playwright-core/1.28.0: + /playwright-core@1.28.0: resolution: { integrity: sha512-nJLknd28kPBiCNTbqpu6Wmkrh63OEqJSFw9xOfL9qxfNwody7h6/L3O2dZoWQ6Oxcm0VOHjWmGiCUGkc0X3VZA==, @@ -17760,7 +17833,7 @@ packages: hasBin: true dev: true - /playwright/1.28.0: + /playwright@1.28.0: resolution: { integrity: sha512-kyOXGc5y1mgi+hgEcCIyE1P1+JumLrxS09nFHo5sdJNzrucxPRAGwM4A2X3u3SDOfdgJqx61yIoR6Av+5plJPg==, @@ -17772,7 +17845,7 @@ packages: playwright-core: 1.28.0 dev: true - /pluralize/8.0.0: + /pluralize@8.0.0: resolution: { integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==, @@ -17780,7 +17853,7 @@ packages: engines: {node: ">=4"} dev: false - /posix-character-classes/0.1.1: + /posix-character-classes@0.1.1: resolution: { integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==, @@ -17788,7 +17861,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /postcss/8.4.14: + /postcss@8.4.14: resolution: { integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, @@ -17799,7 +17872,7 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /postcss/8.4.19: + /postcss@8.4.19: resolution: { integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==, @@ -17810,7 +17883,7 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /preact-render-to-string/5.2.6_preact@10.11.3: + /preact-render-to-string@5.2.6(preact@10.11.3): resolution: { integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==, @@ -17821,13 +17894,13 @@ packages: preact: 10.11.3 pretty-format: 3.8.0 - /preact/10.11.3: + /preact@10.11.3: resolution: { integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==, } - /preferred-pm/3.0.3: + /preferred-pm@3.0.3: resolution: { integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==, @@ -17840,21 +17913,21 @@ packages: which-pm: 2.0.0 dev: false - /prelude-ls/1.1.2: + /prelude-ls@1.1.2: resolution: { integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==, } engines: {node: ">= 0.8.0"} - /prelude-ls/1.2.1: + /prelude-ls@1.2.1: resolution: { integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, } engines: {node: ">= 0.8.0"} - /prepend-http/2.0.0: + /prepend-http@2.0.0: resolution: { integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==, @@ -17862,7 +17935,7 @@ packages: engines: {node: ">=4"} dev: false - /prettier-plugin-prisma/4.4.0_prettier@2.7.1: + /prettier-plugin-prisma@4.4.0(prettier@2.7.1): resolution: { integrity: sha512-631zwtvHUjcuS+i83wkxE3LqizazojWie4Pkha9GL6r1UsochNUedvxfvWPCdw6Dpyawvc5UKkmxcb9aT9+xfg==, @@ -17874,7 +17947,7 @@ packages: "@prisma/prisma-fmt-wasm": 4.4.0-66.f352a33b70356f46311da8b00d83386dd9f145d6 prettier: 2.7.1 - /prettier/1.19.1: + /prettier@1.19.1: resolution: { integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==, @@ -17883,7 +17956,7 @@ packages: hasBin: true dev: false - /prettier/2.7.1: + /prettier@2.7.1: resolution: { integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==, @@ -17891,7 +17964,7 @@ packages: engines: {node: ">=10.13.0"} hasBin: true - /pretty-bytes/5.6.0: + /pretty-bytes@5.6.0: resolution: { integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==, @@ -17899,7 +17972,7 @@ packages: engines: {node: ">=6"} dev: true - /pretty-bytes/6.0.0: + /pretty-bytes@6.0.0: resolution: { integrity: sha512-6UqkYefdogmzqAZWzJ7laYeJnaXDy2/J+ZqiiMtS7t7OfpXWTlaeGMwX8U6EFvPV/YWWEKRkS8hKS4k60WHTOg==, @@ -17907,7 +17980,7 @@ packages: engines: {node: ^14.13.1 || >=16.0.0} dev: true - /pretty-format/27.5.1: + /pretty-format@27.5.1: resolution: { integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==, @@ -17919,7 +17992,7 @@ packages: react-is: 17.0.2 dev: true - /pretty-format/29.2.1: + /pretty-format@29.2.1: resolution: { integrity: sha512-Y41Sa4aLCtKAXvwuIpTvcFBkyeYp2gdFWzXGA+ZNES3VwURIB165XO/z7CjETwzCCS53MjW/rLMyyqEnTtaOfA==, @@ -17930,13 +18003,13 @@ packages: ansi-styles: 5.2.0 react-is: 18.2.0 - /pretty-format/3.8.0: + /pretty-format@3.8.0: resolution: { integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==, } - /pretty-quick/3.1.3_prettier@2.7.1: + /pretty-quick@3.1.3(prettier@2.7.1): resolution: { integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==, @@ -17954,7 +18027,7 @@ packages: multimatch: 4.0.0 prettier: 2.7.1 - /preview-email/3.0.7: + /preview-email@3.0.7: resolution: { integrity: sha512-WGko2NiS3d8qoGcC981sXotm7noW/dcv4Cp4wo+X95ek2WwJ4A+aDpw/MzMjMW/johihvmfrfUdUWBbh+HnxCw==, @@ -17974,7 +18047,7 @@ packages: uuid: 8.3.2 dev: true - /prisma/4.6.1: + /prisma@4.6.1: resolution: { integrity: sha512-BR4itMCuzrDV4tn3e2TF+nh1zIX/RVU0isKtKoN28ADeoJ9nYaMhiuRRkFd2TZN8+l/XfYzoRKyHzUFXLQhmBQ==, @@ -17986,13 +18059,13 @@ packages: "@prisma/engines": 4.6.1 dev: false - /process-nextick-args/2.0.1: + /process-nextick-args@2.0.1: resolution: { integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, } - /process/0.11.10: + /process@0.11.10: resolution: { integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, @@ -18000,7 +18073,7 @@ packages: engines: {node: ">= 0.6.0"} dev: false - /progress/2.0.3: + /progress@2.0.3: resolution: { integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==, @@ -18008,7 +18081,7 @@ packages: engines: {node: ">=0.4.0"} dev: false - /promise/7.3.1: + /promise@7.3.1: resolution: { integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==, @@ -18017,7 +18090,7 @@ packages: asap: 2.0.6 dev: true - /prompts/2.4.2: + /prompts@2.4.2: resolution: { integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, @@ -18027,7 +18100,7 @@ packages: kleur: 3.0.3 sisteransi: 1.0.5 - /prop-types/15.8.1: + /prop-types@15.8.1: resolution: { integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, @@ -18037,7 +18110,7 @@ packages: object-assign: 4.1.1 react-is: 16.13.1 - /proxy-addr/2.0.7: + /proxy-addr@2.0.7: resolution: { integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==, @@ -18048,27 +18121,27 @@ packages: ipaddr.js: 1.9.1 dev: true - /proxy-from-env/1.1.0: + /proxy-from-env@1.1.0: resolution: { integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, } dev: true - /pseudomap/1.0.2: + /pseudomap@1.0.2: resolution: { integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, } dev: false - /psl/1.8.0: + /psl@1.8.0: resolution: { integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==, } - /pug-attrs/3.0.0: + /pug-attrs@3.0.0: resolution: { integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==, @@ -18079,7 +18152,7 @@ packages: pug-runtime: 3.0.1 dev: true - /pug-code-gen/3.0.2: + /pug-code-gen@3.0.2: resolution: { integrity: sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==, @@ -18095,14 +18168,14 @@ packages: with: 7.0.2 dev: true - /pug-error/2.0.0: + /pug-error@2.0.0: resolution: { integrity: sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==, } dev: true - /pug-filters/4.0.0: + /pug-filters@4.0.0: resolution: { integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==, @@ -18112,10 +18185,10 @@ packages: jstransformer: 1.0.0 pug-error: 2.0.0 pug-walk: 2.0.0 - resolve: 1.22.0 + resolve: 1.22.1 dev: true - /pug-lexer/5.0.1: + /pug-lexer@5.0.1: resolution: { integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==, @@ -18126,7 +18199,7 @@ packages: pug-error: 2.0.0 dev: true - /pug-linker/4.0.0: + /pug-linker@4.0.0: resolution: { integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==, @@ -18136,7 +18209,7 @@ packages: pug-walk: 2.0.0 dev: true - /pug-load/3.0.0: + /pug-load@3.0.0: resolution: { integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==, @@ -18146,7 +18219,7 @@ packages: pug-walk: 2.0.0 dev: true - /pug-parser/6.0.0: + /pug-parser@6.0.0: resolution: { integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==, @@ -18156,14 +18229,14 @@ packages: token-stream: 1.0.0 dev: true - /pug-runtime/3.0.1: + /pug-runtime@3.0.1: resolution: { integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==, } dev: true - /pug-strip-comments/2.0.0: + /pug-strip-comments@2.0.0: resolution: { integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==, @@ -18172,14 +18245,14 @@ packages: pug-error: 2.0.0 dev: true - /pug-walk/2.0.0: + /pug-walk@2.0.0: resolution: { integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==, } dev: true - /pug/3.0.2: + /pug@3.0.2: resolution: { integrity: sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==, @@ -18195,7 +18268,7 @@ packages: pug-strip-comments: 2.0.0 dev: true - /pump/3.0.0: + /pump@3.0.0: resolution: { integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, @@ -18204,21 +18277,21 @@ packages: end-of-stream: 1.4.4 once: 1.4.0 - /punycode/1.3.2: + /punycode@1.3.2: resolution: { integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==, } dev: false - /punycode/2.1.1: + /punycode@2.1.1: resolution: { integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==, } engines: {node: ">=6"} - /qs/6.9.7: + /qs@6.9.7: resolution: { integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==, @@ -18226,7 +18299,7 @@ packages: engines: {node: ">=0.6"} dev: true - /querystring/0.2.0: + /querystring@0.2.0: resolution: { integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==, @@ -18235,19 +18308,19 @@ packages: deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. dev: false - /querystringify/2.2.0: + /querystringify@2.2.0: resolution: { integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, } - /queue-microtask/1.2.3: + /queue-microtask@1.2.3: resolution: { integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, } - /quick-lru/4.0.1: + /quick-lru@4.0.1: resolution: { integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, @@ -18255,7 +18328,7 @@ packages: engines: {node: ">=8"} dev: false - /quick-lru/5.1.1: + /quick-lru@5.1.1: resolution: { integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==, @@ -18263,14 +18336,14 @@ packages: engines: {node: ">=10"} dev: false - /railroad-diagrams/1.0.0: + /railroad-diagrams@1.0.0: resolution: { integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==, } dev: true - /randexp/0.4.6: + /randexp@0.4.6: resolution: { integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==, @@ -18281,7 +18354,7 @@ packages: ret: 0.1.15 dev: true - /range-parser/1.2.1: + /range-parser@1.2.1: resolution: { integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==, @@ -18289,7 +18362,7 @@ packages: engines: {node: ">= 0.6"} dev: true - /raw-body/2.4.3: + /raw-body@2.4.3: resolution: { integrity: sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==, @@ -18302,7 +18375,7 @@ packages: unpipe: 1.0.0 dev: true - /rc/1.2.8: + /rc@1.2.8: resolution: { integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==, @@ -18315,7 +18388,7 @@ packages: strip-json-comments: 2.0.1 dev: false - /react-devtools-core/4.25.0: + /react-devtools-core@4.25.0: resolution: { integrity: sha512-iewRrnu0ZnmfL+jJayKphXj04CFh6i3ezVnpCtcnZbTPSQgN09XqHAzXbKbqNDl7aTg9QLNkQRP6M3DvdrinWA==, @@ -18328,7 +18401,7 @@ packages: - utf-8-validate dev: false - /react-dom/18.2.0_react@18.2.0: + /react-dom@18.2.0(react@18.2.0): resolution: { integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, @@ -18340,7 +18413,7 @@ packages: react: 18.2.0 scheduler: 0.23.0 - /react-error-boundary/3.1.4_react@18.2.0: + /react-error-boundary@3.1.4(react@18.2.0): resolution: { integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==, @@ -18353,7 +18426,7 @@ packages: react: 18.2.0 dev: true - /react-hook-form/7.39.1_react@18.2.0: + /react-hook-form@7.39.1(react@18.2.0): resolution: { integrity: sha512-MiF9PCILN5KulhSGbnjohMiTOrB47GerDTichMNP0y2cPUu1GTRFqbunOxCE9N1499YTLMV/ne4gFzqCp1rxrQ==, @@ -18365,26 +18438,26 @@ packages: react: 18.2.0 dev: false - /react-is/16.13.1: + /react-is@16.13.1: resolution: { integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, } - /react-is/17.0.2: + /react-is@17.0.2: resolution: { integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, } dev: true - /react-is/18.2.0: + /react-is@18.2.0: resolution: { integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, } - /react-reconciler/0.26.2_react@18.2.0: + /react-reconciler@0.26.2(react@18.2.0): resolution: { integrity: sha512-nK6kgY28HwrMNwDnMui3dvm3rCFjZrcGiuwLc5COUipBK5hWHLOxMJhSnSomirqWwjPBJKV1QcbkI0VJr7Gl1Q==, @@ -18399,7 +18472,7 @@ packages: scheduler: 0.20.2 dev: false - /react-refresh/0.11.0: + /react-refresh@0.11.0: resolution: { integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==, @@ -18407,7 +18480,7 @@ packages: engines: {node: ">=0.10.0"} dev: true - /react-refresh/0.14.0: + /react-refresh@0.14.0: resolution: { integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==, @@ -18415,7 +18488,7 @@ packages: engines: {node: ">=0.10.0"} dev: true - /react/18.2.0: + /react@18.2.0: resolution: { integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, @@ -18424,7 +18497,7 @@ packages: dependencies: loose-envify: 1.4.0 - /read-pkg-up/7.0.1: + /read-pkg-up@7.0.1: resolution: { integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, @@ -18436,7 +18509,7 @@ packages: type-fest: 0.8.1 dev: false - /read-pkg/5.2.0: + /read-pkg@5.2.0: resolution: { integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, @@ -18449,7 +18522,7 @@ packages: type-fest: 0.6.0 dev: false - /read-yaml-file/1.1.0: + /read-yaml-file@1.1.0: resolution: { integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, @@ -18462,7 +18535,7 @@ packages: strip-bom: 3.0.0 dev: false - /readable-stream/2.3.7: + /readable-stream@2.3.7: resolution: { integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==, @@ -18476,7 +18549,7 @@ packages: string_decoder: 1.1.1 util-deprecate: 1.0.2 - /readable-stream/3.6.0: + /readable-stream@3.6.0: resolution: { integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==, @@ -18488,7 +18561,7 @@ packages: util-deprecate: 1.0.2 dev: false - /readdirp/3.6.0: + /readdirp@3.6.0: resolution: { integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, @@ -18497,7 +18570,7 @@ packages: dependencies: picomatch: 2.3.1 - /recast/0.20.5: + /recast@0.20.5: resolution: { integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==, @@ -18509,7 +18582,7 @@ packages: source-map: 0.6.1 tslib: 2.4.0 - /recrawl-sync/2.2.3: + /recrawl-sync@2.2.3: resolution: { integrity: sha512-vSaTR9t+cpxlskkdUFrsEpnf67kSmPk66yAGT1fZPrDudxQjoMzPgQhSMImQ0pAw5k0NPirefQfhopSjhdUtpQ==, @@ -18522,7 +18595,7 @@ packages: tslib: 1.14.1 dev: true - /redent/3.0.0: + /redent@3.0.0: resolution: { integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, @@ -18532,7 +18605,7 @@ packages: indent-string: 4.0.0 strip-indent: 3.0.0 - /regenerate-unicode-properties/10.0.1: + /regenerate-unicode-properties@10.0.1: resolution: { integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==, @@ -18541,19 +18614,19 @@ packages: dependencies: regenerate: 1.4.2 - /regenerate/1.4.2: + /regenerate@1.4.2: resolution: { integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, } - /regenerator-runtime/0.13.9: + /regenerator-runtime@0.13.9: resolution: { integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==, } - /regenerator-transform/0.15.0: + /regenerator-transform@0.15.0: resolution: { integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==, @@ -18561,7 +18634,7 @@ packages: dependencies: "@babel/runtime": 7.18.3 - /regex-not/1.0.2: + /regex-not@1.0.2: resolution: { integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==, @@ -18572,14 +18645,14 @@ packages: safe-regex: 1.1.0 dev: false - /regexp-to-ast/0.5.0: + /regexp-to-ast@0.5.0: resolution: { integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==, } dev: false - /regexp.prototype.flags/1.4.3: + /regexp.prototype.flags@1.4.3: resolution: { integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==, @@ -18590,14 +18663,14 @@ packages: define-properties: 1.1.4 functions-have-names: 1.2.3 - /regexpp/3.2.0: + /regexpp@3.2.0: resolution: { integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, } engines: {node: ">=8"} - /regexpu-core/5.0.1: + /regexpu-core@5.0.1: resolution: { integrity: sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==, @@ -18611,7 +18684,7 @@ packages: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.0.0 - /registry-auth-token/4.2.1: + /registry-auth-token@4.2.1: resolution: { integrity: sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==, @@ -18621,7 +18694,7 @@ packages: rc: 1.2.8 dev: false - /registry-url/5.1.0: + /registry-url@5.1.0: resolution: { integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==, @@ -18631,13 +18704,13 @@ packages: rc: 1.2.8 dev: false - /regjsgen/0.6.0: + /regjsgen@0.6.0: resolution: { integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==, } - /regjsparser/0.8.4: + /regjsparser@0.8.4: resolution: { integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==, @@ -18646,14 +18719,14 @@ packages: dependencies: jsesc: 0.5.0 - /remove-trailing-separator/1.1.0: + /remove-trailing-separator@1.1.0: resolution: { integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==, } dev: false - /repeat-element/1.1.4: + /repeat-element@1.1.4: resolution: { integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==, @@ -18661,7 +18734,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /repeat-string/1.6.1: + /repeat-string@1.6.1: resolution: { integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, @@ -18669,7 +18742,7 @@ packages: engines: {node: ">=0.10"} dev: false - /replace-ext/1.0.1: + /replace-ext@1.0.1: resolution: { integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==, @@ -18677,34 +18750,34 @@ packages: engines: {node: ">= 0.10"} dev: false - /require-directory/2.1.1: + /require-directory@2.1.1: resolution: { integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, } engines: {node: ">=0.10.0"} - /require-main-filename/2.0.0: + /require-main-filename@2.0.0: resolution: { integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, } dev: false - /requires-port/1.0.0: + /requires-port@1.0.0: resolution: { integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, } - /resolve-alpn/1.2.1: + /resolve-alpn@1.2.1: resolution: { integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==, } dev: false - /resolve-cwd/3.0.0: + /resolve-cwd@3.0.0: resolution: { integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, @@ -18713,7 +18786,7 @@ packages: dependencies: resolve-from: 5.0.0 - /resolve-dir/1.0.1: + /resolve-dir@1.0.1: resolution: { integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==, @@ -18724,21 +18797,21 @@ packages: global-modules: 1.0.0 dev: false - /resolve-from/4.0.0: + /resolve-from@4.0.0: resolution: { integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, } engines: {node: ">=4"} - /resolve-from/5.0.0: + /resolve-from@5.0.0: resolution: { integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, } engines: {node: ">=8"} - /resolve-url/0.2.1: + /resolve-url@0.2.1: resolution: { integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==, @@ -18746,14 +18819,14 @@ packages: deprecated: https://github.com/lydell/resolve-url#deprecated dev: false - /resolve.exports/1.1.0: + /resolve.exports@1.1.0: resolution: { integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==, } engines: {node: ">=10"} - /resolve/1.22.0: + /resolve@1.22.0: resolution: { integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==, @@ -18765,7 +18838,7 @@ packages: supports-preserve-symlinks-flag: 1.0.0 dev: true - /resolve/1.22.1: + /resolve@1.22.1: resolution: { integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==, @@ -18776,7 +18849,7 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve/2.0.0-next.3: + /resolve@2.0.0-next.3: resolution: { integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==, @@ -18785,7 +18858,7 @@ packages: is-core-module: 2.11.0 path-parse: 1.0.7 - /responselike/1.0.2: + /responselike@1.0.2: resolution: { integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==, @@ -18794,7 +18867,7 @@ packages: lowercase-keys: 1.0.1 dev: false - /responselike/2.0.0: + /responselike@2.0.0: resolution: { integrity: sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==, @@ -18803,7 +18876,7 @@ packages: lowercase-keys: 2.0.0 dev: false - /restore-cursor/3.1.0: + /restore-cursor@3.1.0: resolution: { integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, @@ -18813,27 +18886,27 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 - /ret/0.1.15: + /ret@0.1.15: resolution: { integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==, } engines: {node: ">=0.12"} - /reusify/1.0.4: + /reusify@1.0.4: resolution: { integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, } engines: {iojs: ">=1.0.0", node: ">=0.10.0"} - /rfdc/1.3.0: + /rfdc@1.3.0: resolution: { integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==, } - /rimraf/2.6.3: + /rimraf@2.6.3: resolution: { integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==, @@ -18843,7 +18916,7 @@ packages: glob: 7.2.0 dev: false - /rimraf/3.0.2: + /rimraf@3.0.2: resolution: { integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, @@ -18852,7 +18925,7 @@ packages: dependencies: glob: 7.2.0 - /roarr/2.15.4: + /roarr@2.15.4: resolution: { integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==, @@ -18867,7 +18940,7 @@ packages: sprintf-js: 1.1.2 dev: false - /rollup-plugin-dts/4.2.2_rpktusa5o437llwxsnrngyem64: + /rollup-plugin-dts@4.2.2(rollup@2.77.2)(typescript@4.8.4): resolution: { integrity: sha512-A3g6Rogyko/PXeKoUlkjxkP++8UDVpgA7C+Tdl77Xj4fgEaIjPSnxRmR53EzvoYy97VMVwLAOcWJudaVAuxneQ==, @@ -18884,28 +18957,7 @@ packages: "@babel/code-frame": 7.18.6 dev: true - /rollup-plugin-esbuild/4.9.1_ecpsl2p7zl5puhr4xxlpah6uzm: - resolution: - { - integrity: sha512-qn/x7Wz9p3Xnva99qcb+nopH0d2VJwVnsxJTGEg+Sh2Z3tqQl33MhOwzekVo1YTKgv+yAmosjcBRJygMfGrtLw==, - } - engines: {node: ">=12"} - peerDependencies: - esbuild: ">=0.10.1" - rollup: ^1.20.0 || ^2.0.0 - dependencies: - "@rollup/pluginutils": 4.2.1 - debug: 4.3.4 - es-module-lexer: 0.9.3 - esbuild: 0.14.51 - joycon: 3.1.1 - jsonc-parser: 3.0.0 - rollup: 2.77.2 - transitivePeerDependencies: - - supports-color - dev: true - - /rollup-plugin-esbuild/4.9.1_omx4rqyluc7ex52umwalnnwm7m: + /rollup-plugin-esbuild@4.9.1(esbuild@0.14.51)(rollup@2.77.2)(supports-color@8.1.1): resolution: { integrity: sha512-qn/x7Wz9p3Xnva99qcb+nopH0d2VJwVnsxJTGEg+Sh2Z3tqQl33MhOwzekVo1YTKgv+yAmosjcBRJygMfGrtLw==, @@ -18916,7 +18968,7 @@ packages: rollup: ^1.20.0 || ^2.0.0 dependencies: "@rollup/pluginutils": 4.2.1 - debug: 4.3.4_supports-color@8.1.1 + debug: 4.3.3(supports-color@8.1.1) es-module-lexer: 0.9.3 esbuild: 0.14.51 joycon: 3.1.1 @@ -18926,7 +18978,7 @@ packages: - supports-color dev: true - /rollup/2.77.2: + /rollup@2.77.2: resolution: { integrity: sha512-m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g==, @@ -18937,7 +18989,7 @@ packages: fsevents: 2.3.2 dev: true - /rollup/2.79.1: + /rollup@2.79.1: resolution: { integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, @@ -18947,7 +18999,7 @@ packages: optionalDependencies: fsevents: 2.3.2 - /run-applescript/3.2.0: + /run-applescript@3.2.0: resolution: { integrity: sha512-Ep0RsvAjnRcBX1p5vogbaBdAGu/8j/ewpvGqnQYunnLd9SM0vWcPJewPKNnWFggf0hF0pwIgwV5XK7qQ7UZ8Qg==, @@ -18957,7 +19009,7 @@ packages: execa: 0.10.0 dev: true - /run-parallel/1.2.0: + /run-parallel@1.2.0: resolution: { integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, @@ -18965,7 +19017,7 @@ packages: dependencies: queue-microtask: 1.2.3 - /rxjs/7.5.5: + /rxjs@7.5.5: resolution: { integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==, @@ -18973,19 +19025,19 @@ packages: dependencies: tslib: 2.4.0 - /safe-buffer/5.1.2: + /safe-buffer@5.1.2: resolution: { integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, } - /safe-buffer/5.2.1: + /safe-buffer@5.2.1: resolution: { integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, } - /safe-regex/1.1.0: + /safe-regex@1.1.0: resolution: { integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==, @@ -18994,13 +19046,13 @@ packages: ret: 0.1.15 dev: false - /safer-buffer/2.1.2: + /safer-buffer@2.1.2: resolution: { integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, } - /saxes/5.0.1: + /saxes@5.0.1: resolution: { integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==, @@ -19009,7 +19061,7 @@ packages: dependencies: xmlchars: 2.2.0 - /saxes/6.0.0: + /saxes@6.0.0: resolution: { integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==, @@ -19018,7 +19070,7 @@ packages: dependencies: xmlchars: 2.2.0 - /scheduler/0.20.2: + /scheduler@0.20.2: resolution: { integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==, @@ -19028,7 +19080,7 @@ packages: object-assign: 4.1.1 dev: false - /scheduler/0.23.0: + /scheduler@0.23.0: resolution: { integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, @@ -19036,14 +19088,14 @@ packages: dependencies: loose-envify: 1.4.0 - /scule/0.2.1: + /scule@0.2.1: resolution: { integrity: sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg==, } dev: true - /secure-password/4.0.0: + /secure-password@4.0.0: resolution: { integrity: sha512-B268T/tx+hq7q85KH6gonEqK/lhrLhNtzYzqojuMtBPVFBtwiIwxqF+4yr9POsJu5cIxbJyM66eYfXZiPZUXRA==, @@ -19052,7 +19104,7 @@ packages: nanoassert: 1.1.0 sodium-native: 3.3.0 - /selderee/0.6.0: + /selderee@0.6.0: resolution: { integrity: sha512-ibqWGV5aChDvfVdqNYuaJP/HnVBhlRGSRrlbttmlMpHcLuTqqbMH36QkSs9GEgj5M88JDYLI8eyP94JaQ8xRlg==, @@ -19061,7 +19113,7 @@ packages: parseley: 0.7.0 dev: true - /selenium-webdriver/4.1.1: + /selenium-webdriver@4.1.1: resolution: { integrity: sha512-Fr9e9LC6zvD6/j7NO8M1M/NVxFX67abHcxDJoP5w2KN/Xb1SyYLjMVPGgD14U2TOiKe4XKHf42OmFw9g2JgCBQ==, @@ -19076,7 +19128,7 @@ packages: - utf-8-validate dev: true - /sembear/0.5.2: + /sembear@0.5.2: resolution: { integrity: sha512-Ij1vCAdFgWABd7zTg50Xw1/p0JgESNxuLlneEAsmBrKishA06ulTTL/SHGmNy2Zud7+rKrHTKNI6moJsn1ppAQ==, @@ -19086,35 +19138,35 @@ packages: semver: 6.3.0 dev: false - /semver-compare/1.0.0: + /semver-compare@1.0.0: resolution: { integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==, } dev: false - /semver/5.7.1: + /semver@5.7.1: resolution: { integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==, } hasBin: true - /semver/6.3.0: + /semver@6.3.0: resolution: { integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==, } hasBin: true - /semver/7.0.0: + /semver@7.0.0: resolution: { integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==, } hasBin: true - /semver/7.3.7: + /semver@7.3.7: resolution: { integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==, @@ -19124,48 +19176,24 @@ packages: dependencies: lru-cache: 6.0.0 - /semver/7.3.8: + /semver@7.3.8: resolution: { integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==, - } - engines: {node: ">=10"} - hasBin: true - dependencies: - lru-cache: 6.0.0 - - /send/0.17.2: - resolution: - { - integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==, - } - engines: {node: ">= 0.8.0"} - dependencies: - debug: 2.6.9 - depd: 1.1.2 - destroy: 1.0.4 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 1.8.1 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.3.0 - range-parser: 1.2.1 - statuses: 1.5.0 - transitivePeerDependencies: - - supports-color - dev: true + } + engines: {node: ">=10"} + hasBin: true + dependencies: + lru-cache: 6.0.0 - /send/0.17.2_supports-color@8.1.1: + /send@0.17.2(supports-color@8.1.1): resolution: { integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==, } engines: {node: ">= 0.8.0"} dependencies: - debug: 2.6.9_supports-color@8.1.1 + debug: 2.6.9(supports-color@8.1.1) depd: 1.1.2 destroy: 1.0.4 encodeurl: 1.0.2 @@ -19182,7 +19210,7 @@ packages: - supports-color dev: true - /serialize-error/7.0.1: + /serialize-error@7.0.1: resolution: { integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==, @@ -19192,22 +19220,7 @@ packages: type-fest: 0.13.1 dev: false - /serve-static/1.14.2: - resolution: - { - integrity: sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==, - } - engines: {node: ">= 0.8.0"} - dependencies: - encodeurl: 1.0.2 - escape-html: 1.0.3 - parseurl: 1.3.3 - send: 0.17.2 - transitivePeerDependencies: - - supports-color - dev: true - - /serve-static/1.14.2_supports-color@8.1.1: + /serve-static@1.14.2(supports-color@8.1.1): resolution: { integrity: sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==, @@ -19217,19 +19230,19 @@ packages: encodeurl: 1.0.2 escape-html: 1.0.3 parseurl: 1.3.3 - send: 0.17.2_supports-color@8.1.1 + send: 0.17.2(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true - /set-blocking/2.0.0: + /set-blocking@2.0.0: resolution: { integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, } dev: false - /set-value/2.0.1: + /set-value@2.0.1: resolution: { integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==, @@ -19242,21 +19255,21 @@ packages: split-string: 3.1.0 dev: false - /setimmediate/1.0.5: + /setimmediate@1.0.5: resolution: { integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==, } dev: true - /setprototypeof/1.2.0: + /setprototypeof@1.2.0: resolution: { integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, } dev: true - /shallow-clone/3.0.1: + /shallow-clone@3.0.1: resolution: { integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==, @@ -19266,7 +19279,7 @@ packages: kind-of: 6.0.3 dev: false - /shebang-command/1.2.0: + /shebang-command@1.2.0: resolution: { integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, @@ -19275,7 +19288,7 @@ packages: dependencies: shebang-regex: 1.0.0 - /shebang-command/2.0.0: + /shebang-command@2.0.0: resolution: { integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, @@ -19284,27 +19297,27 @@ packages: dependencies: shebang-regex: 3.0.0 - /shebang-regex/1.0.0: + /shebang-regex@1.0.0: resolution: { integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, } engines: {node: ">=0.10.0"} - /shebang-regex/3.0.0: + /shebang-regex@3.0.0: resolution: { integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, } engines: {node: ">=8"} - /shell-quote/1.7.3: + /shell-quote@1.7.3: resolution: { integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==, } - /side-channel/1.0.4: + /side-channel@1.0.4: resolution: { integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, @@ -19314,20 +19327,20 @@ packages: get-intrinsic: 1.1.1 object-inspect: 1.12.2 - /signal-exit/3.0.7: + /signal-exit@3.0.7: resolution: { integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, } - /simple-wcswidth/1.0.1: + /simple-wcswidth@1.0.1: resolution: { integrity: sha512-xMO/8eNREtaROt7tJvWJqHBDTMFN4eiQ5I4JRMuilwfnFcV5W9u7RUkueNkdw0jPqGMX36iCywelS5yilTuOxg==, } dev: false - /sirv/1.0.19: + /sirv@1.0.19: resolution: { integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==, @@ -19339,13 +19352,13 @@ packages: totalist: 1.1.0 dev: true - /sisteransi/1.0.5: + /sisteransi@1.0.5: resolution: { integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, } - /slash/2.0.0: + /slash@2.0.0: resolution: { integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==, @@ -19353,21 +19366,21 @@ packages: engines: {node: ">=6"} dev: false - /slash/3.0.0: + /slash@3.0.0: resolution: { integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, } engines: {node: ">=8"} - /slash/4.0.0: + /slash@4.0.0: resolution: { integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==, } engines: {node: ">=12"} - /slice-ansi/3.0.0: + /slice-ansi@3.0.0: resolution: { integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==, @@ -19378,7 +19391,7 @@ packages: astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /slice-ansi/4.0.0: + /slice-ansi@4.0.0: resolution: { integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==, @@ -19389,7 +19402,7 @@ packages: astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /slice-ansi/5.0.0: + /slice-ansi@5.0.0: resolution: { integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, @@ -19399,7 +19412,7 @@ packages: ansi-styles: 6.1.0 is-fullwidth-code-point: 4.0.0 - /smartwrap/1.2.5: + /smartwrap@1.2.5: resolution: { integrity: sha512-bzWRwHwu0RnWjwU7dFy7tF68pDAx/zMSu3g7xr9Nx5J0iSImYInglwEVExyHLxXljy6PWMjkSAbwF7t2mPnRmg==, @@ -19414,7 +19427,7 @@ packages: yargs: 15.4.1 dev: false - /snapdragon-node/2.1.1: + /snapdragon-node@2.1.1: resolution: { integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==, @@ -19426,7 +19439,7 @@ packages: snapdragon-util: 3.0.1 dev: false - /snapdragon-util/3.0.1: + /snapdragon-util@3.0.1: resolution: { integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==, @@ -19436,26 +19449,7 @@ packages: kind-of: 3.2.2 dev: false - /snapdragon/0.8.2: - resolution: - { - integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==, - } - engines: {node: ">=0.10.0"} - dependencies: - base: 0.11.2 - debug: 2.6.9 - define-property: 0.2.5 - extend-shallow: 2.0.1 - map-cache: 0.2.2 - source-map: 0.5.7 - source-map-resolve: 0.5.3 - use: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: false - - /snapdragon/0.8.2_supports-color@8.1.1: + /snapdragon@0.8.2(supports-color@8.1.1): resolution: { integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==, @@ -19463,7 +19457,7 @@ packages: engines: {node: ">=0.10.0"} dependencies: base: 0.11.2 - debug: 2.6.9_supports-color@8.1.1 + debug: 2.6.9(supports-color@8.1.1) define-property: 0.2.5 extend-shallow: 2.0.1 map-cache: 0.2.2 @@ -19474,7 +19468,7 @@ packages: - supports-color dev: false - /sodium-native/3.3.0: + /sodium-native@3.3.0: resolution: { integrity: sha512-rg6lCDM/qa3p07YGqaVD+ciAbUqm6SoO4xmlcfkbU5r1zIGrguXztLiEtaLYTV5U6k8KSIUFmnU3yQUSKmf6DA==, @@ -19483,14 +19477,14 @@ packages: dependencies: node-gyp-build: 4.4.0 - /source-map-js/1.0.2: + /source-map-js@1.0.2: resolution: { integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, } engines: {node: ">=0.10.0"} - /source-map-resolve/0.5.3: + /source-map-resolve@0.5.3: resolution: { integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==, @@ -19504,7 +19498,7 @@ packages: urix: 0.1.0 dev: false - /source-map-resolve/0.6.0: + /source-map-resolve@0.6.0: resolution: { integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==, @@ -19515,7 +19509,7 @@ packages: decode-uri-component: 0.2.0 dev: true - /source-map-support/0.5.13: + /source-map-support@0.5.13: resolution: { integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==, @@ -19524,7 +19518,7 @@ packages: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map-support/0.5.21: + /source-map-support@0.5.21: resolution: { integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, @@ -19532,9 +19526,8 @@ packages: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: false - /source-map-url/0.4.1: + /source-map-url@0.4.1: resolution: { integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==, @@ -19542,14 +19535,14 @@ packages: deprecated: See https://github.com/lydell/source-map-url#deprecated dev: false - /source-map/0.5.7: + /source-map@0.5.7: resolution: { integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==, } engines: {node: ">=0.10.0"} - /source-map/0.6.1: + /source-map@0.6.1: resolution: { integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, @@ -19557,14 +19550,22 @@ packages: engines: {node: ">=0.10.0"} requiresBuild: true - /sourcemap-codec/1.4.8: + /source-map@0.7.4: + resolution: + { + integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==, + } + engines: {node: ">= 8"} + dev: true + + /sourcemap-codec@1.4.8: resolution: { integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, } dev: true - /spawndamnit/2.0.0: + /spawndamnit@2.0.0: resolution: { integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, @@ -19574,7 +19575,7 @@ packages: signal-exit: 3.0.7 dev: false - /spdx-correct/3.1.1: + /spdx-correct@3.1.1: resolution: { integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==, @@ -19584,14 +19585,14 @@ packages: spdx-license-ids: 3.0.11 dev: false - /spdx-exceptions/2.3.0: + /spdx-exceptions@2.3.0: resolution: { integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==, } dev: false - /spdx-expression-parse/3.0.1: + /spdx-expression-parse@3.0.1: resolution: { integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, @@ -19601,14 +19602,14 @@ packages: spdx-license-ids: 3.0.11 dev: false - /spdx-license-ids/3.0.11: + /spdx-license-ids@3.0.11: resolution: { integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==, } dev: false - /split-string/3.1.0: + /split-string@3.1.0: resolution: { integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==, @@ -19618,20 +19619,20 @@ packages: extend-shallow: 3.0.2 dev: false - /sprintf-js/1.0.3: + /sprintf-js@1.0.3: resolution: { integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, } - /sprintf-js/1.1.2: + /sprintf-js@1.1.2: resolution: { integrity: sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==, } dev: false - /stack-utils/2.0.5: + /stack-utils@2.0.5: resolution: { integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==, @@ -19640,7 +19641,7 @@ packages: dependencies: escape-string-regexp: 2.0.0 - /static-extend/0.1.2: + /static-extend@0.1.2: resolution: { integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==, @@ -19651,7 +19652,7 @@ packages: object-copy: 0.1.0 dev: false - /statuses/1.5.0: + /statuses@1.5.0: resolution: { integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==, @@ -19659,7 +19660,7 @@ packages: engines: {node: ">= 0.6"} dev: true - /steno/2.1.0: + /steno@2.1.0: resolution: { integrity: sha512-mauOsiaqTNGFkWqIfwcm3y/fq+qKKaIWf1vf3ocOuTdco9XoHCO2AGF1gFYXuZFSWuP38Q8LBHBGJv2KnJSXyA==, @@ -19667,7 +19668,7 @@ packages: engines: {node: ^14.13.1 || >=16.0.0} dev: false - /stream-transform/2.1.3: + /stream-transform@2.1.3: resolution: { integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==, @@ -19676,21 +19677,21 @@ packages: mixme: 0.5.4 dev: false - /streamsearch/1.1.0: + /streamsearch@1.1.0: resolution: { integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, } engines: {node: ">=10.0.0"} - /string-argv/0.3.1: + /string-argv@0.3.1: resolution: { integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==, } engines: {node: ">=0.6.19"} - /string-length/4.0.2: + /string-length@4.0.2: resolution: { integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, @@ -19700,7 +19701,7 @@ packages: char-regex: 1.0.2 strip-ansi: 6.0.1 - /string-width/4.2.3: + /string-width@4.2.3: resolution: { integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, @@ -19711,7 +19712,7 @@ packages: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string-width/5.1.2: + /string-width@5.1.2: resolution: { integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, @@ -19722,7 +19723,7 @@ packages: emoji-regex: 9.2.2 strip-ansi: 7.0.1 - /string.prototype.matchall/4.0.7: + /string.prototype.matchall@4.0.7: resolution: { integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==, @@ -19737,7 +19738,7 @@ packages: regexp.prototype.flags: 1.4.3 side-channel: 1.0.4 - /string.prototype.trimend/1.0.5: + /string.prototype.trimend@1.0.5: resolution: { integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==, @@ -19747,7 +19748,7 @@ packages: define-properties: 1.1.4 es-abstract: 1.20.1 - /string.prototype.trimstart/1.0.5: + /string.prototype.trimstart@1.0.5: resolution: { integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==, @@ -19757,7 +19758,7 @@ packages: define-properties: 1.1.4 es-abstract: 1.20.1 - /string_decoder/1.1.1: + /string_decoder@1.1.1: resolution: { integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, @@ -19765,7 +19766,7 @@ packages: dependencies: safe-buffer: 5.1.2 - /string_decoder/1.3.0: + /string_decoder@1.3.0: resolution: { integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, @@ -19774,7 +19775,7 @@ packages: safe-buffer: 5.2.1 dev: false - /strip-ansi/6.0.1: + /strip-ansi@6.0.1: resolution: { integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, @@ -19783,7 +19784,7 @@ packages: dependencies: ansi-regex: 5.0.1 - /strip-ansi/7.0.1: + /strip-ansi@7.0.1: resolution: { integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==, @@ -19792,7 +19793,7 @@ packages: dependencies: ansi-regex: 6.0.1 - /strip-bom-buf/1.0.0: + /strip-bom-buf@1.0.0: resolution: { integrity: sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==, @@ -19802,7 +19803,7 @@ packages: is-utf8: 0.2.1 dev: false - /strip-bom-stream/2.0.0: + /strip-bom-stream@2.0.0: resolution: { integrity: sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==, @@ -19813,7 +19814,7 @@ packages: strip-bom: 2.0.0 dev: false - /strip-bom/2.0.0: + /strip-bom@2.0.0: resolution: { integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==, @@ -19823,42 +19824,42 @@ packages: is-utf8: 0.2.1 dev: false - /strip-bom/3.0.0: + /strip-bom@3.0.0: resolution: { integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, } engines: {node: ">=4"} - /strip-bom/4.0.0: + /strip-bom@4.0.0: resolution: { integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, } engines: {node: ">=8"} - /strip-eof/1.0.0: + /strip-eof@1.0.0: resolution: { integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==, } engines: {node: ">=0.10.0"} - /strip-final-newline/2.0.0: + /strip-final-newline@2.0.0: resolution: { integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, } engines: {node: ">=6"} - /strip-final-newline/3.0.0: + /strip-final-newline@3.0.0: resolution: { integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, } engines: {node: ">=12"} - /strip-indent/3.0.0: + /strip-indent@3.0.0: resolution: { integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, @@ -19867,7 +19868,7 @@ packages: dependencies: min-indent: 1.0.1 - /strip-json-comments/2.0.1: + /strip-json-comments@2.0.1: resolution: { integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==, @@ -19875,14 +19876,14 @@ packages: engines: {node: ">=0.10.0"} dev: false - /strip-json-comments/3.1.1: + /strip-json-comments@3.1.1: resolution: { integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, } engines: {node: ">=8"} - /strip-literal/0.4.2: + /strip-literal@0.4.2: resolution: { integrity: sha512-pv48ybn4iE1O9RLgCAN0iU4Xv7RlBTiit6DKmMiErbs9x1wH6vXBs45tWc0H5wUIF6TLTrKweqkmYF/iraQKNw==, @@ -19890,7 +19891,27 @@ packages: dependencies: acorn: 8.8.1 - /styled-jsx/5.1.1: + /styled-jsx@5.1.1(@babel/core@7.12.10)(react@18.2.0): + resolution: + { + integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, + } + engines: {node: ">= 12.0.0"} + peerDependencies: + "@babel/core": "*" + babel-plugin-macros: "*" + react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" + peerDependenciesMeta: + "@babel/core": + optional: true + babel-plugin-macros: + optional: true + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + client-only: 0.0.1 + react: 18.2.0 + + /styled-jsx@5.1.1(@babel/core@7.18.2)(react@18.2.0): resolution: { integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, @@ -19906,10 +19927,12 @@ packages: babel-plugin-macros: optional: true dependencies: + "@babel/core": 7.18.2(supports-color@8.1.1) client-only: 0.0.1 + react: 18.2.0 dev: false - /styled-jsx/5.1.1_react@18.2.0: + /styled-jsx@5.1.1(@babel/core@7.20.2)(react@18.2.0): resolution: { integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, @@ -19925,10 +19948,11 @@ packages: babel-plugin-macros: optional: true dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) client-only: 0.0.1 react: 18.2.0 - /subarg/1.0.0: + /subarg@1.0.0: resolution: { integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==, @@ -19937,7 +19961,7 @@ packages: minimist: 1.2.6 dev: true - /sucrase/3.29.0: + /sucrase@3.29.0: resolution: { integrity: sha512-bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A==, @@ -19953,7 +19977,7 @@ packages: ts-interface-checker: 0.1.13 dev: true - /superjson/1.11.0: + /superjson@1.11.0: resolution: { integrity: sha512-6PfAg1FKhqkwWvPb2uXhH4MkMttdc17eJ91+Aoz4s1XUEDZFmLfFx/xVA3wgkPxAGy5dpozgGdK6V/n20Wj9yg==, @@ -19963,7 +19987,7 @@ packages: copy-anything: 3.0.2 dev: false - /supports-color/5.5.0: + /supports-color@5.5.0: resolution: { integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, @@ -19972,7 +19996,7 @@ packages: dependencies: has-flag: 3.0.0 - /supports-color/7.2.0: + /supports-color@7.2.0: resolution: { integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, @@ -19981,7 +20005,7 @@ packages: dependencies: has-flag: 4.0.0 - /supports-color/8.1.1: + /supports-color@8.1.1: resolution: { integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, @@ -19990,20 +20014,31 @@ packages: dependencies: has-flag: 4.0.0 - /supports-preserve-symlinks-flag/1.0.0: + /supports-hyperlinks@2.3.0: + resolution: + { + integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==, + } + engines: {node: ">=8"} + dependencies: + has-flag: 4.0.0 + supports-color: 7.2.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: resolution: { integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, } engines: {node: ">= 0.4"} - /symbol-tree/3.2.4: + /symbol-tree@3.2.4: resolution: { integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, } - /synckit/0.8.4: + /synckit@0.8.4: resolution: { integrity: sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==, @@ -20012,17 +20047,15 @@ packages: dependencies: "@pkgr/utils": 2.3.1 tslib: 2.4.0 - dev: true - /tapable/2.2.1: + /tapable@2.2.1: resolution: { integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, } engines: {node: ">=6"} - dev: true - /tar/6.1.11: + /tar@6.1.11: resolution: { integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==, @@ -20037,7 +20070,7 @@ packages: yallist: 4.0.0 dev: false - /tcp-port-used/1.0.2: + /tcp-port-used@1.0.2: resolution: { integrity: sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==, @@ -20049,7 +20082,7 @@ packages: - supports-color dev: true - /temp/0.8.4: + /temp@0.8.4: resolution: { integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==, @@ -20059,7 +20092,7 @@ packages: rimraf: 2.6.3 dev: false - /term-size/2.2.1: + /term-size@2.2.1: resolution: { integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, @@ -20067,7 +20100,18 @@ packages: engines: {node: ">=8"} dev: false - /test-exclude/6.0.0: + /terminal-link@2.1.1: + resolution: + { + integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==, + } + engines: {node: ">=8"} + dependencies: + ansi-escapes: 4.3.2 + supports-hyperlinks: 2.3.0 + dev: true + + /test-exclude@6.0.0: resolution: { integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, @@ -20078,20 +20122,20 @@ packages: glob: 7.2.0 minimatch: 3.1.2 - /test-listen/1.1.0: + /test-listen@1.1.0: resolution: { integrity: sha512-OyEVi981C1sb9NX1xayfgZls3p8QTDRwp06EcgxSgd1kktaENBW8dO15i8v/7Fi15j0IYQctJzk5J+hyEBId2w==, } dev: true - /text-table/0.2.0: + /text-table@0.2.0: resolution: { integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, } - /thenify-all/1.6.0: + /thenify-all@1.6.0: resolution: { integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==, @@ -20101,7 +20145,7 @@ packages: thenify: 3.3.1 dev: true - /thenify/3.3.1: + /thenify@3.3.1: resolution: { integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==, @@ -20110,13 +20154,14 @@ packages: any-promise: 1.3.0 dev: true - /through/2.3.8: + /throat@6.0.2: resolution: { - integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==, } + dev: true - /through2/3.0.2: + /through2@3.0.2: resolution: { integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==, @@ -20126,7 +20171,7 @@ packages: readable-stream: 3.6.0 dev: false - /through2/4.0.2: + /through2@4.0.2: resolution: { integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==, @@ -20135,7 +20180,13 @@ packages: readable-stream: 3.6.0 dev: false - /tiny-glob/0.2.9: + /through@2.3.8: + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + } + + /tiny-glob@0.2.9: resolution: { integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==, @@ -20143,29 +20194,28 @@ packages: dependencies: globalyzer: 0.1.0 globrex: 0.1.2 - dev: true - /tinybench/2.3.1: + /tinybench@2.3.1: resolution: { integrity: sha512-hGYWYBMPr7p4g5IarQE7XhlyWveh1EKhy4wUBS1LrHXCKYgvz+4/jCqgmJqZxxldesn05vccrtME2RLLZNW7iA==, } - /tinypool/0.3.0: + /tinypool@0.3.0: resolution: { integrity: sha512-NX5KeqHOBZU6Bc0xj9Vr5Szbb1j8tUHIeD18s41aDJaPeC5QTdEhK0SpdpUrZlj2nv5cctNcSjaKNanXlfcVEQ==, } engines: {node: ">=14.0.0"} - /tinyspy/1.0.2: + /tinyspy@1.0.2: resolution: { integrity: sha512-bSGlgwLBYf7PnUsQ6WOc6SJ3pGOcd+d8AA6EUnLDDM0kWEstC1JIlSZA3UNliDXhd9ABoS7hiRBDCu+XP/sf1Q==, } engines: {node: ">=14.0.0"} - /tlds/1.231.0: + /tlds@1.231.0: resolution: { integrity: sha512-L7UQwueHSkGxZHQBXHVmXW64oi+uqNtzFt2x6Ssk7NVnpIbw16CRs4eb/jmKOZ9t2JnqZ/b3Cfvo97lnXqKrhw==, @@ -20173,7 +20223,7 @@ packages: hasBin: true dev: true - /tmp/0.0.33: + /tmp@0.0.33: resolution: { integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, @@ -20183,7 +20233,7 @@ packages: os-tmpdir: 1.0.2 dev: false - /tmp/0.2.1: + /tmp@0.2.1: resolution: { integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==, @@ -20193,20 +20243,20 @@ packages: rimraf: 3.0.2 dev: true - /tmpl/1.0.5: + /tmpl@1.0.5: resolution: { integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, } - /to-fast-properties/2.0.0: + /to-fast-properties@2.0.0: resolution: { integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, } engines: {node: ">=4"} - /to-object-path/0.3.0: + /to-object-path@0.3.0: resolution: { integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==, @@ -20216,7 +20266,7 @@ packages: kind-of: 3.2.2 dev: false - /to-readable-stream/1.0.0: + /to-readable-stream@1.0.0: resolution: { integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==, @@ -20224,7 +20274,7 @@ packages: engines: {node: ">=6"} dev: false - /to-regex-range/2.1.1: + /to-regex-range@2.1.1: resolution: { integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==, @@ -20235,7 +20285,7 @@ packages: repeat-string: 1.6.1 dev: false - /to-regex-range/5.0.1: + /to-regex-range@5.0.1: resolution: { integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, @@ -20244,7 +20294,7 @@ packages: dependencies: is-number: 7.0.0 - /to-regex/3.0.2: + /to-regex@3.0.2: resolution: { integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==, @@ -20257,7 +20307,7 @@ packages: safe-regex: 1.1.0 dev: false - /toidentifier/1.0.1: + /toidentifier@1.0.1: resolution: { integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, @@ -20265,11 +20315,11 @@ packages: engines: {node: ">=0.6"} dev: true - /token-stream/1.0.0: + /token-stream@1.0.0: resolution: {integrity: sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=} dev: true - /totalist/1.1.0: + /totalist@1.1.0: resolution: { integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==, @@ -20277,7 +20327,7 @@ packages: engines: {node: ">=6"} dev: true - /tough-cookie/4.0.0: + /tough-cookie@4.0.0: resolution: { integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==, @@ -20288,7 +20338,7 @@ packages: punycode: 2.1.1 universalify: 0.1.2 - /tough-cookie/4.1.2: + /tough-cookie@4.1.2: resolution: { integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==, @@ -20300,7 +20350,17 @@ packages: universalify: 0.2.0 url-parse: 1.5.10 - /tr46/3.0.0: + /tr46@2.1.0: + resolution: + { + integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==, + } + engines: {node: ">=8"} + dependencies: + punycode: 2.1.1 + dev: true + + /tr46@3.0.0: resolution: { integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==, @@ -20309,7 +20369,7 @@ packages: dependencies: punycode: 2.1.1 - /tree-kill/1.2.2: + /tree-kill@1.2.2: resolution: { integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==, @@ -20317,7 +20377,7 @@ packages: hasBin: true dev: true - /trim-newlines/3.0.1: + /trim-newlines@3.0.1: resolution: { integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, @@ -20325,14 +20385,14 @@ packages: engines: {node: ">=8"} dev: false - /ts-interface-checker/0.1.13: + /ts-interface-checker@0.1.13: resolution: { integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==, } dev: true - /ts-jest/27.1.4_typescript@4.8.4: + /ts-jest@27.1.4(@babel/core@7.12.10)(esbuild@0.14.51)(jest@27.5.1)(typescript@4.8.4): resolution: { integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==, @@ -20356,8 +20416,11 @@ packages: esbuild: optional: true dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) bs-logger: 0.2.6 + esbuild: 0.14.51 fast-json-stable-stringify: 2.1.0 + jest: 27.5.1(supports-color@8.1.1) jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -20367,7 +20430,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-node/10.9.1_cbe7ovvae6zqfnmtgctpgpys54: + /ts-node@10.9.1(@types/node@18.11.9)(typescript@4.8.4): resolution: { integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, @@ -20399,9 +20462,8 @@ packages: typescript: 4.8.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: false - /ts-node/10.9.1_ieummqxttktzud32hpyrer46t4: + /ts-node@10.9.1(@types/node@18.7.13)(typescript@4.8.4): resolution: { integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, @@ -20435,39 +20497,7 @@ packages: yn: 3.1.1 dev: true - /ts-node/10.9.1_typescript@4.8.4: - 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.10 - "@tsconfig/node14": 1.0.2 - "@tsconfig/node16": 1.0.3 - acorn: 8.7.1 - 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.8.4 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - - /tsconfig-paths/3.14.1: + /tsconfig-paths@3.14.1: resolution: { integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==, @@ -20478,7 +20508,7 @@ packages: minimist: 1.2.6 strip-bom: 3.0.0 - /tsconfig-paths/4.0.0: + /tsconfig-paths@4.0.0: resolution: { integrity: sha512-SLBg2GBKlR6bVtMgJJlud/o3waplKtL7skmLkExomIiaAtLGtVsoXIqP3SYdjbcH9lq/KVv7pMZeCBpLYOit6Q==, @@ -20488,19 +20518,19 @@ packages: minimist: 1.2.6 strip-bom: 3.0.0 - /tslib/1.14.1: + /tslib@1.14.1: resolution: { integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, } - /tslib/2.4.0: + /tslib@2.4.0: resolution: { integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==, } - /tslog/3.3.4: + /tslog@3.3.4: resolution: { integrity: sha512-N0HHuHE0e/o75ALfkioFObknHR5dVchUad4F0XyFf3gXJYB++DewEzwGI/uIOM216E5a43ovnRNEeQIq9qgm4Q==, @@ -20510,7 +20540,7 @@ packages: source-map-support: 0.5.21 dev: false - /tsscmp/1.0.6: + /tsscmp@1.0.6: resolution: { integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==, @@ -20518,7 +20548,7 @@ packages: engines: {node: ">=0.6.x"} dev: false - /tsutils/3.21.0_typescript@4.8.4: + /tsutils@3.21.0(typescript@4.8.4): resolution: { integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, @@ -20530,7 +20560,7 @@ packages: tslib: 1.14.1 typescript: 4.8.4 - /tty-table/2.8.13: + /tty-table@2.8.13: resolution: { integrity: sha512-eVV/+kB6fIIdx+iUImhXrO22gl7f6VmmYh0Zbu6C196fe1elcHXd7U6LcLXu0YoVPc2kNesWiukYcdK8ZmJ6aQ==, @@ -20546,7 +20576,7 @@ packages: yargs: 15.4.1 dev: false - /turbo-android-arm64/1.4.2: + /turbo-android-arm64@1.4.2: resolution: { integrity: sha512-h6PorJ+muKDQE3wETwrkx3NpqypAxjIFLP3b8RQaAoNvxYa1JTSC71VMtYxMbwuDk58A1KGbXLDteR4by8Lqew==, @@ -20557,7 +20587,7 @@ packages: dev: false optional: true - /turbo-darwin-64/1.4.2: + /turbo-darwin-64@1.4.2: resolution: { integrity: sha512-HrXRwx+5FuKeR4r2ea2mWO5dImzxG7z987t4xZWytEWJ0gEujln1z1cjwotYU1l2pq8slJS8W3q9Qv3JRMrSkQ==, @@ -20568,7 +20598,7 @@ packages: dev: false optional: true - /turbo-darwin-arm64/1.4.2: + /turbo-darwin-arm64@1.4.2: resolution: { integrity: sha512-/qkMqq1hdbM/I0gchx08/ZZucgnQVp6gd03tHHYnyG20z8a39f38MbX7+I5aLRpa3pQzBk8RgNx0o7G1T+KvzA==, @@ -20579,7 +20609,7 @@ packages: dev: false optional: true - /turbo-freebsd-64/1.4.2: + /turbo-freebsd-64@1.4.2: resolution: { integrity: sha512-bZcjR7GxpuE/0qz/aKg4gWDa+6eiuoV0cRnqCJ/rae14/iSmBt0MsMa+lUH5gZUFj581Dj8fQRoBeE+EOau5CA==, @@ -20590,7 +20620,7 @@ packages: dev: false optional: true - /turbo-freebsd-arm64/1.4.2: + /turbo-freebsd-arm64@1.4.2: resolution: { integrity: sha512-dDx++7AELGAHuaMQjzNiKjSPu/xdDelUtRjWOzJWmwXzrgJlwNgQ93p+LYEA7LBWVZ8a32fpBE/VDait0alIJw==, @@ -20601,7 +20631,7 @@ packages: dev: false optional: true - /turbo-linux-32/1.4.2: + /turbo-linux-32@1.4.2: resolution: { integrity: sha512-AAxsEYhgv6x4UXwCoiRe+iL2pd+ArsJQDMgJGsJn+Tb09ca6+i1rTgdOTgcCSyvRwbXt0LYzqXN9zp6FwG6VHQ==, @@ -20612,7 +20642,7 @@ packages: dev: false optional: true - /turbo-linux-64/1.4.2: + /turbo-linux-64@1.4.2: resolution: { integrity: sha512-t7gGxp1ILmGwzymcf72Lw4Ca916Bi9j2C4xPnJ2CAqxMWQOJKCRvyOuUHC/uy1kFDjR2yszxMb+ZJL6P3nccfA==, @@ -20623,29 +20653,29 @@ packages: dev: false optional: true - /turbo-linux-arm/1.4.2: + /turbo-linux-arm64@1.4.2: resolution: { - integrity: sha512-6Rri//bX3wPMa8D0sSie05Xuze+6jTUDt4qsKp+JoQVanUKkKmRaVDpyV4WuFfjDbC5iP4ocN20FeaXenMFxTA==, + integrity: sha512-V7eBFUOrIvLvjrc81UE8C+NfqBRKADyKrrbKD9hMG5beE/piZZNGoHUwuEgLgsykCSfHjn1sQCidocVztuTMAw==, } - cpu: [arm] + cpu: [arm64] os: [linux] requiresBuild: true dev: false optional: true - /turbo-linux-arm64/1.4.2: + /turbo-linux-arm@1.4.2: resolution: { - integrity: sha512-V7eBFUOrIvLvjrc81UE8C+NfqBRKADyKrrbKD9hMG5beE/piZZNGoHUwuEgLgsykCSfHjn1sQCidocVztuTMAw==, + integrity: sha512-6Rri//bX3wPMa8D0sSie05Xuze+6jTUDt4qsKp+JoQVanUKkKmRaVDpyV4WuFfjDbC5iP4ocN20FeaXenMFxTA==, } - cpu: [arm64] + cpu: [arm] os: [linux] requiresBuild: true dev: false optional: true - /turbo-linux-mips64le/1.4.2: + /turbo-linux-mips64le@1.4.2: resolution: { integrity: sha512-C0JpzpwyvhW5ChWr6S7ulUd8a+1SBLe2mLBepTWaXTh/5+sFDU/AMwPNkhpfV5o0gEtz03UPm7Y4G6dqU3UCAQ==, @@ -20656,7 +20686,7 @@ packages: dev: false optional: true - /turbo-linux-ppc64le/1.4.2: + /turbo-linux-ppc64le@1.4.2: resolution: { integrity: sha512-ipxyQCj3NXq/2V6a4lKoNDt8CjcufICgHAvOhAUmoAxz4kIEKRvA/75xsPpt2Ih/a4fWGxsbWFK6oA+ac0l3jQ==, @@ -20667,7 +20697,7 @@ packages: dev: false optional: true - /turbo-windows-32/1.4.2: + /turbo-windows-32@1.4.2: resolution: { integrity: sha512-pCvsh8mPSw6ZFABQqeJzfercnsOwCj1LpbWTPW1QftDij6zw1OWU4jWU529Ub1f+GMBej+xm/ufJhT+8A3NhwA==, @@ -20678,7 +20708,7 @@ packages: dev: false optional: true - /turbo-windows-64/1.4.2: + /turbo-windows-64@1.4.2: resolution: { integrity: sha512-GnvM8uGOA6idUloDDxiEgUpIx5o5ZJL0ARL7f+6r/vfwA+qlSe/F+4hDCmT3+Xkg7/7zDZix5ViKVoTDMBP/Ig==, @@ -20689,7 +20719,7 @@ packages: dev: false optional: true - /turbo-windows-arm64/1.4.2: + /turbo-windows-arm64@1.4.2: resolution: { integrity: sha512-2mCPiDnMLY924+M07mMo464cjOr0EITuIkK67IBm3EeEwSlunOmQk+LRc/Jq/Zx6Zuzp5XPZ2fZVvmmSFfogpQ==, @@ -20700,7 +20730,7 @@ packages: dev: false optional: true - /turbo/1.4.2: + /turbo@1.4.2: resolution: { integrity: sha512-ry1vUs5oHCIM+Sef8HED2XsbL28YAeclCrOtDp9zbZZMUX1r5s01COqOJjFJZfDiv2zSlUge9IIQXprM8BfrtA==, @@ -20724,7 +20754,7 @@ packages: turbo-windows-arm64: 1.4.2 dev: false - /type-check/0.3.2: + /type-check@0.3.2: resolution: { integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==, @@ -20733,7 +20763,7 @@ packages: dependencies: prelude-ls: 1.1.2 - /type-check/0.4.0: + /type-check@0.4.0: resolution: { integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, @@ -20742,14 +20772,14 @@ packages: dependencies: prelude-ls: 1.2.1 - /type-detect/4.0.8: + /type-detect@4.0.8: resolution: { integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, } engines: {node: ">=4"} - /type-fest/0.12.0: + /type-fest@0.12.0: resolution: { integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==, @@ -20757,7 +20787,7 @@ packages: engines: {node: ">=10"} dev: false - /type-fest/0.13.1: + /type-fest@0.13.1: resolution: { integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, @@ -20765,21 +20795,21 @@ packages: engines: {node: ">=10"} dev: false - /type-fest/0.20.2: + /type-fest@0.20.2: resolution: { integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, } engines: {node: ">=10"} - /type-fest/0.21.3: + /type-fest@0.21.3: resolution: { integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, } engines: {node: ">=10"} - /type-fest/0.6.0: + /type-fest@0.6.0: resolution: { integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, @@ -20787,14 +20817,14 @@ packages: engines: {node: ">=8"} dev: false - /type-fest/0.8.1: + /type-fest@0.8.1: resolution: { integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, } engines: {node: ">=8"} - /type-fest/2.16.0: + /type-fest@2.16.0: resolution: { integrity: sha512-qpaThT2HQkFb83gMOrdKVsfCN7LKxP26Yq+smPzY1FqoHRjqmjqHXA7n5Gkxi8efirtbeEUxzfEdePthQWCuHw==, @@ -20802,7 +20832,7 @@ packages: engines: {node: ">=12.20"} dev: false - /type-is/1.6.18: + /type-is@1.6.18: resolution: { integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==, @@ -20813,7 +20843,16 @@ packages: mime-types: 2.1.35 dev: true - /typescript/4.8.4: + /typedarray-to-buffer@3.1.5: + resolution: + { + integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==, + } + dependencies: + is-typedarray: 1.0.0 + dev: true + + /typescript@4.8.4: resolution: { integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==, @@ -20821,14 +20860,14 @@ packages: engines: {node: ">=4.2.0"} hasBin: true - /uc.micro/1.0.6: + /uc.micro@1.0.6: resolution: { integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==, } dev: true - /unbox-primitive/1.0.2: + /unbox-primitive@1.0.2: resolution: { integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, @@ -20839,18 +20878,18 @@ packages: has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - /unbuild/0.6.9_supports-color@8.1.1: + /unbuild@0.6.9(supports-color@8.1.1): resolution: { integrity: sha512-IALhVj6cLWAxFqX5qcuR932Y3OKFgWcZXPeQ0qU1YAuBucWzpY171GHMi+rXot3C4V7JwD0khGmjvu41E980mQ==, } hasBin: true dependencies: - "@rollup/plugin-alias": 3.1.9_rollup@2.77.2 - "@rollup/plugin-commonjs": 21.1.0_rollup@2.77.2 - "@rollup/plugin-json": 4.1.0_rollup@2.77.2 - "@rollup/plugin-node-resolve": 13.3.0_rollup@2.77.2 - "@rollup/plugin-replace": 3.1.0_rollup@2.77.2 + "@rollup/plugin-alias": 3.1.9(rollup@2.77.2) + "@rollup/plugin-commonjs": 21.1.0(rollup@2.77.2) + "@rollup/plugin-json": 4.1.0(rollup@2.77.2) + "@rollup/plugin-node-resolve": 13.3.0(rollup@2.77.2) + "@rollup/plugin-replace": 3.1.0(rollup@2.77.2) "@rollup/pluginutils": 4.2.1 chalk: 5.0.1 consola: 2.15.3 @@ -20860,7 +20899,7 @@ packages: jiti: 1.14.0 magic-string: 0.25.9 mkdirp: 1.0.4 - mkdist: 0.3.13_typescript@4.8.4 + mkdist: 0.3.13(typescript@4.8.4) mlly: 0.4.3 mri: 1.2.0 pathe: 0.2.0 @@ -20868,8 +20907,8 @@ packages: pretty-bytes: 5.6.0 rimraf: 3.0.2 rollup: 2.77.2 - rollup-plugin-dts: 4.2.2_rpktusa5o437llwxsnrngyem64 - rollup-plugin-esbuild: 4.9.1_omx4rqyluc7ex52umwalnnwm7m + rollup-plugin-dts: 4.2.2(rollup@2.77.2)(typescript@4.8.4) + rollup-plugin-esbuild: 4.9.1(esbuild@0.14.51)(rollup@2.77.2)(supports-color@8.1.1) scule: 0.2.1 typescript: 4.8.4 untyped: 0.3.0 @@ -20877,56 +20916,18 @@ packages: - supports-color dev: true - /unbuild/0.7.6: - resolution: - { - integrity: sha512-W6pFPS6/ewlEV5uWbNgfo0i2LbVBsue5GKlOkCo6ozIrInOBEgq4s3HCUB5eZSw6Ty2iwF8dKM65pZX7QGZJ0g==, - } - hasBin: true - dependencies: - "@rollup/plugin-alias": 3.1.9_rollup@2.77.2 - "@rollup/plugin-commonjs": 22.0.1_rollup@2.77.2 - "@rollup/plugin-json": 4.1.0_rollup@2.77.2 - "@rollup/plugin-node-resolve": 13.3.0_rollup@2.77.2 - "@rollup/plugin-replace": 4.0.0_rollup@2.77.2 - "@rollup/pluginutils": 4.2.1 - chalk: 5.0.1 - consola: 2.15.3 - defu: 6.0.0 - esbuild: 0.14.51 - hookable: 5.1.1 - jiti: 1.14.0 - magic-string: 0.26.2 - mkdirp: 1.0.4 - mkdist: 0.3.13_typescript@4.8.4 - mlly: 0.5.5 - mri: 1.2.0 - pathe: 0.3.2 - pkg-types: 0.3.3 - pretty-bytes: 6.0.0 - rimraf: 3.0.2 - rollup: 2.77.2 - rollup-plugin-dts: 4.2.2_rpktusa5o437llwxsnrngyem64 - rollup-plugin-esbuild: 4.9.1_ecpsl2p7zl5puhr4xxlpah6uzm - scule: 0.2.1 - typescript: 4.8.4 - untyped: 0.4.4 - transitivePeerDependencies: - - supports-color - dev: true - - /unbuild/0.7.6_supports-color@8.1.1: + /unbuild@0.7.6(supports-color@8.1.1): resolution: { integrity: sha512-W6pFPS6/ewlEV5uWbNgfo0i2LbVBsue5GKlOkCo6ozIrInOBEgq4s3HCUB5eZSw6Ty2iwF8dKM65pZX7QGZJ0g==, } hasBin: true dependencies: - "@rollup/plugin-alias": 3.1.9_rollup@2.77.2 - "@rollup/plugin-commonjs": 22.0.1_rollup@2.77.2 - "@rollup/plugin-json": 4.1.0_rollup@2.77.2 - "@rollup/plugin-node-resolve": 13.3.0_rollup@2.77.2 - "@rollup/plugin-replace": 4.0.0_rollup@2.77.2 + "@rollup/plugin-alias": 3.1.9(rollup@2.77.2) + "@rollup/plugin-commonjs": 22.0.1(rollup@2.77.2) + "@rollup/plugin-json": 4.1.0(rollup@2.77.2) + "@rollup/plugin-node-resolve": 13.3.0(rollup@2.77.2) + "@rollup/plugin-replace": 4.0.0(rollup@2.77.2) "@rollup/pluginutils": 4.2.1 chalk: 5.0.1 consola: 2.15.3 @@ -20936,7 +20937,7 @@ packages: jiti: 1.14.0 magic-string: 0.26.2 mkdirp: 1.0.4 - mkdist: 0.3.13_typescript@4.8.4 + mkdist: 0.3.13(typescript@4.8.4) mlly: 0.5.5 mri: 1.2.0 pathe: 0.3.2 @@ -20944,23 +20945,23 @@ packages: pretty-bytes: 6.0.0 rimraf: 3.0.2 rollup: 2.77.2 - rollup-plugin-dts: 4.2.2_rpktusa5o437llwxsnrngyem64 - rollup-plugin-esbuild: 4.9.1_omx4rqyluc7ex52umwalnnwm7m + rollup-plugin-dts: 4.2.2(rollup@2.77.2)(typescript@4.8.4) + rollup-plugin-esbuild: 4.9.1(esbuild@0.14.51)(rollup@2.77.2)(supports-color@8.1.1) scule: 0.2.1 typescript: 4.8.4 - untyped: 0.4.4_supports-color@8.1.1 + untyped: 0.4.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true - /unicode-canonical-property-names-ecmascript/2.0.0: + /unicode-canonical-property-names-ecmascript@2.0.0: resolution: { integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, } engines: {node: ">=4"} - /unicode-match-property-ecmascript/2.0.0: + /unicode-match-property-ecmascript@2.0.0: resolution: { integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, @@ -20970,21 +20971,21 @@ packages: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.0.0 - /unicode-match-property-value-ecmascript/2.0.0: + /unicode-match-property-value-ecmascript@2.0.0: resolution: { integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==, } engines: {node: ">=4"} - /unicode-property-aliases-ecmascript/2.0.0: + /unicode-property-aliases-ecmascript@2.0.0: resolution: { integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==, } engines: {node: ">=4"} - /union-value/1.0.1: + /union-value@1.0.1: resolution: { integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==, @@ -20997,28 +20998,28 @@ packages: set-value: 2.0.1 dev: false - /universalify/0.1.2: + /universalify@0.1.2: resolution: { integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, } engines: {node: ">= 4.0.0"} - /universalify/0.2.0: + /universalify@0.2.0: resolution: { integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, } engines: {node: ">= 4.0.0"} - /universalify/2.0.0: + /universalify@2.0.0: resolution: { integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, } engines: {node: ">= 10.0.0"} - /unpipe/1.0.0: + /unpipe@1.0.0: resolution: { integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, @@ -21026,7 +21027,7 @@ packages: engines: {node: ">= 0.8"} dev: true - /unset-value/1.0.0: + /unset-value@1.0.0: resolution: { integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==, @@ -21037,34 +21038,20 @@ packages: isobject: 3.0.1 dev: false - /untyped/0.3.0: + /untyped@0.3.0: resolution: { integrity: sha512-n4M5/T1wWlHFmohk0EhS+yM7W/h5dOtQldOV3MVEbZY1fTy5A47UL8+d8GLW1iwmaAwNrM5ERy3qe1k0T/Yc7A==, } dev: true - /untyped/0.4.4: - resolution: - { - integrity: sha512-sY6u8RedwfLfBis0copfU/fzROieyAndqPs8Kn2PfyzTjtA88vCk81J1b5z+8/VJc+cwfGy23/AqOCpvAbkNVw==, - } - dependencies: - "@babel/core": 7.20.2 - "@babel/standalone": 7.18.9 - "@babel/types": 7.18.4 - scule: 0.2.1 - transitivePeerDependencies: - - supports-color - dev: true - - /untyped/0.4.4_supports-color@8.1.1: + /untyped@0.4.4(supports-color@8.1.1): resolution: { integrity: sha512-sY6u8RedwfLfBis0copfU/fzROieyAndqPs8Kn2PfyzTjtA88vCk81J1b5z+8/VJc+cwfGy23/AqOCpvAbkNVw==, } dependencies: - "@babel/core": 7.20.2_supports-color@8.1.1 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/standalone": 7.18.9 "@babel/types": 7.18.4 scule: 0.2.1 @@ -21072,7 +21059,7 @@ packages: - supports-color dev: true - /update-browserslist-db/1.0.10_browserslist@4.21.4: + /update-browserslist-db@1.0.10(browserslist@4.21.4): resolution: { integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==, @@ -21085,7 +21072,7 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 - /uri-js/4.4.1: + /uri-js@4.4.1: resolution: { integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, @@ -21093,7 +21080,7 @@ packages: dependencies: punycode: 2.1.1 - /urix/0.1.0: + /urix@0.1.0: resolution: { integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==, @@ -21101,7 +21088,7 @@ packages: deprecated: Please see https://github.com/lydell/urix#deprecated dev: false - /url-parse-lax/3.0.0: + /url-parse-lax@3.0.0: resolution: { integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==, @@ -21111,7 +21098,7 @@ packages: prepend-http: 2.0.0 dev: false - /url-parse/1.5.10: + /url-parse@1.5.10: resolution: { integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, @@ -21120,14 +21107,14 @@ packages: querystringify: 2.2.0 requires-port: 1.0.0 - /url/0.11.0: + /url@0.11.0: resolution: {integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=} dependencies: punycode: 1.3.2 querystring: 0.2.0 dev: false - /use-sync-external-store/1.2.0_react@18.2.0: + /use-sync-external-store@1.2.0(react@18.2.0): resolution: { integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==, @@ -21137,7 +21124,7 @@ packages: dependencies: react: 18.2.0 - /use/3.1.1: + /use@3.1.1: resolution: { integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==, @@ -21145,7 +21132,7 @@ packages: engines: {node: ">=0.10.0"} dev: false - /username/5.1.0: + /username@5.1.0: resolution: { integrity: sha512-PCKbdWw85JsYMvmCv5GH3kXmM66rCd9m1hBEDutPNv94b/pqCMT4NtcKyeWYvLFiE8b+ha1Jdl8XAaUdPn5QTg==, @@ -21156,13 +21143,13 @@ packages: mem: 4.3.0 dev: false - /util-deprecate/1.0.2: + /util-deprecate@1.0.2: resolution: { integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, } - /util/0.10.4: + /util@0.10.4: resolution: { integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==, @@ -21171,27 +21158,39 @@ packages: inherits: 2.0.3 dev: false - /utils-merge/1.0.1: + /utils-merge@1.0.1: resolution: { integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, } engines: {node: ">= 0.4.0"} - /uuid/8.3.2: + /uuid@8.3.2: resolution: { integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, } hasBin: true - /v8-compile-cache-lib/3.0.1: + /v8-compile-cache-lib@3.0.1: resolution: { integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, } - /v8-to-istanbul/9.0.1: + /v8-to-istanbul@8.1.1: + resolution: + { + integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==, + } + engines: {node: ">=10.12.0"} + dependencies: + "@types/istanbul-lib-coverage": 2.0.4 + convert-source-map: 1.8.0 + source-map: 0.7.4 + dev: true + + /v8-to-istanbul@9.0.1: resolution: { integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==, @@ -21202,7 +21201,7 @@ packages: "@types/istanbul-lib-coverage": 2.0.4 convert-source-map: 1.8.0 - /validate-npm-package-license/3.0.4: + /validate-npm-package-license@3.0.4: resolution: { integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, @@ -21212,7 +21211,7 @@ packages: spdx-expression-parse: 3.0.1 dev: false - /validate-npm-package-name/3.0.0: + /validate-npm-package-name@3.0.0: resolution: { integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==, @@ -21221,7 +21220,7 @@ packages: builtins: 1.0.3 dev: false - /vary/1.1.2: + /vary@1.1.2: resolution: { integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==, @@ -21229,7 +21228,7 @@ packages: engines: {node: ">= 0.8"} dev: true - /vinyl-file/3.0.0: + /vinyl-file@3.0.0: resolution: { integrity: sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==, @@ -21243,7 +21242,7 @@ packages: vinyl: 2.2.1 dev: false - /vinyl/2.2.1: + /vinyl@2.2.1: resolution: { integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==, @@ -21258,7 +21257,7 @@ packages: replace-ext: 1.0.1 dev: false - /vite-tsconfig-paths/3.6.0: + /vite-tsconfig-paths@3.6.0(vite@3.2.4): resolution: { integrity: sha512-UfsPYonxLqPD633X8cWcPFVuYzx/CMNHAjZTasYwX69sXpa4gNmQkR0XCjj82h7zhLGdTWagMjC1qfb9S+zv0A==, @@ -21266,15 +21265,16 @@ packages: peerDependencies: vite: ">2.0.0-0" dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) globrex: 0.1.2 recrawl-sync: 2.2.3 tsconfig-paths: 4.0.0 + vite: 3.2.4(@types/node@18.11.9) transitivePeerDependencies: - supports-color dev: true - /vite/3.2.4_@types+node@18.11.9: + /vite@3.2.4(@types/node@18.11.9): resolution: { integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==, @@ -21310,7 +21310,7 @@ packages: optionalDependencies: fsevents: 2.3.2 - /vitest/0.25.3_jsdom@19.0.0: + /vitest@0.25.3(jsdom@19.0.0): resolution: { integrity: sha512-/UzHfXIKsELZhL7OaM2xFlRF8HRZgAHtPctacvNK8H4vOcbJJAMEgbWNGSAK7Y9b1NBe5SeM7VTuz2RsTHFJJA==, @@ -21341,7 +21341,7 @@ packages: acorn: 8.8.1 acorn-walk: 8.2.0 chai: 4.3.6 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) jsdom: 19.0.0 local-pkg: 0.4.2 source-map: 0.6.1 @@ -21349,7 +21349,7 @@ packages: tinybench: 2.3.1 tinypool: 0.3.0 tinyspy: 1.0.2 - vite: 3.2.4_@types+node@18.11.9 + vite: 3.2.4(@types/node@18.11.9) transitivePeerDependencies: - less - sass @@ -21359,7 +21359,7 @@ packages: - terser dev: false - /vitest/0.25.3_jsdom@20.0.3: + /vitest@0.25.3(jsdom@20.0.3): resolution: { integrity: sha512-/UzHfXIKsELZhL7OaM2xFlRF8HRZgAHtPctacvNK8H4vOcbJJAMEgbWNGSAK7Y9b1NBe5SeM7VTuz2RsTHFJJA==, @@ -21390,7 +21390,7 @@ packages: acorn: 8.8.1 acorn-walk: 8.2.0 chai: 4.3.6 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) jsdom: 20.0.3 local-pkg: 0.4.2 source-map: 0.6.1 @@ -21398,7 +21398,7 @@ packages: tinybench: 2.3.1 tinypool: 0.3.0 tinyspy: 1.0.2 - vite: 3.2.4_@types+node@18.11.9 + vite: 3.2.4(@types/node@18.11.9) transitivePeerDependencies: - less - sass @@ -21408,7 +21408,7 @@ packages: - terser dev: true - /void-elements/3.1.0: + /void-elements@3.1.0: resolution: { integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==, @@ -21416,7 +21416,7 @@ packages: engines: {node: ">=0.10.0"} dev: true - /w3c-hr-time/1.0.2: + /w3c-hr-time@1.0.2: resolution: { integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==, @@ -21424,7 +21424,17 @@ packages: dependencies: browser-process-hrtime: 1.0.0 - /w3c-xmlserializer/3.0.0: + /w3c-xmlserializer@2.0.0: + resolution: + { + integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==, + } + engines: {node: ">=10"} + dependencies: + xml-name-validator: 3.0.0 + dev: true + + /w3c-xmlserializer@3.0.0: resolution: { integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==, @@ -21433,7 +21443,7 @@ packages: dependencies: xml-name-validator: 4.0.0 - /w3c-xmlserializer/4.0.0: + /w3c-xmlserializer@4.0.0: resolution: { integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==, @@ -21442,7 +21452,7 @@ packages: dependencies: xml-name-validator: 4.0.0 - /wait-on/6.0.1: + /wait-on@6.0.1: resolution: { integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==, @@ -21459,7 +21469,7 @@ packages: - debug dev: false - /wait-port/1.0.4: + /wait-port@1.0.4: resolution: { integrity: sha512-w8Ftna3h6XSFWWc2JC5gZEgp64nz8bnaTp5cvzbJSZ53j+omktWTDdwXxEF0jM8YveviLgFWvNGrSvRHnkyHyw==, @@ -21469,12 +21479,12 @@ packages: dependencies: chalk: 4.1.2 commander: 9.4.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false - /walker/1.0.8: + /walker@1.0.8: resolution: { integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, @@ -21482,7 +21492,7 @@ packages: dependencies: makeerror: 1.0.12 - /watch/1.0.2: + /watch@1.0.2: resolution: {integrity: sha1-NApxe952Vyb6CqB9ch4BR6VR3ww=} engines: {node: ">=0.1.95"} hasBin: true @@ -21491,7 +21501,7 @@ packages: minimist: 1.2.6 dev: true - /watchpack/2.1.1: + /watchpack@2.1.1: resolution: { integrity: sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==, @@ -21502,7 +21512,7 @@ packages: graceful-fs: 4.2.10 dev: false - /wcwidth/1.0.1: + /wcwidth@1.0.1: resolution: { integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, @@ -21511,21 +21521,37 @@ packages: defaults: 1.0.3 dev: false - /web-streams-polyfill/3.2.1: + /web-streams-polyfill@3.2.1: resolution: { integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==, } engines: {node: ">= 8"} - /webidl-conversions/7.0.0: + /webidl-conversions@5.0.0: + resolution: + { + integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==, + } + engines: {node: ">=8"} + dev: true + + /webidl-conversions@6.1.0: + resolution: + { + integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==, + } + engines: {node: ">=10.4"} + dev: true + + /webidl-conversions@7.0.0: resolution: { integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==, } engines: {node: ">=12"} - /webpack-bundle-analyzer/4.3.0: + /webpack-bundle-analyzer@4.3.0: resolution: { integrity: sha512-J3TPm54bPARx6QG8z4cKBszahnUglcv70+N+8gUqv2I5KOFHJbzBiLx+pAp606so0X004fxM7hqRu10MLjJifA==, @@ -21547,7 +21573,16 @@ packages: - utf-8-validate dev: true - /whatwg-encoding/2.0.0: + /whatwg-encoding@1.0.5: + resolution: + { + integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==, + } + dependencies: + iconv-lite: 0.4.24 + dev: true + + /whatwg-encoding@2.0.0: resolution: { integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==, @@ -21556,14 +21591,21 @@ packages: dependencies: iconv-lite: 0.6.3 - /whatwg-mimetype/3.0.0: + /whatwg-mimetype@2.3.0: + resolution: + { + integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==, + } + dev: true + + /whatwg-mimetype@3.0.0: resolution: { integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==, } engines: {node: ">=12"} - /whatwg-url/10.0.0: + /whatwg-url@10.0.0: resolution: { integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==, @@ -21573,7 +21615,7 @@ packages: tr46: 3.0.0 webidl-conversions: 7.0.0 - /whatwg-url/11.0.0: + /whatwg-url@11.0.0: resolution: { integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==, @@ -21583,7 +21625,19 @@ packages: tr46: 3.0.0 webidl-conversions: 7.0.0 - /which-boxed-primitive/1.0.2: + /whatwg-url@8.7.0: + resolution: + { + integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==, + } + engines: {node: ">=10"} + dependencies: + lodash: 4.17.21 + tr46: 2.1.0 + webidl-conversions: 6.1.0 + dev: true + + /which-boxed-primitive@1.0.2: resolution: { integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, @@ -21595,14 +21649,14 @@ packages: is-string: 1.0.7 is-symbol: 1.0.4 - /which-module/2.0.0: + /which-module@2.0.0: resolution: { integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==, } dev: false - /which-pm-runs/1.1.0: + /which-pm-runs@1.1.0: resolution: { integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==, @@ -21610,7 +21664,7 @@ packages: engines: {node: ">=4"} dev: false - /which-pm/2.0.0: + /which-pm@2.0.0: resolution: { integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==, @@ -21621,7 +21675,7 @@ packages: path-exists: 4.0.0 dev: false - /which/1.3.1: + /which@1.3.1: resolution: { integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, @@ -21630,7 +21684,7 @@ packages: dependencies: isexe: 2.0.0 - /which/2.0.2: + /which@2.0.2: resolution: { integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, @@ -21640,7 +21694,7 @@ packages: dependencies: isexe: 2.0.0 - /widest-line/3.1.0: + /widest-line@3.1.0: resolution: { integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==, @@ -21650,7 +21704,7 @@ packages: string-width: 4.2.3 dev: false - /widest-line/4.0.1: + /widest-line@4.0.1: resolution: { integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==, @@ -21660,7 +21714,7 @@ packages: string-width: 5.1.2 dev: false - /windows-release/5.0.1: + /windows-release@5.0.1: resolution: { integrity: sha512-y1xFdFvdMiDXI3xiOhMbJwt1Y7dUxidha0CWPs1NgjZIjZANTcX7+7bMqNjuezhzb8s5JGEiBAbQjQQYYy7ulw==, @@ -21670,7 +21724,7 @@ packages: execa: 5.1.1 dev: false - /with/7.0.2: + /with@7.0.2: resolution: { integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==, @@ -21683,14 +21737,14 @@ packages: babel-walk: 3.0.0-canary-5 dev: true - /word-wrap/1.2.3: + /word-wrap@1.2.3: resolution: { integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==, } engines: {node: ">=0.10.0"} - /wrap-ansi/6.2.0: + /wrap-ansi@6.2.0: resolution: { integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, @@ -21701,7 +21755,7 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi/7.0.0: + /wrap-ansi@7.0.0: resolution: { integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, @@ -21712,7 +21766,7 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi/8.0.1: + /wrap-ansi@8.0.1: resolution: { integrity: sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g==, @@ -21724,13 +21778,13 @@ packages: strip-ansi: 7.0.1 dev: false - /wrappy/1.0.2: + /wrappy@1.0.2: resolution: { integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, } - /write-file-atomic/2.4.3: + /write-file-atomic@2.4.3: resolution: { integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==, @@ -21741,7 +21795,19 @@ packages: signal-exit: 3.0.7 dev: false - /write-file-atomic/4.0.2: + /write-file-atomic@3.0.3: + resolution: + { + integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==, + } + dependencies: + imurmurhash: 0.1.4 + is-typedarray: 1.0.0 + signal-exit: 3.0.7 + typedarray-to-buffer: 3.1.5 + dev: true + + /write-file-atomic@4.0.2: resolution: { integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, @@ -21751,7 +21817,7 @@ packages: imurmurhash: 0.1.4 signal-exit: 3.0.7 - /ws/7.5.8: + /ws@7.5.8: resolution: { integrity: sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==, @@ -21766,7 +21832,7 @@ packages: utf-8-validate: optional: true - /ws/8.11.0: + /ws@8.11.0: resolution: { integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==, @@ -21781,7 +21847,7 @@ packages: utf-8-validate: optional: true - /ws/8.8.0: + /ws@8.8.0: resolution: { integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==, @@ -21796,20 +21862,27 @@ packages: utf-8-validate: optional: true - /xml-name-validator/4.0.0: + /xml-name-validator@3.0.0: + resolution: + { + integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==, + } + dev: true + + /xml-name-validator@4.0.0: resolution: { integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==, } engines: {node: ">=12"} - /xmlchars/2.2.0: + /xmlchars@2.2.0: resolution: { integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==, } - /xmldom/0.1.31: + /xmldom@0.1.31: resolution: { integrity: sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==, @@ -21818,7 +21891,7 @@ packages: deprecated: Deprecated due to CVE-2021-21366 resolved in 0.5.0 dev: false - /xtraverse/0.1.0: + /xtraverse@0.1.0: resolution: { integrity: sha512-MANQdlG2hl1nQobxz1Rv8hsS1RuBS0C1N6qTOupv+9vmfrReePdxhmB2ecYjvsp4stJ80HD7erjkoF1Hd/FK9A==, @@ -21828,41 +21901,41 @@ packages: xmldom: 0.1.31 dev: false - /y18n/4.0.3: + /y18n@4.0.3: resolution: { integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, } dev: false - /y18n/5.0.8: + /y18n@5.0.8: resolution: { integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, } engines: {node: ">=10"} - /yallist/2.1.2: + /yallist@2.1.2: resolution: { integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, } dev: false - /yallist/4.0.0: + /yallist@4.0.0: resolution: { integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, } - /yaml/2.1.3: + /yaml@2.1.3: resolution: { integrity: sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg==, } engines: {node: ">= 14"} - /yargs-parser/18.1.3: + /yargs-parser@18.1.3: resolution: { integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, @@ -21873,7 +21946,7 @@ packages: decamelize: 1.2.0 dev: false - /yargs-parser/20.2.9: + /yargs-parser@20.2.9: resolution: { integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, @@ -21881,14 +21954,14 @@ packages: engines: {node: ">=10"} dev: true - /yargs-parser/21.1.1: + /yargs-parser@21.1.1: resolution: { integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, } engines: {node: ">=12"} - /yargs/15.4.1: + /yargs@15.4.1: resolution: { integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, @@ -21908,7 +21981,23 @@ packages: yargs-parser: 18.1.3 dev: false - /yargs/17.6.2: + /yargs@16.2.0: + resolution: + { + integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==, + } + engines: {node: ">=10"} + dependencies: + cliui: 7.0.4 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 20.2.9 + dev: true + + /yargs@17.6.2: resolution: { integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==, @@ -21923,7 +22012,7 @@ packages: y18n: 5.0.8 yargs-parser: 21.1.1 - /yauzl/2.10.0: + /yauzl@2.10.0: resolution: { integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, @@ -21933,21 +22022,21 @@ packages: fd-slicer: 1.1.0 dev: true - /yn/3.1.1: + /yn@3.1.1: resolution: { integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, } engines: {node: ">=6"} - /yocto-queue/0.1.0: + /yocto-queue@0.1.0: resolution: { integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, } engines: {node: ">=10"} - /yoga-layout-prebuilt/1.10.0: + /yoga-layout-prebuilt@1.10.0: resolution: { integrity: sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==, @@ -21957,7 +22046,7 @@ packages: "@types/yoga-layout": 1.9.2 dev: false - /zod/3.20.2: + /zod@3.20.2: resolution: { integrity: sha512-1MzNQdAvO+54H+EaK5YpyEy0T+Ejo/7YLHS93G3RnYWh5gaotGHwGeN/ZO687qEDU2y4CdStQYXVHIgrUl5UVQ==, From 55ba26fac25fbbe9a27a9d128d17aa36a4826172 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 30 May 2023 17:49:03 +0530 Subject: [PATCH 05/18] add a postinstall script for good measure --- packages/blitz-auth/scripts/postinstall.js | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 packages/blitz-auth/scripts/postinstall.js diff --git a/packages/blitz-auth/scripts/postinstall.js b/packages/blitz-auth/scripts/postinstall.js new file mode 100644 index 0000000000..535f98bc0b --- /dev/null +++ b/packages/blitz-auth/scripts/postinstall.js @@ -0,0 +1,64 @@ +//@ts-check +const resolveFrom = require("resolve-from") +const fs = require("fs") +const path = require("path") +const findUp = require("find-up") +const isInBlitzMonorepo = fs.existsSync(path.join(__dirname, "../../blitz-next")) + +async function findNodeModulesRoot(src) { + let root + if (isInBlitzMonorepo) { + root = path.join(src, "node_modules") + } else if (src.includes(".pnpm")) { + const blitzPkgLocation = path.dirname( + (await findUp("package.json", { + cwd: resolveFrom(src, "blitz"), + })) || "", + ) + if (!blitzPkgLocation) { + throw new Error("Internal Blitz Error: unable to find 'blitz' package location") + } + root = path.join(blitzPkgLocation, "../../../../") + } else { + const blitzPkgLocation = path.dirname( + (await findUp("package.json", { + cwd: resolveFrom(src, "blitz"), + })) || "", + ) + if (!blitzPkgLocation) { + throw new Error("Internal Blitz Error: unable to find 'blitz' package location") + } + + root = path.join(blitzPkgLocation, "../") + } + return path.join(root, ".blitz") +} + +async function patchNextAuth() { + try { + console.log("1") + const nodeModulesRoot = await findNodeModulesRoot(__dirname) + console.log(nodeModulesRoot) + const nextAuthPackageJson = require.resolve("next-auth", { + paths: [nodeModulesRoot], + }) + console.log(nextAuthPackageJson) + const nextAuthPackageJsonContents = require(path.join( + nextAuthPackageJson, + "..", + "package.json", + )) + nextAuthPackageJsonContents.exports = { + ...nextAuthPackageJsonContents.exports, + "./core/*": "./core/*.js", + } + console.log(nextAuthPackageJsonContents) + fs.writeFileSync(nextAuthPackageJson, JSON.stringify(nextAuthPackageJsonContents, null, 2)) + console.log("Patched next-auth package.json exports") + } catch (e) { + console.log("Failed to patch next-auth package.json exports") + console.log(e) + } +} + +patchNextAuth() From fb88d693abd963272703cad83ae16790e7606ff8 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 30 May 2023 17:50:20 +0530 Subject: [PATCH 06/18] fix lock file --- pnpm-lock.yaml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d8df4b6677..4225b4e473 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -23,7 +23,7 @@ importers: version: 13.0.3 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) only-allow: specifier: 1.1.0 version: 1.1.0 @@ -80,7 +80,7 @@ importers: version: 3.2.7 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) prisma: specifier: ^4.5.0 version: 4.6.1 @@ -438,7 +438,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -641,7 +641,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -705,7 +705,7 @@ importers: version: link:../../packages/blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -769,7 +769,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -851,7 +851,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -982,7 +982,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -1046,7 +1046,7 @@ importers: version: link:../../packages/blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1095,7 +1095,7 @@ importers: version: link:../../packages/blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1150,7 +1150,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 From 22d60a442d4dedbf289adf558f35b3415a8ae32c Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 30 May 2023 17:54:18 +0530 Subject: [PATCH 07/18] upgrade pnpm --- .github/workflows/main.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d906498277..90bec03133 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,9 +17,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: pnpm/action-setup@646cdf48217256a3d0b80361c5a50727664284f2 + - uses: pnpm/action-setup@v2.2.4 with: - version: 7.11.0 + version: 8.15.0 - name: Setup node uses: actions/setup-node@v2 with: @@ -38,9 +38,9 @@ jobs: name: Build steps: - uses: actions/checkout@v2 - - uses: pnpm/action-setup@646cdf48217256a3d0b80361c5a50727664284f2 + - uses: pnpm/action-setup@v2.2.4 with: - version: 7.11.0 + version: 8.15.0 - name: Setup node uses: actions/setup-node@v2 with: @@ -68,9 +68,9 @@ jobs: uses: actions/checkout@v3 - name: Setup PNPM - uses: pnpm/action-setup@646cdf48217256a3d0b80361c5a50727664284f2 + uses: pnpm/action-setup@v2.2.4 with: - version: 7.11.0 + version: 8.15.0 - name: Setup node@16 uses: actions/setup-node@v2 @@ -127,9 +127,9 @@ jobs: uses: actions/checkout@v3 - name: Setup PNPM - uses: pnpm/action-setup@646cdf48217256a3d0b80361c5a50727664284f2 + uses: pnpm/action-setup@v2.2.4 with: - version: 7.11.0 + version: 8.15.0 - name: Setup node@${{ matrix.NODE_VERSION }} uses: actions/setup-node@v2 From a7b45401cdaef73c00169143be9fa399716a3a58 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 30 May 2023 17:55:37 +0530 Subject: [PATCH 08/18] fix version --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 90bec03133..4ea3ba526d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v2.2.4 with: - version: 8.15.0 + version: 8.5.1 - name: Setup node uses: actions/setup-node@v2 with: @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v2.2.4 with: - version: 8.15.0 + version: 8.5.1 - name: Setup node uses: actions/setup-node@v2 with: @@ -70,7 +70,7 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v2.2.4 with: - version: 8.15.0 + version: 8.5.1 - name: Setup node@16 uses: actions/setup-node@v2 @@ -129,7 +129,7 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v2.2.4 with: - version: 8.15.0 + version: 8.5.1 - name: Setup node@${{ matrix.NODE_VERSION }} uses: actions/setup-node@v2 From baece9a7e6cd49960df28d2b9eed0c18cc6a2488 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 30 May 2023 18:53:13 +0530 Subject: [PATCH 09/18] fix build error --- packages/blitz-next/src/error-boundary.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/blitz-next/src/error-boundary.tsx b/packages/blitz-next/src/error-boundary.tsx index de794b4feb..545ba032b7 100644 --- a/packages/blitz-next/src/error-boundary.tsx +++ b/packages/blitz-next/src/error-boundary.tsx @@ -72,7 +72,7 @@ type ErrorBoundaryState = {error: Error | null} const initialState: ErrorBoundaryState = {error: null} -const ErrorBoundary = withRouter( +const ErrorBoundary: ReturnType = withRouter( class ErrorBoundaryRoot extends React.Component< React.PropsWithRef>, ErrorBoundaryState From 2da9e666a5c8a2cb818865dac9b8c8225acb2ef6 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Mon, 5 Jun 2023 21:11:02 +0530 Subject: [PATCH 10/18] suggessions --- packages/blitz-auth/scripts/postinstall.js | 6 +----- .../blitz-auth/src/server/adapters/next-auth/webpack.ts | 8 +++++++- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/packages/blitz-auth/scripts/postinstall.js b/packages/blitz-auth/scripts/postinstall.js index 535f98bc0b..bf62d87d84 100644 --- a/packages/blitz-auth/scripts/postinstall.js +++ b/packages/blitz-auth/scripts/postinstall.js @@ -36,13 +36,10 @@ async function findNodeModulesRoot(src) { async function patchNextAuth() { try { - console.log("1") const nodeModulesRoot = await findNodeModulesRoot(__dirname) - console.log(nodeModulesRoot) const nextAuthPackageJson = require.resolve("next-auth", { paths: [nodeModulesRoot], }) - console.log(nextAuthPackageJson) const nextAuthPackageJsonContents = require(path.join( nextAuthPackageJson, "..", @@ -52,9 +49,8 @@ async function patchNextAuth() { ...nextAuthPackageJsonContents.exports, "./core/*": "./core/*.js", } - console.log(nextAuthPackageJsonContents) fs.writeFileSync(nextAuthPackageJson, JSON.stringify(nextAuthPackageJsonContents, null, 2)) - console.log("Patched next-auth package.json exports") + console.debug("Patched next-auth package.json exports") } catch (e) { console.log("Failed to patch next-auth package.json exports") console.log(e) diff --git a/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts b/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts index 9322f41514..0f1f6acb8b 100644 --- a/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts +++ b/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts @@ -3,7 +3,7 @@ import path from "path" export function withNextAuthAdapter(nextConfig) { const config = Object.assign({}, nextConfig) - config.webpack = (config) => { + const webpack = (config) => { config.resolve.alias = { ...config.resolve.alias, "next-auth/core/lib/oauth/callback": path.resolve( @@ -16,5 +16,11 @@ export function withNextAuthAdapter(nextConfig) { } return config } + if (typeof nextConfig.webpack === "function") { + config.webpack = (config, options) => { + return nextConfig.webpack(webpack(config), options) + } + } + config.webpack = webpack return config } From 4bc7c7ad4d83371063db2b396a4ebdcf09f3d487 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Mon, 5 Jun 2023 21:15:49 +0530 Subject: [PATCH 11/18] fix pnpm lock --- pnpm-lock.yaml | 124 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 119 insertions(+), 5 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4225b4e473..192f5e6bd1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,8 @@ -lockfileVersion: "6.0" +lockfileVersion: "6.1" + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false importers: .: @@ -5748,6 +5752,7 @@ packages: picocolors: 1.0.0 tiny-glob: 0.2.9 tslib: 2.4.0 + dev: true /@polka/url@1.0.0-next.21: resolution: @@ -9894,6 +9899,7 @@ packages: integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==, } engines: {node: ">=8"} + dev: true /define-properties@1.1.4: resolution: @@ -10334,6 +10340,7 @@ packages: dependencies: graceful-fs: 4.2.10 tapable: 2.2.1 + dev: true /enquirer@2.3.6: resolution: @@ -11328,7 +11335,7 @@ packages: eslint: 8.27.0(supports-color@8.1.1) eslint-import-resolver-node: 0.3.6 eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0) - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.9.1)(eslint@8.27.0) eslint-plugin-jsx-a11y: 6.5.1(eslint@8.27.0) eslint-plugin-react: 7.31.8(eslint@8.27.0) eslint-plugin-react-hooks: 4.5.0(eslint@8.27.0) @@ -11355,7 +11362,7 @@ packages: eslint: 8.26.0 eslint-import-resolver-node: 0.3.6 eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0)(eslint@8.26.0) - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0) eslint-plugin-jsx-a11y: 6.5.1(eslint@8.26.0) eslint-plugin-react: 7.31.8(eslint@8.26.0) eslint-plugin-react-hooks: 4.5.0(eslint@8.26.0) @@ -11427,7 +11434,7 @@ packages: dependencies: debug: 4.3.4(supports-color@8.1.1) eslint: 8.26.0 - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0) glob: 7.2.0 is-glob: 4.0.3 resolve: 1.22.1 @@ -11448,7 +11455,7 @@ packages: dependencies: debug: 4.3.4(supports-color@8.1.1) eslint: 8.27.0(supports-color@8.1.1) - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.9.1)(eslint@8.27.0) glob: 7.2.0 is-glob: 4.0.3 resolve: 1.22.1 @@ -11477,6 +11484,7 @@ packages: synckit: 0.8.4 transitivePeerDependencies: - supports-color + dev: true /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2): resolution: @@ -11506,6 +11514,69 @@ packages: find-up: 2.1.0 transitivePeerDependencies: - supports-color + dev: true + + /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-node@0.3.6): + resolution: + { + integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==, + } + engines: {node: ">=4"} + peerDependencies: + "@typescript-eslint/parser": "*" + eslint-import-resolver-node: "*" + eslint-import-resolver-typescript: "*" + eslint-import-resolver-webpack: "*" + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + debug: 3.2.7(supports-color@8.1.1) + eslint-import-resolver-node: 0.3.6 + find-up: 2.1.0 + transitivePeerDependencies: + - supports-color + + /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0): + resolution: + { + integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, + } + engines: {node: ">=4"} + peerDependencies: + "@typescript-eslint/parser": "*" + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + dependencies: + "@typescript-eslint/parser": 5.43.0(eslint@8.26.0)(typescript@4.8.4) + array-includes: 3.1.5 + array.prototype.flat: 1.3.0 + debug: 2.6.9(supports-color@8.1.1) + doctrine: 2.1.0 + eslint: 8.26.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2) + has: 1.0.3 + is-core-module: 2.11.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.5 + resolve: 1.22.1 + tsconfig-paths: 3.14.1 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0): resolution: @@ -11539,6 +11610,40 @@ packages: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color + dev: true + + /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.9.1)(eslint@8.27.0): + resolution: + { + integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, + } + engines: {node: ">=4"} + peerDependencies: + "@typescript-eslint/parser": "*" + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + dependencies: + "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + array-includes: 3.1.5 + array.prototype.flat: 1.3.0 + debug: 2.6.9(supports-color@8.1.1) + doctrine: 2.1.0 + eslint: 8.27.0(supports-color@8.1.1) + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-node@0.3.6) + has: 1.0.3 + is-core-module: 2.11.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.5 + resolve: 1.22.1 + tsconfig-paths: 3.14.1 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color /eslint-plugin-jsx-a11y@6.5.1(eslint@8.26.0): resolution: @@ -12731,6 +12836,7 @@ packages: { integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==, } + dev: true /get-value@2.0.6: resolution: @@ -12922,6 +13028,7 @@ packages: { integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==, } + dev: true /globby@11.1.0: resolution: @@ -12974,6 +13081,7 @@ packages: { integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==, } + dev: true /got@11.8.1: resolution: @@ -13719,6 +13827,7 @@ packages: } engines: {node: ">=8"} hasBin: true + dev: true /is-expression@4.0.0: resolution: @@ -14026,6 +14135,7 @@ packages: engines: {node: ">=8"} dependencies: is-docker: 2.2.1 + dev: true /is2@2.0.7: resolution: @@ -17171,6 +17281,7 @@ packages: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 + dev: true /opener@1.5.2: resolution: @@ -20047,6 +20158,7 @@ packages: dependencies: "@pkgr/utils": 2.3.1 tslib: 2.4.0 + dev: true /tapable@2.2.1: resolution: @@ -20054,6 +20166,7 @@ packages: integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, } engines: {node: ">=6"} + dev: true /tar@6.1.11: resolution: @@ -20194,6 +20307,7 @@ packages: dependencies: globalyzer: 0.1.0 globrex: 0.1.2 + dev: true /tinybench@2.3.1: resolution: From f1f357a9e138228cd82fb41bcb1d00e69c0fe965 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Thu, 8 Jun 2023 20:42:29 +0530 Subject: [PATCH 12/18] fix pnpm lock --- pnpm-lock.yaml | 3467 +++++++++++++++++++++++++++--------------------- 1 file changed, 1968 insertions(+), 1499 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 192f5e6bd1..d0b17d260d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,7 +1,7 @@ lockfileVersion: "6.1" settings: - autoInstallPeers: true + autoInstallPeers: false excludeLinksFromLockfile: false importers: @@ -15,7 +15,7 @@ importers: version: 2.22.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 husky: specifier: 8.0.2 version: 8.0.2 @@ -27,7 +27,7 @@ importers: version: 13.0.3 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0 only-allow: specifier: 1.1.0 version: 1.1.0 @@ -84,7 +84,7 @@ importers: version: 3.2.7 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) prisma: specifier: ^4.5.0 version: 4.6.1 @@ -151,7 +151,7 @@ importers: version: link:../../packages/blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) next-auth: specifier: 4.18.7 version: 4.18.7(next@13.3.0)(react-dom@18.2.0)(react@18.2.0) @@ -197,13 +197,13 @@ importers: version: 18.0.25 "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(eslint@8.27.0)(typescript@4.8.4) "@vitejs/plugin-react": specifier: 2.2.0 - version: 2.2.0(vite@3.2.4) + version: 2.2.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 eslint-config-next: specifier: 12.3.1 version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) @@ -236,7 +236,7 @@ importers: version: 4.8.4 vite-tsconfig-paths: specifier: 3.6.0 - version: 3.6.0(vite@3.2.4) + version: 3.6.0 vitest: specifier: 0.25.3 version: 0.25.3(jsdom@20.0.3) @@ -269,7 +269,7 @@ importers: version: link:../../packages/blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) openid-client: specifier: 5.2.1 version: 5.2.1 @@ -315,10 +315,10 @@ importers: version: 18.0.25 "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(eslint@8.27.0)(typescript@4.8.4) eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 eslint-config-next: specifier: 12.3.1 version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) @@ -381,13 +381,13 @@ importers: version: link:../../packages/blitz jest: specifier: 29.3.0 - version: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) + version: 29.3.0(ts-node@10.9.1) jest-environment-jsdom: specifier: 29.3.0 version: 29.3.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) passport-mock-strategy: specifier: 2.0.0 version: 2.0.0 @@ -405,7 +405,7 @@ importers: version: 18.2.0(react@18.2.0) ts-node: specifier: 10.9.1 - version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + version: 10.9.1(typescript@4.8.4) devDependencies: "@next/bundle-analyzer": specifier: 12.0.8 @@ -415,7 +415,7 @@ importers: version: 18.0.25 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 typescript: specifier: ^4.8.4 version: 4.8.4 @@ -442,7 +442,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -482,7 +482,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -533,7 +533,7 @@ importers: version: 5.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -576,13 +576,13 @@ importers: version: 18.0.25 "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(eslint@8.27.0)(typescript@4.8.4) "@vitejs/plugin-react": specifier: 2.2.0 - version: 2.2.0(vite@3.2.4) + version: 2.2.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 eslint-config-next: specifier: 12.3.1 version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) @@ -618,7 +618,7 @@ importers: version: 4.8.4 vite-tsconfig-paths: specifier: 3.6.0 - version: 3.6.0(vite@3.2.4) + version: 3.6.0 vitest: specifier: 0.25.3 version: 0.25.3(jsdom@20.0.3) @@ -645,7 +645,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -679,7 +679,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -709,7 +709,7 @@ importers: version: link:../../packages/blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -734,7 +734,7 @@ importers: version: 18.0.25 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -773,7 +773,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -813,7 +813,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -855,7 +855,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -889,7 +889,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -928,7 +928,7 @@ importers: version: link:../../packages/blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -953,10 +953,10 @@ importers: version: 5.0.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 eslint-config-next: specifier: latest - version: 13.4.3(eslint@8.27.0)(typescript@4.8.4) + version: 13.4.4(eslint@8.27.0)(typescript@4.8.4) eslint-plugin-testing-library: specifier: 5.0.1 version: 5.0.1(eslint@8.27.0)(typescript@4.8.4) @@ -986,7 +986,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -1020,7 +1020,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -1050,7 +1050,7 @@ importers: version: link:../../packages/blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1075,7 +1075,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -1099,7 +1099,7 @@ importers: version: link:../../packages/blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1124,7 +1124,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -1154,7 +1154,7 @@ importers: version: 3.0.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -1188,7 +1188,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -1242,10 +1242,10 @@ importers: version: 7.0.3 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 express: specifier: 4.17.3 - version: 4.17.3(supports-color@8.1.1) + version: 4.17.3 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -1371,7 +1371,7 @@ importers: version: 4.0.3(ink@3.2.0)(react@18.2.0) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0(supports-color@8.1.1) node-fetch: specifier: 3.2.3 version: 3.2.3 @@ -1422,13 +1422,13 @@ importers: version: 6.1.11 ts-node: specifier: 10.9.1 - version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + version: 10.9.1(typescript@4.8.4) tsconfig-paths: specifier: 4.0.0 version: 4.0.0 tslog: - specifier: 3.3.4 - version: 3.3.4 + specifier: 4.8.2 + version: 4.8.2 watchpack: specifier: 2.1.1 version: 2.1.1 @@ -1607,7 +1607,7 @@ importers: version: link:../blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) next-auth: specifier: 4.18.7 version: 4.18.7(next@13.3.0)(react-dom@18.2.0)(react@18.2.0) @@ -1695,7 +1695,7 @@ importers: version: 4.1.0 next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) next-router-mock: specifier: 0.9.1 version: 0.9.1(next@13.3.0)(react@18.2.0) @@ -1710,7 +1710,7 @@ importers: version: 5.0.0 ts-jest: specifier: 27.1.4 - version: 27.1.4(@babel/core@7.12.10)(esbuild@0.14.51)(jest@27.5.1)(typescript@4.8.4) + version: 27.1.4(typescript@4.8.4) typescript: specifier: ^4.8.4 version: 4.8.4 @@ -1771,7 +1771,7 @@ importers: version: link:../blitz next: specifier: 13.3.0 - version: 13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + version: 13.3.0(react-dom@18.2.0)(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1795,10 +1795,10 @@ importers: dependencies: "@babel/core": specifier: 7.12.10 - version: 7.12.10(supports-color@8.1.1) + version: 7.12.10 "@babel/plugin-proposal-class-properties": specifier: 7.17.12 - version: 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) + version: 7.17.12(@babel/core@7.12.10) "@babel/plugin-syntax-jsx": specifier: 7.17.12 version: 7.17.12(@babel/core@7.12.10) @@ -1822,7 +1822,7 @@ importers: version: 7.0.3 debug: specifier: 4.3.3 - version: 4.3.3(supports-color@8.1.1) + version: 4.3.3 esbuild: specifier: 0.14.34 version: 0.14.34 @@ -1831,14 +1831,14 @@ importers: version: 10.0.1 jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0(@babel/preset-env@7.12.10) prompts: specifier: 2.4.2 version: 2.4.2 devDependencies: "@babel/preset-env": specifier: 7.12.10 - version: 7.12.10(@babel/core@7.12.10)(supports-color@8.1.1) + version: 7.12.10(@babel/core@7.12.10) "@blitzjs/config": specifier: workspace:* version: link:../config @@ -1853,7 +1853,7 @@ importers: version: 0.14.2 unbuild: specifier: 0.7.6 - version: 0.7.6(supports-color@8.1.1) + version: 0.7.6 watch: specifier: 1.0.2 version: 1.0.2 @@ -1862,16 +1862,16 @@ importers: dependencies: "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(@typescript-eslint/parser@5.9.1)(typescript@4.8.4) "@typescript-eslint/parser": specifier: 5.9.1 - version: 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.9.1(typescript@4.8.4) eslint-config-next: specifier: 12.3.1 - version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) + version: 12.3.1(typescript@4.8.4) eslint-config-prettier: specifier: 8.5.0 - version: 8.5.0(eslint@8.27.0) + version: 8.5.0 devDependencies: typescript: specifier: ^4.8.4 @@ -1949,8 +1949,8 @@ importers: specifier: 8.1.1 version: 8.1.1 tslog: - specifier: 3.3.4 - version: 3.3.4 + specifier: 4.8.2 + version: 4.8.2 username: specifier: 5.1.0 version: 5.1.0 @@ -2032,10 +2032,10 @@ importers: dependencies: "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(@typescript-eslint/parser@5.9.1)(typescript@4.8.4) "@typescript-eslint/parser": specifier: 5.9.1 - version: 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.9.1(typescript@4.8.4) devDependencies: "@blitzjs/config": specifier: 2.0.0-beta.27 @@ -2054,7 +2054,7 @@ importers: version: 4.8.4 unbuild: specifier: 0.7.6 - version: 0.7.6(supports-color@8.1.1) + version: 0.7.6 watch: specifier: 1.0.2 version: 1.0.2 @@ -2066,7 +2066,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2079,7 +2079,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2092,7 +2092,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2108,7 +2108,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2124,7 +2124,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2149,7 +2149,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2162,7 +2162,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 uuid: specifier: ^8.3.1 version: 8.3.2 @@ -2178,7 +2178,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2191,7 +2191,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2204,7 +2204,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2232,7 +2232,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2254,7 +2254,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 uuid: specifier: ^8.3.1 version: 8.3.2 @@ -2270,7 +2270,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2283,7 +2283,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2299,7 +2299,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2312,7 +2312,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2328,7 +2328,7 @@ importers: version: link:../../packages/blitz jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0 devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2386,6 +2386,31 @@ packages: } engines: {node: ">=6.9.0"} + /@babel/core@7.12.10: + resolution: + { + integrity: sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@babel/code-frame": 7.16.7 + "@babel/generator": 7.18.2 + "@babel/helper-module-transforms": 7.18.0 + "@babel/helpers": 7.18.2 + "@babel/parser": 7.18.4 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2 + "@babel/types": 7.18.4 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + lodash: 4.17.21 + semver: 5.7.1 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + /@babel/core@7.12.10(supports-color@8.1.1): resolution: { @@ -2410,6 +2435,32 @@ packages: source-map: 0.5.7 transitivePeerDependencies: - supports-color + dev: false + + /@babel/core@7.18.2: + resolution: + { + integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.16.7 + "@babel/generator": 7.18.2 + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) + "@babel/helper-module-transforms": 7.18.0 + "@babel/helpers": 7.18.2 + "@babel/parser": 7.18.4 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2 + "@babel/types": 7.18.4 + convert-source-map: 1.8.0 + debug: 4.3.3 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color /@babel/core@7.18.2(supports-color@8.1.1): resolution: @@ -2435,6 +2486,32 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: false + + /@babel/core@7.20.2: + resolution: + { + integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.20.4 + "@babel/helper-compilation-targets": 7.20.0(@babel/core@7.20.2) + "@babel/helper-module-transforms": 7.20.2 + "@babel/helpers": 7.20.1 + "@babel/parser": 7.20.3 + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.1 + "@babel/types": 7.20.2 + convert-source-map: 1.8.0 + debug: 4.3.3 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color /@babel/core@7.20.2(supports-color@8.1.1): resolution: @@ -2460,6 +2537,7 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true /@babel/generator@7.18.2: resolution: @@ -2522,7 +2600,7 @@ packages: "@babel/core": ^7.0.0 dependencies: "@babel/compat-data": 7.17.10 - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-validator-option": 7.16.7 browserslist: 4.20.3 semver: 6.3.0 @@ -2537,7 +2615,7 @@ packages: "@babel/core": ^7.0.0 dependencies: "@babel/compat-data": 7.17.10 - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.18.2 "@babel/helper-validator-option": 7.16.7 browserslist: 4.20.3 semver: 6.3.0 @@ -2552,11 +2630,31 @@ packages: "@babel/core": ^7.0.0 dependencies: "@babel/compat-data": 7.20.1 - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-validator-option": 7.18.6 browserslist: 4.21.4 semver: 6.3.0 + /@babel/helper-create-class-features-plugin@7.17.12(@babel/core@7.12.10): + resolution: + { + integrity: sha512-sZoOeUTkFJMyhqCei2+Z+wtH/BehW8NVKQt7IRUQlRiOARuXymJYfN/FCcI8CvVbR0XVyDM6eLFOlR7YtiXnew==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2 + "@babel/helper-split-export-declaration": 7.16.7 + transitivePeerDependencies: + - supports-color + /@babel/helper-create-class-features-plugin@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { @@ -2576,6 +2674,27 @@ packages: "@babel/helper-split-export-declaration": 7.16.7 transitivePeerDependencies: - supports-color + dev: false + + /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.12.10): + resolution: + { + integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2 + "@babel/helper-split-export-declaration": 7.16.7 + transitivePeerDependencies: + - supports-color /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.12.10)(supports-color@8.1.1): resolution: @@ -2596,6 +2715,28 @@ packages: "@babel/helper-split-export-declaration": 7.16.7 transitivePeerDependencies: - supports-color + dev: false + + /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.18.2): + resolution: + { + integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2 + "@babel/helper-split-export-declaration": 7.16.7 + transitivePeerDependencies: + - supports-color + dev: false /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.18.2)(supports-color@8.1.1): resolution: @@ -2627,7 +2768,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-annotate-as-pure": 7.16.7 regexpu-core: 5.0.1 @@ -2721,6 +2862,24 @@ packages: dependencies: "@babel/types": 7.20.2 + /@babel/helper-module-transforms@7.18.0: + resolution: + { + integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-simple-access": 7.18.2 + "@babel/helper-split-export-declaration": 7.16.7 + "@babel/helper-validator-identifier": 7.16.7 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2 + "@babel/types": 7.18.4 + transitivePeerDependencies: + - supports-color + /@babel/helper-module-transforms@7.18.0(supports-color@8.1.1): resolution: { @@ -2738,6 +2897,25 @@ packages: "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color + dev: false + + /@babel/helper-module-transforms@7.20.2: + resolution: + { + integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-module-imports": 7.18.6 + "@babel/helper-simple-access": 7.20.2 + "@babel/helper-split-export-declaration": 7.18.6 + "@babel/helper-validator-identifier": 7.19.1 + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.1 + "@babel/types": 7.20.2 + transitivePeerDependencies: + - supports-color /@babel/helper-module-transforms@7.20.2(supports-color@8.1.1): resolution: @@ -2756,6 +2934,7 @@ packages: "@babel/types": 7.20.2 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-optimise-call-expression@7.16.7: resolution: @@ -2781,6 +2960,19 @@ packages: engines: {node: ">=6.9.0"} dev: true + /@babel/helper-remap-async-to-generator@7.16.8: + resolution: + { + integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-wrap-function": 7.16.8 + "@babel/types": 7.18.4 + transitivePeerDependencies: + - supports-color + /@babel/helper-remap-async-to-generator@7.16.8(supports-color@8.1.1): resolution: { @@ -2793,6 +2985,22 @@ packages: "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color + dev: false + + /@babel/helper-replace-supers@7.18.2: + resolution: + { + integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/traverse": 7.18.2 + "@babel/types": 7.18.4 + transitivePeerDependencies: + - supports-color /@babel/helper-replace-supers@7.18.2(supports-color@8.1.1): resolution: @@ -2808,6 +3016,7 @@ packages: "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color + dev: false /@babel/helper-simple-access@7.18.2: resolution: @@ -2889,7 +3098,7 @@ packages: } engines: {node: ">=6.9.0"} - /@babel/helper-wrap-function@7.16.8(supports-color@8.1.1): + /@babel/helper-wrap-function@7.16.8: resolution: { integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==, @@ -2898,41 +3107,84 @@ packages: dependencies: "@babel/helper-function-name": 7.17.9 "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2(supports-color@8.1.1) + "@babel/traverse": 7.18.2 "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color - /@babel/helpers@7.18.2(supports-color@8.1.1): + /@babel/helper-wrap-function@7.16.8(supports-color@8.1.1): resolution: { - integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==, + integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==, } engines: {node: ">=6.9.0"} dependencies: + "@babel/helper-function-name": 7.17.9 "@babel/template": 7.16.7 "@babel/traverse": 7.18.2(supports-color@8.1.1) "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color + dev: false - /@babel/helpers@7.20.1(supports-color@8.1.1): + /@babel/helpers@7.18.2: resolution: { - integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==, + integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==, } engines: {node: ">=6.9.0"} dependencies: - "@babel/template": 7.18.10 - "@babel/traverse": 7.20.1(supports-color@8.1.1) - "@babel/types": 7.20.2 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2 + "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color - /@babel/highlight@7.17.9: + /@babel/helpers@7.18.2(supports-color@8.1.1): resolution: { - integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==, + integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2(supports-color@8.1.1) + "@babel/types": 7.18.4 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/helpers@7.20.1: + resolution: + { + integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.1 + "@babel/types": 7.20.2 + transitivePeerDependencies: + - supports-color + + /@babel/helpers@7.20.1(supports-color@8.1.1): + resolution: + { + integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.1(supports-color@8.1.1) + "@babel/types": 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight@7.17.9: + resolution: + { + integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==, } engines: {node: ">=6.9.0"} dependencies: @@ -2971,6 +3223,22 @@ packages: dependencies: "@babel/types": 7.20.2 + /@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.12.10): + resolution: + { + integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-remap-async-to-generator": 7.16.8 + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) + transitivePeerDependencies: + - supports-color + /@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { @@ -2986,6 +3254,22 @@ packages: "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) transitivePeerDependencies: - supports-color + dev: false + + /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.12.10): + resolution: + { + integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.12.10) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): resolution: @@ -3001,6 +3285,23 @@ packages: "@babel/helper-plugin-utils": 7.17.12 transitivePeerDependencies: - supports-color + dev: false + + /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.18.2): + resolution: + { + integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.18.2) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + dev: false /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.18.2)(supports-color@8.1.1): resolution: @@ -3027,7 +3328,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.12.10) @@ -3040,7 +3341,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.12.10) @@ -3053,7 +3354,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) @@ -3066,7 +3367,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) @@ -3079,7 +3380,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) @@ -3106,7 +3407,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) @@ -3120,7 +3421,7 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/compat-data": 7.17.10 - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) @@ -3135,7 +3436,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) @@ -3148,7 +3449,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) @@ -3168,6 +3469,21 @@ packages: "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.18.2) dev: false + /@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.12.10): + resolution: + { + integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-create-class-features-plugin": 7.17.12(@babel/core@7.12.10) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + /@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { @@ -3182,6 +3498,7 @@ packages: "@babel/helper-plugin-utils": 7.17.12 transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-proposal-unicode-property-regex@7.17.12(@babel/core@7.12.10): resolution: @@ -3192,7 +3509,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 @@ -3204,7 +3521,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.2): @@ -3215,20 +3532,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.12.10): - resolution: - { - integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 - dev: true /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.2): resolution: @@ -3238,7 +3543,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.10): @@ -3249,7 +3554,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.2): @@ -3260,7 +3565,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.12.10): @@ -3271,7 +3576,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.12.10): @@ -3282,7 +3587,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-flow@7.17.12(@babel/core@7.18.2): @@ -3298,18 +3603,6 @@ packages: "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.12.10): - resolution: - { - integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: true - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.2): resolution: { @@ -3318,7 +3611,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.10): @@ -3329,7 +3622,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.2): @@ -3340,7 +3633,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-jsx@7.17.12(@babel/core@7.12.10): @@ -3352,7 +3645,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 dev: false @@ -3365,7 +3658,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.18.2 "@babel/helper-plugin-utils": 7.17.12 dev: true @@ -3378,7 +3671,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.2): @@ -3390,7 +3683,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.20.2 dev: true @@ -3402,7 +3695,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.2): @@ -3413,7 +3706,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.10): @@ -3424,7 +3717,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.18.2): @@ -3447,7 +3740,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.12.10): @@ -3458,7 +3751,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.2): @@ -3469,7 +3762,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.10): @@ -3480,7 +3773,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.2): @@ -3491,7 +3784,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.10): @@ -3502,7 +3795,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.2): @@ -3513,7 +3806,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.10): @@ -3524,7 +3817,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.18.2): @@ -3547,7 +3840,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.12.10): @@ -3559,7 +3852,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.2): @@ -3571,7 +3864,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.12.10): @@ -3583,8 +3876,9 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.18.2): resolution: @@ -3608,7 +3902,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-arrow-functions@7.17.12(@babel/core@7.12.10): @@ -3620,8 +3914,24 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.12.10): + resolution: + { + integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-module-imports": 7.16.7 "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-remap-async-to-generator": 7.16.8 + transitivePeerDependencies: + - supports-color /@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): resolution: @@ -3638,6 +3948,7 @@ packages: "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.12.10): resolution: @@ -3648,7 +3959,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-block-scoping@7.18.4(@babel/core@7.12.10): @@ -3660,8 +3971,29 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-transform-classes@7.18.4(@babel/core@7.12.10): + resolution: + { + integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-optimise-call-expression": 7.16.7 "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2 + "@babel/helper-split-export-declaration": 7.16.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color /@babel/plugin-transform-classes@7.18.4(@babel/core@7.12.10)(supports-color@8.1.1): resolution: @@ -3683,6 +4015,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-transform-computed-properties@7.17.12(@babel/core@7.12.10): resolution: @@ -3693,7 +4026,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-destructuring@7.18.0(@babel/core@7.12.10): @@ -3705,7 +4038,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.12.10): @@ -3717,7 +4050,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 @@ -3730,7 +4063,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.12.10): @@ -3742,7 +4075,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 "@babel/helper-plugin-utils": 7.17.12 @@ -3769,7 +4102,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-function-name@7.16.7(@babel/core@7.12.10): @@ -3781,7 +4114,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) "@babel/helper-function-name": 7.17.9 "@babel/helper-plugin-utils": 7.17.12 @@ -3795,7 +4128,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.12.10): @@ -3807,8 +4140,24 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.12.10): + resolution: + { + integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-module-transforms": 7.18.0 "@babel/helper-plugin-utils": 7.17.12 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color /@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.12.10)(supports-color@8.1.1): resolution: @@ -3825,8 +4174,9 @@ packages: babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color + dev: false - /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.12.10)(supports-color@8.1.1): + /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.12.10): resolution: { integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, @@ -3835,15 +4185,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/core": 7.12.10 + "@babel/helper-module-transforms": 7.18.0 "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-simple-access": 7.18.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.18.2)(supports-color@8.1.1): + /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, @@ -3852,7 +4202,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-simple-access": 7.18.2 @@ -3861,63 +4211,149 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.12.10)(supports-color@8.1.1): + /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.18.2): resolution: { - integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==, + integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-hoist-variables": 7.16.7 - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/core": 7.18.2 + "@babel/helper-module-transforms": 7.18.0 "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-identifier": 7.16.7 + "@babel/helper-simple-access": 7.18.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color + dev: false - /@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.12.10)(supports-color@8.1.1): + /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.18.2)(supports-color@8.1.1): resolution: { - integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==, + integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.18.2(supports-color@8.1.1) "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-simple-access": 7.18.2 + babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color + dev: false - /@babel/plugin-transform-named-capturing-groups-regex@7.17.12(@babel/core@7.12.10): + /@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.12.10): resolution: { - integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==, + integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==, } engines: {node: ">=6.9.0"} peerDependencies: - "@babel/core": ^7.0.0 + "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) + "@babel/core": 7.12.10 + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-module-transforms": 7.18.0 "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-identifier": 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-new-target@7.17.12(@babel/core@7.12.10): + /@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { - integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==, + integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-identifier": 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.12.10): + resolution: + { + integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-module-transforms": 7.18.0 + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + /@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.12.10)(supports-color@8.1.1): + resolution: + { + integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-transform-named-capturing-groups-regex@7.17.12(@babel/core@7.12.10): + resolution: + { + integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-transform-new-target@7.17.12(@babel/core@7.12.10): + resolution: + { + integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-transform-object-super@7.16.7(@babel/core@7.12.10): + resolution: + { + integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.12.10 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2 + transitivePeerDependencies: + - supports-color /@babel/plugin-transform-object-super@7.16.7(@babel/core@7.12.10)(supports-color@8.1.1): resolution: @@ -3933,6 +4369,7 @@ packages: "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-transform-parameters@7.17.12(@babel/core@7.12.10): resolution: @@ -3943,7 +4380,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.12.10): @@ -3955,7 +4392,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-react-jsx-development@7.16.7(@babel/core@7.18.2): @@ -3967,7 +4404,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.18.2 "@babel/plugin-transform-react-jsx": 7.17.12(@babel/core@7.18.2) dev: true @@ -3980,7 +4417,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.20.2) dev: true @@ -3993,7 +4430,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.18.2 "@babel/helper-plugin-utils": 7.17.12 dev: true @@ -4006,7 +4443,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.20.2 dev: true @@ -4019,7 +4456,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.18.2 "@babel/helper-plugin-utils": 7.17.12 dev: true @@ -4032,7 +4469,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-plugin-utils": 7.20.2 dev: true @@ -4045,7 +4482,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.18.2 "@babel/helper-annotate-as-pure": 7.16.7 "@babel/helper-module-imports": 7.16.7 "@babel/helper-plugin-utils": 7.17.12 @@ -4062,7 +4499,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/helper-annotate-as-pure": 7.18.6 "@babel/helper-module-imports": 7.18.6 "@babel/helper-plugin-utils": 7.20.2 @@ -4079,7 +4516,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 regenerator-transform: 0.15.0 @@ -4092,7 +4529,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.12.10): @@ -4104,7 +4541,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-spread@7.17.12(@babel/core@7.12.10): @@ -4116,7 +4553,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 @@ -4129,7 +4566,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-template-literals@7.18.2(@babel/core@7.12.10): @@ -4141,7 +4578,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-typeof-symbol@7.17.12(@babel/core@7.12.10): @@ -4153,7 +4590,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-typescript@7.12.1(@babel/core@7.12.10)(supports-color@8.1.1): @@ -4172,6 +4609,23 @@ packages: - supports-color dev: false + /@babel/plugin-transform-typescript@7.18.4(@babel/core@7.18.2): + resolution: + { + integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.18.2) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.18.2) + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-typescript@7.18.4(@babel/core@7.18.2)(supports-color@8.1.1): resolution: { @@ -4198,7 +4652,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 /@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.12.10): @@ -4210,10 +4664,88 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 + /@babel/preset-env@7.12.10(@babel/core@7.12.10): + resolution: + { + integrity: sha512-Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.12.10 + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-proposal-async-generator-functions": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-dynamic-import": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-proposal-export-namespace-from": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-json-strings": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-logical-assignment-operators": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-numeric-separator": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-proposal-object-rest-spread": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-proposal-optional-catch-binding": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-private-methods": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.12.10) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.12.10) + "@babel/plugin-transform-arrow-functions": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-async-to-generator": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-block-scoped-functions": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-block-scoping": 7.18.4(@babel/core@7.12.10) + "@babel/plugin-transform-classes": 7.18.4(@babel/core@7.12.10) + "@babel/plugin-transform-computed-properties": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-destructuring": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-duplicate-keys": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-exponentiation-operator": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-for-of": 7.18.1(@babel/core@7.12.10) + "@babel/plugin-transform-function-name": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-literals": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-member-expression-literals": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-modules-amd": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.12.10) + "@babel/plugin-transform-modules-systemjs": 7.18.4(@babel/core@7.12.10) + "@babel/plugin-transform-modules-umd": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-new-target": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-object-super": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-property-literals": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-regenerator": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-transform-reserved-words": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-shorthand-properties": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-spread": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-sticky-regex": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-template-literals": 7.18.2(@babel/core@7.12.10) + "@babel/plugin-transform-typeof-symbol": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-unicode-escapes": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-unicode-regex": 7.16.7(@babel/core@7.12.10) + "@babel/preset-modules": 0.1.5(@babel/core@7.12.10) + "@babel/types": 7.17.12 + core-js-compat: 3.22.5 + semver: 5.7.1 + transitivePeerDependencies: + - supports-color + /@babel/preset-env@7.12.10(@babel/core@7.12.10)(supports-color@8.1.1): resolution: { @@ -4291,6 +4823,7 @@ packages: semver: 5.7.1 transitivePeerDependencies: - supports-color + dev: false /@babel/preset-flow@7.17.12(@babel/core@7.18.2): resolution: @@ -4315,13 +4848,30 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/core": 7.12.10 "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) "@babel/types": 7.18.4 esutils: 2.0.3 + /@babel/preset-typescript@7.17.12(@babel/core@7.18.2): + resolution: + { + integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==, + } + engines: {node: ">=6.9.0"} + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-transform-typescript": 7.18.4(@babel/core@7.18.2) + transitivePeerDependencies: + - supports-color + dev: false + /@babel/preset-typescript@7.17.12(@babel/core@7.18.2)(supports-color@8.1.1): resolution: { @@ -4405,6 +4955,26 @@ packages: "@babel/parser": 7.20.3 "@babel/types": 7.20.2 + /@babel/traverse@7.18.2: + resolution: + { + integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@babel/code-frame": 7.16.7 + "@babel/generator": 7.18.2 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-split-export-declaration": 7.16.7 + "@babel/parser": 7.18.4 + "@babel/types": 7.18.4 + debug: 4.3.3 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/traverse@7.18.2(supports-color@8.1.1): resolution: { @@ -4424,6 +4994,27 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: false + + /@babel/traverse@7.20.1: + resolution: + { + integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==, + } + engines: {node: ">=6.9.0"} + dependencies: + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.20.4 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-hoist-variables": 7.18.6 + "@babel/helper-split-export-declaration": 7.18.6 + "@babel/parser": 7.20.3 + "@babel/types": 7.20.2 + debug: 4.3.3 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color /@babel/traverse@7.20.1(supports-color@8.1.1): resolution: @@ -4444,6 +5035,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true /@babel/types@7.12.10: resolution: @@ -4454,6 +5046,7 @@ packages: "@babel/helper-validator-identifier": 7.16.7 lodash: 4.17.21 to-fast-properties: 2.0.0 + dev: false /@babel/types@7.17.12: resolution: @@ -4810,6 +5403,25 @@ packages: requiresBuild: true optional: true + /@eslint/eslintrc@1.3.3: + resolution: + { + integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.3 + espree: 9.4.1 + globals: 13.15.0 + ignore: 5.2.0 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + /@eslint/eslintrc@1.3.3(supports-color@8.1.1): resolution: { @@ -4828,6 +5440,7 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color + dev: true /@hapi/hoek@9.3.0: resolution: @@ -4871,6 +5484,19 @@ packages: react-hook-form: 7.39.1(react@18.2.0) dev: false + /@humanwhocodes/config-array@0.11.7: + resolution: + { + integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==, + } + engines: {node: ">=10.10.0"} + dependencies: + "@humanwhocodes/object-schema": 1.2.1 + debug: 4.3.3 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + /@humanwhocodes/config-array@0.11.7(supports-color@8.1.1): resolution: { @@ -4883,6 +5509,7 @@ packages: minimatch: 3.1.2 transitivePeerDependencies: - supports-color + dev: true /@humanwhocodes/module-importer@1.0.1: resolution: @@ -4917,21 +5544,6 @@ packages: } engines: {node: ">=8"} - /@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.11.9 - chalk: 4.1.2 - jest-message-util: 27.5.1 - jest-util: 27.5.1 - slash: 3.0.0 - dev: true - /@jest/console@29.2.1: resolution: { @@ -4946,54 +5558,6 @@ packages: jest-util: 29.2.1 slash: 3.0.0 - /@jest/core@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - "@jest/console": 27.5.1 - "@jest/reporters": 27.5.1(supports-color@8.1.1) - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - emittery: 0.8.1 - exit: 0.1.2 - graceful-fs: 4.2.10 - jest-changed-files: 27.5.1 - jest-config: 27.5.1(supports-color@8.1.1) - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-resolve-dependencies: 27.5.1(supports-color@8.1.1) - jest-runner: 27.5.1(supports-color@8.1.1) - jest-runtime: 27.5.1(supports-color@8.1.1) - jest-snapshot: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - jest-validate: 27.5.1 - jest-watcher: 27.5.1 - micromatch: 4.0.5 - rimraf: 3.0.2 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - /@jest/core@29.3.0(ts-node@10.9.1): resolution: { @@ -5038,19 +5602,6 @@ packages: - supports-color - ts-node - /@jest/environment@27.5.1: - 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.11.9 - jest-mock: 27.5.1 - dev: true - /@jest/environment@29.3.0: resolution: { @@ -5084,21 +5635,6 @@ packages: transitivePeerDependencies: - supports-color - /@jest/fake-timers@27.5.1: - 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.11.9 - jest-message-util: 27.5.1 - jest-mock: 27.5.1 - jest-util: 27.5.1 - dev: true - /@jest/fake-timers@29.3.0: resolution: { @@ -5113,18 +5649,6 @@ packages: jest-mock: 29.3.0 jest-util: 29.2.1 - /@jest/globals@27.5.1: - 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 - expect: 27.5.1 - dev: true - /@jest/globals@29.3.0: resolution: { @@ -5139,47 +5663,6 @@ packages: transitivePeerDependencies: - supports-color - /@jest/reporters@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - 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(supports-color@8.1.1) - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - chalk: 4.1.2 - collect-v8-coverage: 1.0.1 - exit: 0.1.2 - glob: 7.2.0 - graceful-fs: 4.2.10 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.0(supports-color@8.1.1) - istanbul-lib-report: 3.0.0 - istanbul-lib-source-maps: 4.0.1(supports-color@8.1.1) - istanbul-reports: 3.1.4 - jest-haste-map: 27.5.1 - jest-resolve: 27.5.1 - jest-util: 27.5.1 - jest-worker: 27.5.1 - slash: 3.0.0 - source-map: 0.6.1 - string-length: 4.0.2 - terminal-link: 2.1.1 - v8-to-istanbul: 8.1.1 - transitivePeerDependencies: - - supports-color - dev: true - /@jest/reporters@29.3.0: resolution: { @@ -5205,9 +5688,9 @@ packages: glob: 7.2.0 graceful-fs: 4.2.10 istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.0(supports-color@8.1.1) + istanbul-lib-instrument: 5.2.0 istanbul-lib-report: 3.0.0 - istanbul-lib-source-maps: 4.0.1(supports-color@8.1.1) + istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.4 jest-message-util: 29.2.1 jest-util: 29.2.1 @@ -5228,18 +5711,6 @@ packages: dependencies: "@sinclair/typebox": 0.24.51 - /@jest/source-map@27.5.1: - resolution: - { - integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - callsites: 3.1.0 - graceful-fs: 4.2.10 - source-map: 0.6.1 - dev: true - /@jest/source-map@29.2.0: resolution: { @@ -5251,19 +5722,6 @@ packages: callsites: 3.1.0 graceful-fs: 4.2.10 - /@jest/test-result@27.5.1: - 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 - collect-v8-coverage: 1.0.1 - dev: true - /@jest/test-result@29.2.1: resolution: { @@ -5276,21 +5734,6 @@ packages: "@types/istanbul-lib-coverage": 2.0.4 collect-v8-coverage: 1.0.1 - /@jest/test-sequencer@27.5.1(supports-color@8.1.1): - 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 - graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-runtime: 27.5.1(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: true - /@jest/test-sequencer@29.3.0: resolution: { @@ -5303,32 +5746,6 @@ packages: jest-haste-map: 29.3.0 slash: 3.0.0 - /@jest/transform@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@jest/types": 27.5.1 - babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) - chalk: 4.1.2 - convert-source-map: 1.8.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-regex-util: 27.5.1 - jest-util: 27.5.1 - micromatch: 4.0.5 - pirates: 4.0.5 - slash: 3.0.0 - source-map: 0.6.1 - write-file-atomic: 3.0.3 - transitivePeerDependencies: - - supports-color - dev: true - /@jest/transform@29.3.0: resolution: { @@ -5336,10 +5753,10 @@ packages: } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@jest/types": 29.2.1 "@jridgewell/trace-mapping": 0.3.17 - babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 @@ -5590,10 +6007,10 @@ packages: glob: 7.1.7 dev: true - /@next/eslint-plugin-next@13.4.3: + /@next/eslint-plugin-next@13.4.4: resolution: { - integrity: sha512-5B0uOnh7wyUY9vNNdIA6NUvWozhrZaTMZOzdirYAefqD0ZBK5C/h3+KMYdCKrR7JrXGvVpWnHtv54b3dCzwICA==, + integrity: sha512-5jnh7q6I15efnjR/rR+/TGTc9hn53g3JTbEjAMjmeQiExKqEUgIXqrHI5zlTNlNyzCPkBB860/ctxXheZaF2Vw==, } dependencies: glob: 7.1.7 @@ -6001,15 +6418,6 @@ packages: dependencies: type-detect: 4.0.8 - /@sinonjs/fake-timers@8.1.0: - resolution: - { - integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==, - } - dependencies: - "@sinonjs/commons": 1.8.3 - dev: true - /@sinonjs/fake-timers@9.1.2: resolution: { @@ -6449,14 +6857,6 @@ packages: "@testing-library/dom": 8.13.0 dev: true - /@tootallnate/once@1.1.2: - resolution: - { - integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==, - } - engines: {node: ">= 6"} - dev: true - /@tootallnate/once@2.0.0: resolution: { @@ -7350,6 +7750,65 @@ packages: typescript: 4.8.4 transitivePeerDependencies: - supports-color + dev: true + + /@typescript-eslint/eslint-plugin@5.42.1(@typescript-eslint/parser@5.9.1)(typescript@4.8.4): + resolution: + { + integrity: sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + "@typescript-eslint/parser": ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/parser": 5.9.1(typescript@4.8.4) + "@typescript-eslint/scope-manager": 5.42.1 + "@typescript-eslint/type-utils": 5.42.1(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(typescript@4.8.4) + debug: 4.3.4 + ignore: 5.2.0 + natural-compare-lite: 1.4.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.8.4) + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + dev: false + + /@typescript-eslint/eslint-plugin@5.42.1(eslint@8.27.0)(typescript@4.8.4): + resolution: + { + integrity: sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + "@typescript-eslint/parser": ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/scope-manager": 5.42.1 + "@typescript-eslint/type-utils": 5.42.1(eslint@8.27.0)(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(eslint@8.27.0)(typescript@4.8.4) + debug: 4.3.4 + eslint: 8.27.0 + ignore: 5.2.0 + natural-compare-lite: 1.4.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.8.4) + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + dev: true /@typescript-eslint/experimental-utils@5.28.0(eslint@8.27.0)(typescript@4.8.4): resolution: @@ -7361,7 +7820,7 @@ packages: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: "@typescript-eslint/utils": 5.28.0(eslint@8.27.0)(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 transitivePeerDependencies: - supports-color - typescript @@ -7383,12 +7842,11 @@ packages: "@typescript-eslint/scope-manager": 5.43.0 "@typescript-eslint/types": 5.43.0 "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.8.4) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 eslint: 8.26.0 typescript: 4.8.4 transitivePeerDependencies: - supports-color - dev: true /@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4): resolution: @@ -7406,11 +7864,34 @@ packages: "@typescript-eslint/scope-manager": 5.43.0 "@typescript-eslint/types": 5.43.0 "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.8.4) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.27.0(supports-color@8.1.1) + debug: 4.3.4 + eslint: 8.27.0 + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@5.43.0(typescript@4.8.4): + resolution: + { + integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/scope-manager": 5.43.0 + "@typescript-eslint/types": 5.43.0 + "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.8.4) + debug: 4.3.4 typescript: 4.8.4 transitivePeerDependencies: - supports-color + dev: false /@typescript-eslint/parser@5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4): resolution: @@ -7433,6 +7914,29 @@ packages: typescript: 4.8.4 transitivePeerDependencies: - supports-color + dev: true + + /@typescript-eslint/parser@5.9.1(typescript@4.8.4): + resolution: + { + integrity: sha512-PLYO0AmwD6s6n0ZQB5kqPgfvh73p0+VqopQQLuNfi7Lm0EpfKyDalchpVwkE+81k5HeiRrTV/9w1aNHzjD7C4g==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/scope-manager": 5.9.1 + "@typescript-eslint/types": 5.9.1 + "@typescript-eslint/typescript-estree": 5.9.1(typescript@4.8.4) + debug: 4.3.4 + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + dev: false /@typescript-eslint/scope-manager@5.28.0: resolution: @@ -7496,6 +8000,52 @@ packages: typescript: 4.8.4 transitivePeerDependencies: - supports-color + dev: true + + /@typescript-eslint/type-utils@5.42.1(eslint@8.27.0)(typescript@4.8.4): + resolution: + { + integrity: sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: "*" + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/typescript-estree": 5.42.1(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(eslint@8.27.0)(typescript@4.8.4) + debug: 4.3.4 + eslint: 8.27.0 + tsutils: 3.21.0(typescript@4.8.4) + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/type-utils@5.42.1(typescript@4.8.4): + resolution: + { + integrity: sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: "*" + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/typescript-estree": 5.42.1(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(typescript@4.8.4) + debug: 4.3.4 + tsutils: 3.21.0(typescript@4.8.4) + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + dev: false /@typescript-eslint/types@5.28.0: resolution: @@ -7540,7 +8090,7 @@ packages: dependencies: "@typescript-eslint/types": 5.28.0 "@typescript-eslint/visitor-keys": 5.28.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 @@ -7572,6 +8122,30 @@ packages: typescript: 4.8.4 transitivePeerDependencies: - supports-color + dev: true + + /@typescript-eslint/typescript-estree@5.42.1(typescript@4.8.4): + resolution: + { + integrity: sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/types": 5.42.1 + "@typescript-eslint/visitor-keys": 5.42.1 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.8 + tsutils: 3.21.0(typescript@4.8.4) + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color /@typescript-eslint/typescript-estree@5.43.0(typescript@4.8.4): resolution: @@ -7587,7 +8161,7 @@ packages: dependencies: "@typescript-eslint/types": 5.43.0 "@typescript-eslint/visitor-keys": 5.43.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 @@ -7618,6 +8192,31 @@ packages: typescript: 4.8.4 transitivePeerDependencies: - supports-color + dev: true + + /@typescript-eslint/typescript-estree@5.9.1(typescript@4.8.4): + resolution: + { + integrity: sha512-gL1sP6A/KG0HwrahVXI9fZyeVTxEYV//6PmcOn1tD0rw8VhUWYeZeuWHwwhnewnvEMcHjhnJLOBhA9rK4vmb8A==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/types": 5.9.1 + "@typescript-eslint/visitor-keys": 5.9.1 + debug: 4.3.3 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.8 + tsutils: 3.21.0(typescript@4.8.4) + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + dev: false /@typescript-eslint/utils@5.28.0(eslint@8.27.0)(typescript@4.8.4): resolution: @@ -7632,7 +8231,7 @@ packages: "@typescript-eslint/scope-manager": 5.28.0 "@typescript-eslint/types": 5.28.0 "@typescript-eslint/typescript-estree": 5.28.0(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0(eslint@8.27.0) transitivePeerDependencies: @@ -7661,6 +8260,52 @@ packages: transitivePeerDependencies: - supports-color - typescript + dev: true + + /@typescript-eslint/utils@5.42.1(eslint@8.27.0)(typescript@4.8.4): + resolution: + { + integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + "@types/json-schema": 7.0.11 + "@types/semver": 7.3.13 + "@typescript-eslint/scope-manager": 5.42.1 + "@typescript-eslint/types": 5.42.1 + "@typescript-eslint/typescript-estree": 5.42.1(typescript@4.8.4) + eslint: 8.27.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@8.27.0) + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils@5.42.1(typescript@4.8.4): + resolution: + { + integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + "@types/json-schema": 7.0.11 + "@types/semver": 7.3.13 + "@typescript-eslint/scope-manager": 5.42.1 + "@typescript-eslint/types": 5.42.1 + "@typescript-eslint/typescript-estree": 5.42.1(typescript@4.8.4) + eslint-scope: 5.1.1 + eslint-utils: 3.0.0 + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + - typescript + dev: false /@typescript-eslint/visitor-keys@5.28.0: resolution: @@ -7710,7 +8355,7 @@ packages: } engines: {node: ">=12.0.0"} dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.18.2 "@babel/plugin-transform-react-jsx": 7.17.12(@babel/core@7.18.2) "@babel/plugin-transform-react-jsx-development": 7.16.7(@babel/core@7.18.2) "@babel/plugin-transform-react-jsx-self": 7.17.12(@babel/core@7.18.2) @@ -7722,7 +8367,7 @@ packages: - supports-color dev: true - /@vitejs/plugin-react@2.2.0(vite@3.2.4): + /@vitejs/plugin-react@2.2.0: resolution: { integrity: sha512-FFpefhvExd1toVRlokZgxgy2JtnBOdp4ZDsq7ldCWaqGSGn9UhWMAVm/1lxPL14JfNS5yGz+s9yFrQY6shoStA==, @@ -7731,14 +8376,13 @@ packages: peerDependencies: vite: ^3.0.0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.20.2) "@babel/plugin-transform-react-jsx-development": 7.18.6(@babel/core@7.20.2) "@babel/plugin-transform-react-jsx-self": 7.18.6(@babel/core@7.20.2) "@babel/plugin-transform-react-jsx-source": 7.19.6(@babel/core@7.20.2) magic-string: 0.26.7 react-refresh: 0.14.0 - vite: 3.2.4(@types/node@18.11.9) transitivePeerDependencies: - supports-color dev: true @@ -7834,14 +8478,14 @@ packages: engines: {node: ">= 10.0.0"} dev: false - /agent-base@6.0.2(supports-color@8.1.1): + /agent-base@6.0.2: resolution: { integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, } engines: {node: ">= 6.0.0"} dependencies: - debug: 4.3.3(supports-color@8.1.1) + debug: 4.3.3 transitivePeerDependencies: - supports-color @@ -8268,28 +8912,6 @@ packages: "@babel/core": 7.18.2(supports-color@8.1.1) dev: false - /babel-jest@27.5.1(@babel/core@7.12.10)(supports-color@8.1.1): - 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 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@jest/transform": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - "@types/babel__core": 7.1.19 - babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) - babel-preset-jest: 27.5.1(@babel/core@7.12.10) - chalk: 4.1.2 - graceful-fs: 4.2.10 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-jest@29.3.0(@babel/core@7.20.2): resolution: { @@ -8299,10 +8921,10 @@ packages: peerDependencies: "@babel/core": ^7.8.0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@jest/transform": 29.3.0 "@types/babel__core": 7.1.19 - babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + babel-plugin-istanbul: 6.1.1 babel-preset-jest: 29.2.0(@babel/core@7.20.2) chalk: 4.1.2 graceful-fs: 4.2.10 @@ -8318,7 +8940,7 @@ packages: dependencies: object.assign: 4.1.2 - /babel-plugin-istanbul@6.1.1(supports-color@8.1.1): + /babel-plugin-istanbul@6.1.1: resolution: { integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, @@ -8328,24 +8950,11 @@ packages: "@babel/helper-plugin-utils": 7.17.12 "@istanbuljs/load-nyc-config": 1.1.0 "@istanbuljs/schema": 0.1.3 - istanbul-lib-instrument: 5.2.0(supports-color@8.1.1) + istanbul-lib-instrument: 5.2.0 test-exclude: 6.0.0 transitivePeerDependencies: - supports-color - /babel-plugin-jest-hoist@27.5.1: - resolution: - { - integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@babel/template": 7.18.10 - "@babel/types": 7.12.10 - "@types/babel__core": 7.1.19 - "@types/babel__traverse": 7.17.1 - dev: true - /babel-plugin-jest-hoist@29.2.0: resolution: { @@ -8358,29 +8967,6 @@ packages: "@types/babel__core": 7.1.19 "@types/babel__traverse": 7.17.1 - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.12.10): - resolution: - { - integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, - } - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) - "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.12.10) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.12.10) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.12.10) - dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.2): resolution: { @@ -8389,7 +8975,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.20.2) "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.20.2) "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.20.2) @@ -8403,20 +8989,6 @@ packages: "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.2) "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.20.2) - /babel-preset-jest@27.5.1(@babel/core@7.12.10): - 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 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.10) - dev: true - /babel-preset-jest@29.2.0(@babel/core@7.20.2): resolution: { @@ -8426,7 +8998,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 babel-plugin-jest-hoist: 29.2.0 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.2) @@ -8519,6 +9091,27 @@ packages: readable-stream: 3.6.0 dev: false + /body-parser@1.19.2: + resolution: + { + integrity: sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==, + } + engines: {node: ">= 0.8"} + dependencies: + bytes: 3.1.2 + content-type: 1.0.4 + debug: 2.6.9 + depd: 1.1.2 + http-errors: 1.8.1 + iconv-lite: 0.4.24 + on-finished: 2.3.0 + qs: 6.9.7 + raw-body: 2.4.3 + type-is: 1.6.18 + transitivePeerDependencies: + - supports-color + dev: true + /body-parser@1.19.2(supports-color@8.1.1): resolution: { @@ -8599,6 +9192,27 @@ packages: balanced-match: 1.0.2 dev: false + /braces@2.3.2: + resolution: + { + integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==, + } + engines: {node: ">=0.10.0"} + dependencies: + arr-flatten: 1.1.0 + array-unique: 0.3.2 + extend-shallow: 2.0.1 + fill-range: 4.0.0 + isobject: 3.0.1 + repeat-element: 1.1.4 + snapdragon: 0.8.2 + snapdragon-node: 2.1.1 + split-string: 3.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: false + /braces@2.3.2(supports-color@8.1.1): resolution: { @@ -9009,7 +9623,7 @@ packages: axios: 0.24.0 del: 6.1.1 extract-zip: 2.0.1 - https-proxy-agent: 5.0.1(supports-color@8.1.1) + https-proxy-agent: 5.0.1 proxy-from-env: 1.1.0 tcp-port-used: 1.0.2 transitivePeerDependencies: @@ -9132,17 +9746,6 @@ packages: wrap-ansi: 6.2.0 dev: false - /cliui@7.0.4: - resolution: - { - integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==, - } - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - dev: true - /cliui@8.0.1: resolution: { @@ -9597,13 +10200,6 @@ packages: integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==, } - /cssom@0.4.4: - resolution: - { - integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==, - } - dev: true - /cssom@0.5.0: resolution: { @@ -9672,18 +10268,6 @@ packages: } engines: {node: ">= 12"} - /data-urls@2.0.0: - resolution: - { - integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==, - } - engines: {node: ">=10"} - dependencies: - abab: 2.0.6 - whatwg-mimetype: 2.3.0 - whatwg-url: 8.7.0 - dev: true - /data-urls@3.0.2: resolution: { @@ -9702,7 +10286,7 @@ packages: } dev: true - /debug@2.6.9(supports-color@8.1.1): + /debug@2.6.9: resolution: { integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, @@ -9714,12 +10298,11 @@ packages: optional: true dependencies: ms: 2.0.0 - supports-color: 8.1.1 - /debug@3.2.7(supports-color@8.1.1): + /debug@2.6.9(supports-color@8.1.1): resolution: { - integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, } peerDependencies: supports-color: "*" @@ -9727,9 +10310,37 @@ packages: supports-color: optional: true dependencies: - ms: 2.1.3 + ms: 2.0.0 supports-color: 8.1.1 + /debug@3.2.7: + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, + } + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + + /debug@3.2.7(supports-color@8.1.1): + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, + } + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + supports-color: 8.1.1 + dev: false + /debug@4.3.1: resolution: { @@ -9745,6 +10356,20 @@ packages: ms: 2.1.2 dev: true + /debug@4.3.3: + resolution: + { + integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==, + } + engines: {node: ">=6.0"} + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + /debug@4.3.3(supports-color@8.1.1): resolution: { @@ -9760,6 +10385,20 @@ packages: ms: 2.1.2 supports-color: 8.1.1 + /debug@4.3.4: + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + } + engines: {node: ">=6.0"} + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + /debug@4.3.4(supports-color@8.1.1): resolution: { @@ -10054,14 +10693,6 @@ packages: - supports-color dev: false - /diff-sequences@27.5.1: - resolution: - { - integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - /diff-sequences@29.2.0: resolution: { @@ -10168,16 +10799,6 @@ packages: } dev: true - /domexception@2.0.1: - resolution: - { - integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==, - } - engines: {node: ">=8"} - dependencies: - webidl-conversions: 5.0.0 - dev: true - /domexception@4.0.0: resolution: { @@ -10287,14 +10908,6 @@ packages: } engines: {node: ">=12"} - /emittery@0.8.1: - resolution: - { - integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==, - } - engines: {node: ">=10"} - dev: true - /emoji-regex@8.0.0: resolution: { @@ -11332,10 +11945,10 @@ packages: "@next/eslint-plugin-next": 12.3.1 "@rushstack/eslint-patch": 1.1.3 "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0) - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.9.1)(eslint@8.27.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.27.0) eslint-plugin-jsx-a11y: 6.5.1(eslint@8.27.0) eslint-plugin-react: 7.31.8(eslint@8.27.0) eslint-plugin-react-hooks: 4.5.0(eslint@8.27.0) @@ -11343,6 +11956,34 @@ packages: transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color + dev: true + + /eslint-config-next@12.3.1(typescript@4.8.4): + resolution: + { + integrity: sha512-EN/xwKPU6jz1G0Qi6Bd/BqMnHLyRAL0VsaQaWA7F3KkjAgZHi4f1uL1JKGWNxdQpHTW/sdGONBd0bzxUka/DJg==, + } + peerDependencies: + eslint: ^7.23.0 || ^8.0.0 + typescript: ">=3.3.1" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@next/eslint-plugin-next": 12.3.1 + "@rushstack/eslint-patch": 1.1.3 + "@typescript-eslint/parser": 5.43.0(typescript@4.8.4) + eslint-import-resolver-node: 0.3.6 + eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1) + eslint-plugin-jsx-a11y: 6.5.1 + eslint-plugin-react: 7.31.8 + eslint-plugin-react-hooks: 4.5.0 + typescript: 4.8.4 + transitivePeerDependencies: + - eslint-import-resolver-webpack + - supports-color + dev: false /eslint-config-next@13.0.0(eslint@8.26.0)(typescript@4.8.4): resolution: @@ -11372,10 +12013,10 @@ packages: - supports-color dev: true - /eslint-config-next@13.4.3(eslint@8.27.0)(typescript@4.8.4): + /eslint-config-next@13.4.4(eslint@8.27.0)(typescript@4.8.4): resolution: { - integrity: sha512-1lXwdFi29fKxzeugof/TUE7lpHyJQt5+U4LaUHyvQfHjvsWO77vFNicJv5sX6k0VDVSbnfz0lw+avxI+CinbMg==, + integrity: sha512-z/PMbm6L0iC/fwISULxe8IVy4DtNqZk2wQY711o35klenq70O6ns82A8yuMVCFjHC0DIyB2lyugesRtuk9u8dQ==, } peerDependencies: eslint: ^7.23.0 || ^8.0.0 @@ -11384,10 +12025,10 @@ packages: typescript: optional: true dependencies: - "@next/eslint-plugin-next": 13.4.3 + "@next/eslint-plugin-next": 13.4.4 "@rushstack/eslint-patch": 1.1.3 "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.26.0)(eslint@8.27.0) eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) @@ -11400,6 +12041,16 @@ packages: - supports-color dev: true + /eslint-config-prettier@8.5.0: + resolution: + { + integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==, + } + hasBin: true + peerDependencies: + eslint: ">=7.0.0" + dev: false + /eslint-config-prettier@8.5.0(eslint@8.27.0): resolution: { @@ -11409,7 +12060,8 @@ packages: peerDependencies: eslint: ">=7.0.0" dependencies: - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 + dev: true /eslint-import-resolver-node@0.3.6: resolution: @@ -11417,10 +12069,30 @@ packages: integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==, } dependencies: - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7 + resolve: 1.22.1 + transitivePeerDependencies: + - supports-color + + /eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0): + resolution: + { + integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==, + } + engines: {node: ">=4"} + peerDependencies: + eslint: "*" + eslint-plugin-import: "*" + dependencies: + debug: 4.3.4 + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1) + glob: 7.2.0 + is-glob: 4.0.3 resolve: 1.22.1 + tsconfig-paths: 3.14.1 transitivePeerDependencies: - supports-color + dev: false /eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0)(eslint@8.26.0): resolution: @@ -11432,7 +12104,7 @@ packages: eslint: "*" eslint-plugin-import: "*" dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 eslint: 8.26.0 eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0) glob: 7.2.0 @@ -11441,7 +12113,6 @@ packages: tsconfig-paths: 3.14.1 transitivePeerDependencies: - supports-color - dev: true /eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0): resolution: @@ -11453,15 +12124,16 @@ packages: eslint: "*" eslint-plugin-import: "*" dependencies: - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.27.0(supports-color@8.1.1) - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.9.1)(eslint@8.27.0) + debug: 4.3.4 + eslint: 8.27.0 + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.27.0) glob: 7.2.0 is-glob: 4.0.3 resolve: 1.22.1 tsconfig-paths: 3.14.1 transitivePeerDependencies: - supports-color + dev: true /eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.26.0)(eslint@8.27.0): resolution: @@ -11473,9 +12145,9 @@ packages: eslint: "*" eslint-plugin-import: "*" dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 enhanced-resolve: 5.11.0 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) get-tsconfig: 4.2.0 globby: 13.1.2 @@ -11486,7 +12158,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2): + /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.7.1): resolution: { integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==, @@ -11507,16 +12179,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) - debug: 3.2.7(supports-color@8.1.1) + "@typescript-eslint/parser": 5.43.0(eslint@8.26.0)(typescript@4.8.4) + debug: 3.2.7 eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.26.0)(eslint@8.27.0) + eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0)(eslint@8.26.0) find-up: 2.1.0 transitivePeerDependencies: - supports-color - dev: true - /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-node@0.3.6): + /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2): resolution: { integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==, @@ -11537,12 +12208,47 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) - debug: 3.2.7(supports-color@8.1.1) + "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) + debug: 3.2.7 eslint-import-resolver-node: 0.3.6 + eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.26.0)(eslint@8.27.0) find-up: 2.1.0 transitivePeerDependencies: - supports-color + dev: true + + /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1): + resolution: + { + integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, + } + engines: {node: ">=4"} + peerDependencies: + "@typescript-eslint/parser": "*" + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + dependencies: + "@typescript-eslint/parser": 5.43.0(typescript@4.8.4) + array-includes: 3.1.5 + array.prototype.flat: 1.3.0 + debug: 2.6.9 + doctrine: 2.1.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.7.1) + has: 1.0.3 + is-core-module: 2.11.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.5 + resolve: 1.22.1 + tsconfig-paths: 3.14.1 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: false /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0): resolution: @@ -11560,11 +12266,11 @@ packages: "@typescript-eslint/parser": 5.43.0(eslint@8.26.0)(typescript@4.8.4) array-includes: 3.1.5 array.prototype.flat: 1.3.0 - debug: 2.6.9(supports-color@8.1.1) + debug: 2.6.9 doctrine: 2.1.0 eslint: 8.26.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2) + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.7.1) has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -11576,9 +12282,8 @@ packages: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - dev: true - /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0): + /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.27.0): resolution: { integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, @@ -11594,11 +12299,11 @@ packages: "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) array-includes: 3.1.5 array.prototype.flat: 1.3.0 - debug: 2.6.9(supports-color@8.1.1) + debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2) + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.7.1) has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -11612,7 +12317,7 @@ packages: - supports-color dev: true - /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.9.1)(eslint@8.27.0): + /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0): resolution: { integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, @@ -11625,14 +12330,14 @@ packages: "@typescript-eslint/parser": optional: true dependencies: - "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) array-includes: 3.1.5 array.prototype.flat: 1.3.0 - debug: 2.6.9(supports-color@8.1.1) + debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-node@0.3.6) + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2) has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -11644,6 +12349,30 @@ packages: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color + dev: true + + /eslint-plugin-jsx-a11y@6.5.1: + resolution: + { + integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==, + } + engines: {node: ">=4.0"} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + "@babel/runtime": 7.18.3 + aria-query: 4.2.2 + array-includes: 3.1.5 + ast-types-flow: 0.0.7 + axe-core: 4.4.2 + axobject-query: 2.2.0 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + has: 1.0.3 + jsx-ast-utils: 3.3.0 + language-tags: 1.0.5 + minimatch: 3.1.2 + dev: false /eslint-plugin-jsx-a11y@6.5.1(eslint@8.26.0): resolution: @@ -11686,11 +12415,22 @@ packages: axobject-query: 2.2.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 has: 1.0.3 jsx-ast-utils: 3.3.0 language-tags: 1.0.5 minimatch: 3.1.2 + dev: true + + /eslint-plugin-react-hooks@4.5.0: + resolution: + { + integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==, + } + engines: {node: ">=10"} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dev: false /eslint-plugin-react-hooks@4.5.0(eslint@8.26.0): resolution: @@ -11713,7 +12453,33 @@ packages: peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 + dev: true + + /eslint-plugin-react@7.31.8: + resolution: + { + integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==, + } + engines: {node: ">=4"} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.5 + array.prototype.flatmap: 1.3.0 + doctrine: 2.1.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.0 + minimatch: 3.1.2 + object.entries: 1.1.5 + object.fromentries: 2.0.5 + object.hasown: 1.1.1 + object.values: 1.1.5 + prop-types: 15.8.1 + resolve: 2.0.0-next.3 + semver: 6.3.0 + string.prototype.matchall: 4.0.7 + dev: false /eslint-plugin-react@7.31.8(eslint@8.26.0): resolution: @@ -11753,7 +12519,7 @@ packages: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.0 minimatch: 3.1.2 @@ -11765,6 +12531,7 @@ packages: resolve: 2.0.0-next.3 semver: 6.3.0 string.prototype.matchall: 4.0.7 + dev: true /eslint-plugin-testing-library@5.0.1(eslint@8.27.0)(typescript@4.8.4): resolution: @@ -11776,7 +12543,7 @@ packages: eslint: ^7.5.0 || ^8.0.0 dependencies: "@typescript-eslint/experimental-utils": 5.28.0(eslint@8.27.0)(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 transitivePeerDependencies: - supports-color - typescript @@ -11802,7 +12569,7 @@ packages: esrecurse: 4.3.0 estraverse: 5.3.0 - /eslint-utils@3.0.0(eslint@8.26.0): + /eslint-utils@3.0.0: resolution: { integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, @@ -11811,11 +12578,10 @@ packages: peerDependencies: eslint: ">=5" dependencies: - eslint: 8.26.0 eslint-visitor-keys: 2.1.0 - dev: true + dev: false - /eslint-utils@3.0.0(eslint@8.27.0): + /eslint-utils@3.0.0(eslint@8.26.0): resolution: { integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, @@ -11824,7 +12590,19 @@ packages: peerDependencies: eslint: ">=5" dependencies: - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.26.0 + eslint-visitor-keys: 2.1.0 + + /eslint-utils@3.0.0(eslint@8.27.0): + resolution: + { + integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, + } + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: ">=5" + dependencies: + eslint: 8.27.0 eslint-visitor-keys: 2.1.0 /eslint-visitor-keys@2.1.0: @@ -11849,14 +12627,14 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - "@eslint/eslintrc": 1.3.3(supports-color@8.1.1) - "@humanwhocodes/config-array": 0.11.7(supports-color@8.1.1) + "@eslint/eslintrc": 1.3.3 + "@humanwhocodes/config-array": 0.11.7 "@humanwhocodes/module-importer": 1.0.1 "@nodelib/fs.walk": 1.2.8 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 @@ -11890,7 +12668,56 @@ packages: text-table: 0.2.0 transitivePeerDependencies: - supports-color - dev: true + + /eslint@8.27.0: + resolution: + { + integrity: sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + "@eslint/eslintrc": 1.3.3 + "@humanwhocodes/config-array": 0.11.7 + "@humanwhocodes/module-importer": 1.0.1 + "@nodelib/fs.walk": 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.3 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.1.1 + eslint-utils: 3.0.0(eslint@8.27.0) + eslint-visitor-keys: 3.3.0 + espree: 9.4.1 + esquery: 1.4.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.15.0 + grapheme-splitter: 1.0.4 + ignore: 5.2.0 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-sdsl: 4.1.5 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + regexpp: 3.2.0 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color /eslint@8.27.0(supports-color@8.1.1): resolution: @@ -11941,6 +12768,7 @@ packages: text-table: 0.2.0 transitivePeerDependencies: - supports-color + dev: true /espree@9.4.1: resolution: @@ -12121,6 +12949,24 @@ packages: } engines: {node: ">= 0.8.0"} + /expand-brackets@2.1.4: + resolution: + { + integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==, + } + engines: {node: ">=0.10.0"} + dependencies: + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + posix-character-classes: 0.1.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: false + /expand-brackets@2.1.4(supports-color@8.1.1): resolution: { @@ -12149,19 +12995,6 @@ packages: homedir-polyfill: 1.0.3 dev: false - /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-get-type: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - dev: true - /expect@29.3.0: resolution: { @@ -12175,6 +13008,47 @@ packages: jest-message-util: 29.2.1 jest-util: 29.2.1 + /express@4.17.3: + resolution: + { + integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==, + } + engines: {node: ">= 0.10.0"} + dependencies: + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.19.2 + content-disposition: 0.5.4 + content-type: 1.0.4 + cookie: 0.4.2 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 1.1.2 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.1.2 + fresh: 0.5.2 + merge-descriptors: 1.0.1 + methods: 1.1.2 + on-finished: 2.3.0 + parseurl: 1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: 2.0.7 + qs: 6.9.7 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.17.2 + serve-static: 1.14.2 + setprototypeof: 1.2.0 + statuses: 1.5.0 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + dev: true + /express@4.17.3(supports-color@8.1.1): resolution: { @@ -12256,6 +13130,25 @@ packages: tmp: 0.0.33 dev: false + /extglob@2.0.4: + resolution: + { + integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==, + } + engines: {node: ">=0.10.0"} + dependencies: + array-unique: 0.3.2 + define-property: 1.0.0 + expand-brackets: 2.1.4 + extend-shallow: 2.0.1 + fragment-cache: 0.2.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: false + /extglob@2.0.4(supports-color@8.1.1): resolution: { @@ -12283,7 +13176,7 @@ packages: engines: {node: ">= 10.17.0"} hasBin: true dependencies: - debug: 4.3.3(supports-color@8.1.1) + debug: 4.3.3 get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -12310,7 +13203,7 @@ packages: glob-parent: 3.1.0 is-glob: 4.0.3 merge2: 1.4.1 - micromatch: 3.1.10(supports-color@8.1.1) + micromatch: 3.1.10 transitivePeerDependencies: - supports-color dev: false @@ -12428,6 +13321,24 @@ packages: dependencies: to-regex-range: 5.0.1 + /finalhandler@1.1.2: + resolution: + { + integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==, + } + engines: {node: ">= 0.8"} + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.3.0 + parseurl: 1.3.3 + statuses: 1.5.0 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + /finalhandler@1.1.2(supports-color@8.1.1): resolution: { @@ -13299,16 +14210,6 @@ packages: } dev: false - /html-encoding-sniffer@2.0.1: - resolution: - { - integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==, - } - engines: {node: ">=10"} - dependencies: - whatwg-encoding: 1.0.5 - dev: true - /html-encoding-sniffer@3.0.0: resolution: { @@ -13373,20 +14274,6 @@ packages: toidentifier: 1.0.1 dev: true - /http-proxy-agent@4.0.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==, - } - engines: {node: ">= 6"} - dependencies: - "@tootallnate/once": 1.1.2 - agent-base: 6.0.2(supports-color@8.1.1) - debug: 4.3.3(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: true - /http-proxy-agent@5.0.0: resolution: { @@ -13395,8 +14282,8 @@ packages: engines: {node: ">= 6"} dependencies: "@tootallnate/once": 2.0.0 - agent-base: 6.0.2(supports-color@8.1.1) - debug: 4.3.3(supports-color@8.1.1) + agent-base: 6.0.2 + debug: 4.3.3 transitivePeerDependencies: - supports-color @@ -13418,15 +14305,15 @@ packages: } dev: false - /https-proxy-agent@5.0.1(supports-color@8.1.1): + /https-proxy-agent@5.0.1: resolution: { integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, } engines: {node: ">= 6"} dependencies: - agent-base: 6.0.2(supports-color@8.1.1) - debug: 4.3.3(supports-color@8.1.1) + agent-base: 6.0.2 + debug: 4.3.3 transitivePeerDependencies: - supports-color @@ -14074,13 +14961,6 @@ packages: dependencies: has-symbols: 1.0.3 - /is-typedarray@1.0.0: - resolution: - { - integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, - } - dev: true - /is-unicode-supported@0.1.0: resolution: { @@ -14194,14 +15074,14 @@ packages: } engines: {node: ">=8"} - /istanbul-lib-instrument@5.2.0(supports-color@8.1.1): + /istanbul-lib-instrument@5.2.0: resolution: { integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==, } engines: {node: ">=8"} dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/parser": 7.20.3 "@istanbuljs/schema": 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -14220,14 +15100,14 @@ packages: make-dir: 3.1.0 supports-color: 7.2.0 - /istanbul-lib-source-maps@4.0.1(supports-color@8.1.1): + /istanbul-lib-source-maps@4.0.1: resolution: { integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, } engines: {node: ">=10"} dependencies: - debug: 4.3.3(supports-color@8.1.1) + debug: 4.3.3 istanbul-lib-coverage: 3.2.0 source-map: 0.6.1 transitivePeerDependencies: @@ -14257,18 +15137,6 @@ packages: minimatch: 3.1.2 dev: false - /jest-changed-files@27.5.1: - resolution: - { - integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - execa: 5.1.1 - throat: 6.0.2 - dev: true - /jest-changed-files@29.2.0: resolution: { @@ -14279,36 +15147,6 @@ packages: execa: 5.1.1 p-limit: 3.1.0 - /jest-circus@27.5.1(supports-color@8.1.1): - 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.11.9 - chalk: 4.1.2 - co: 4.6.0 - dedent: 0.7.0 - expect: 27.5.1 - is-generator-fn: 2.1.0 - jest-each: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-runtime: 27.5.1(supports-color@8.1.1) - jest-snapshot: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - pretty-format: 27.5.1 - slash: 3.0.0 - stack-utils: 2.0.5 - throat: 6.0.2 - transitivePeerDependencies: - - supports-color - dev: true - /jest-circus@29.3.0: resolution: { @@ -14338,12 +15176,12 @@ packages: transitivePeerDependencies: - supports-color - /jest-cli@27.5.1(supports-color@8.1.1): + /jest-cli@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): resolution: { - integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==, + integrity: sha512-rDb9iasZvqTkgrlwzVGemR5i20T0/XN1ug46Ch2vxTRa0zS5PHaVXQXYzYbuLFHs1xpc+XsB9xPfEkkwbnLJBg==, } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -14351,27 +15189,25 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 27.5.1(supports-color@8.1.1) - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 + "@jest/core": 29.3.0(ts-node@10.9.1) + "@jest/test-result": 29.2.1 + "@jest/types": 29.2.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-config: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) + jest-util: 29.2.1 + jest-validate: 29.2.2 prompts: 2.4.2 - yargs: 16.2.0 + yargs: 17.6.2 transitivePeerDependencies: - - bufferutil - - canvas + - "@types/node" - supports-color - ts-node - - utf-8-validate dev: true - /jest-cli@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): + /jest-cli@29.3.0(ts-node@10.9.1): resolution: { integrity: sha512-rDb9iasZvqTkgrlwzVGemR5i20T0/XN1ug46Ch2vxTRa0zS5PHaVXQXYzYbuLFHs1xpc+XsB9xPfEkkwbnLJBg==, @@ -14391,7 +15227,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) + jest-config: 29.3.0(ts-node@10.9.1) jest-util: 29.2.1 jest-validate: 29.2.2 prompts: 2.4.2 @@ -14400,51 +15236,51 @@ packages: - "@types/node" - supports-color - ts-node + dev: false - /jest-config@27.5.1(supports-color@8.1.1): + /jest-config@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): resolution: { - integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==, + integrity: sha512-sTSDs/M+//njznsytxiBxwfDnSWRb6OqiNSlO/B2iw1HUaa1YLsdWmV4AWLXss1XKzv1F0yVK+kA4XOhZ0I1qQ==, } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + 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.12.10(supports-color@8.1.1) - "@jest/test-sequencer": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - babel-jest: 27.5.1(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/core": 7.20.2 + "@jest/test-sequencer": 29.3.0 + "@jest/types": 29.2.1 + "@types/node": 18.11.9 + babel-jest: 29.3.0(@babel/core@7.20.2) chalk: 4.1.2 ci-info: 3.5.0 deepmerge: 4.2.2 glob: 7.2.0 graceful-fs: 4.2.10 - jest-circus: 27.5.1(supports-color@8.1.1) - jest-environment-jsdom: 27.5.1(supports-color@8.1.1) - jest-environment-node: 27.5.1 - jest-get-type: 27.5.1 - jest-jasmine2: 27.5.1(supports-color@8.1.1) - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runner: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-circus: 29.3.0 + jest-environment-node: 29.3.0 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.3.0 + jest-runner: 29.3.0 + jest-util: 29.2.1 + jest-validate: 29.2.2 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 27.5.1 + pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 + ts-node: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) transitivePeerDependencies: - - bufferutil - - canvas - supports-color - - utf-8-validate - dev: true - /jest-config@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): + /jest-config@29.3.0(ts-node@10.9.1): resolution: { integrity: sha512-sTSDs/M+//njznsytxiBxwfDnSWRb6OqiNSlO/B2iw1HUaa1YLsdWmV4AWLXss1XKzv1F0yVK+kA4XOhZ0I1qQ==, @@ -14459,10 +15295,9 @@ packages: ts-node: optional: true dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@jest/test-sequencer": 29.3.0 "@jest/types": 29.2.1 - "@types/node": 18.11.9 babel-jest: 29.3.0(@babel/core@7.20.2) chalk: 4.1.2 ci-info: 3.5.0 @@ -14482,22 +15317,10 @@ packages: pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + ts-node: 10.9.1(typescript@4.8.4) transitivePeerDependencies: - supports-color - - /jest-diff@27.5.1: - resolution: - { - integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - chalk: 4.1.2 - diff-sequences: 27.5.1 - jest-get-type: 27.5.1 - pretty-format: 27.5.1 - dev: true + dev: false /jest-diff@29.2.1: resolution: @@ -14511,16 +15334,6 @@ packages: jest-get-type: 29.2.0 pretty-format: 29.2.1 - /jest-docblock@27.5.1: - resolution: - { - integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - detect-newline: 3.1.0 - dev: true - /jest-docblock@29.2.0: resolution: { @@ -14530,20 +15343,6 @@ packages: dependencies: detect-newline: 3.1.0 - /jest-each@27.5.1: - 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 - chalk: 4.1.2 - jest-get-type: 27.5.1 - jest-util: 27.5.1 - pretty-format: 27.5.1 - dev: true - /jest-each@29.2.1: resolution: { @@ -14557,27 +15356,6 @@ packages: jest-util: 29.2.1 pretty-format: 29.2.1 - /jest-environment-jsdom@27.5.1(supports-color@8.1.1): - 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.11.9 - jest-mock: 27.5.1 - jest-util: 27.5.1 - jsdom: 16.7.0(supports-color@8.1.1) - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true - /jest-environment-jsdom@29.3.0: resolution: { @@ -14603,21 +15381,6 @@ packages: - supports-color - utf-8-validate - /jest-environment-node@27.5.1: - 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.11.9 - jest-mock: 27.5.1 - jest-util: 27.5.1 - dev: true - /jest-environment-node@29.3.0: resolution: { @@ -14632,14 +15395,6 @@ packages: jest-mock: 29.3.0 jest-util: 29.2.1 - /jest-get-type@27.5.1: - resolution: - { - integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - /jest-get-type@29.2.0: resolution: { @@ -14647,29 +15402,6 @@ packages: } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /jest-haste-map@27.5.1: - resolution: - { - integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - "@types/graceful-fs": 4.1.5 - "@types/node": 18.11.9 - anymatch: 3.1.2 - fb-watchman: 2.0.1 - graceful-fs: 4.2.10 - jest-regex-util: 27.5.1 - jest-serializer: 27.5.1 - jest-util: 27.5.1 - jest-worker: 27.5.1 - micromatch: 4.0.5 - walker: 1.0.8 - optionalDependencies: - fsevents: 2.3.2 - dev: true - /jest-haste-map@29.3.0: resolution: { @@ -14691,45 +15423,6 @@ packages: optionalDependencies: fsevents: 2.3.2 - /jest-jasmine2@27.5.1(supports-color@8.1.1): - 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.11.9 - chalk: 4.1.2 - co: 4.6.0 - expect: 27.5.1 - is-generator-fn: 2.1.0 - jest-each: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-runtime: 27.5.1(supports-color@8.1.1) - jest-snapshot: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - pretty-format: 27.5.1 - throat: 6.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-leak-detector@27.5.1: - resolution: - { - integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - jest-get-type: 27.5.1 - pretty-format: 27.5.1 - dev: true - /jest-leak-detector@29.2.1: resolution: { @@ -14740,19 +15433,6 @@ packages: jest-get-type: 29.2.0 pretty-format: 29.2.1 - /jest-matcher-utils@27.5.1: - resolution: - { - integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - chalk: 4.1.2 - jest-diff: 27.5.1 - jest-get-type: 27.5.1 - pretty-format: 27.5.1 - dev: true - /jest-matcher-utils@29.2.2: resolution: { @@ -14765,24 +15445,6 @@ packages: jest-get-type: 29.2.0 pretty-format: 29.2.1 - /jest-message-util@27.5.1: - 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.18.6 - "@jest/types": 27.5.1 - "@types/stack-utils": 2.0.1 - chalk: 4.1.2 - graceful-fs: 4.2.10 - micromatch: 4.0.5 - pretty-format: 27.5.1 - slash: 3.0.0 - stack-utils: 2.0.5 - dev: true - /jest-message-util@29.2.1: resolution: { @@ -14800,17 +15462,6 @@ packages: slash: 3.0.0 stack-utils: 2.0.5 - /jest-mock@27.5.1: - 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.11.9 - dev: true - /jest-mock@29.3.0: resolution: { @@ -14822,21 +15473,6 @@ packages: "@types/node": 18.11.9 jest-util: 29.2.1 - /jest-pnp-resolver@1.2.2(jest-resolve@27.5.1): - resolution: - { - integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==, - } - engines: {node: ">=6"} - peerDependencies: - jest-resolve: "*" - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: - jest-resolve: 27.5.1 - dev: true - /jest-pnp-resolver@1.2.2(jest-resolve@29.3.0): resolution: { @@ -14851,14 +15487,6 @@ packages: dependencies: jest-resolve: 29.3.0 - /jest-regex-util@27.5.1: - resolution: - { - integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - /jest-regex-util@29.2.0: resolution: { @@ -14866,20 +15494,6 @@ packages: } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /jest-resolve-dependencies@27.5.1(supports-color@8.1.1): - 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-regex-util: 27.5.1 - jest-snapshot: 27.5.1(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: true - /jest-resolve-dependencies@29.3.0: resolution: { @@ -14892,25 +15506,6 @@ packages: transitivePeerDependencies: - supports-color - /jest-resolve@27.5.1: - 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 - chalk: 4.1.2 - graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-pnp-resolver: 1.2.2(jest-resolve@27.5.1) - jest-util: 27.5.1 - jest-validate: 27.5.1 - resolve: 1.22.1 - resolve.exports: 1.1.0 - slash: 3.0.0 - dev: true - /jest-resolve@29.3.0: resolution: { @@ -14928,41 +15523,6 @@ packages: resolve.exports: 1.1.0 slash: 3.0.0 - /jest-runner@27.5.1(supports-color@8.1.1): - 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(supports-color@8.1.1) - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - chalk: 4.1.2 - emittery: 0.8.1 - graceful-fs: 4.2.10 - jest-docblock: 27.5.1 - jest-environment-jsdom: 27.5.1(supports-color@8.1.1) - jest-environment-node: 27.5.1 - jest-haste-map: 27.5.1 - jest-leak-detector: 27.5.1 - jest-message-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runtime: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - jest-worker: 27.5.1 - source-map-support: 0.5.21 - throat: 6.0.2 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true - /jest-runner@29.3.0: resolution: { @@ -14994,39 +15554,6 @@ packages: transitivePeerDependencies: - supports-color - /jest-runtime@27.5.1(supports-color@8.1.1): - 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(supports-color@8.1.1) - "@jest/types": 27.5.1 - chalk: 4.1.2 - cjs-module-lexer: 1.2.2 - collect-v8-coverage: 1.0.1 - execa: 5.1.1 - glob: 7.2.0 - graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-mock: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-snapshot: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - slash: 3.0.0 - strip-bom: 4.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /jest-runtime@29.3.0: resolution: { @@ -15059,50 +15586,6 @@ packages: transitivePeerDependencies: - supports-color - /jest-serializer@27.5.1: - resolution: - { - integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@types/node": 18.11.9 - graceful-fs: 4.2.10 - dev: true - - /jest-snapshot@27.5.1(supports-color@8.1.1): - 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.12.10(supports-color@8.1.1) - "@babel/generator": 7.20.4 - "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.12.10) - "@babel/traverse": 7.20.1(supports-color@8.1.1) - "@babel/types": 7.12.10 - "@jest/transform": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - "@types/babel__traverse": 7.17.1 - "@types/prettier": 2.4.4 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.10) - chalk: 4.1.2 - expect: 27.5.1 - graceful-fs: 4.2.10 - jest-diff: 27.5.1 - jest-get-type: 27.5.1 - jest-haste-map: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-util: 27.5.1 - natural-compare: 1.4.0 - pretty-format: 27.5.1 - semver: 7.3.8 - transitivePeerDependencies: - - supports-color - dev: true - /jest-snapshot@29.3.0: resolution: { @@ -15110,11 +15593,11 @@ packages: } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.20.2 "@babel/generator": 7.18.2 "@babel/plugin-syntax-jsx": 7.17.12(@babel/core@7.20.2) "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.20.2) - "@babel/traverse": 7.18.2(supports-color@8.1.1) + "@babel/traverse": 7.18.2 "@babel/types": 7.18.4 "@jest/expect-utils": 29.2.2 "@jest/transform": 29.3.0 @@ -15166,21 +15649,6 @@ packages: graceful-fs: 4.2.10 picomatch: 2.3.1 - /jest-validate@27.5.1: - 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 - camelcase: 6.3.0 - chalk: 4.1.2 - jest-get-type: 27.5.1 - leven: 3.1.0 - pretty-format: 27.5.1 - dev: true - /jest-validate@29.2.2: resolution: { @@ -15195,22 +15663,6 @@ packages: leven: 3.1.0 pretty-format: 29.2.1 - /jest-watcher@27.5.1: - 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.11.9 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - jest-util: 27.5.1 - string-length: 4.0.2 - dev: true - /jest-watcher@29.2.2: resolution: { @@ -15219,25 +15671,13 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: "@jest/test-result": 29.2.1 - "@jest/types": 29.2.1 - "@types/node": 18.11.9 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - emittery: 0.13.1 - jest-util: 29.2.1 - string-length: 4.0.2 - - /jest-worker@27.5.1: - resolution: - { - integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, - } - engines: {node: ">= 10.13.0"} - dependencies: + "@jest/types": 29.2.1 "@types/node": 18.11.9 - merge-stream: 2.0.0 - supports-color: 8.1.1 - dev: true + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.13.1 + jest-util: 29.2.1 + string-length: 4.0.2 /jest-worker@29.3.0: resolution: @@ -15251,12 +15691,12 @@ packages: merge-stream: 2.0.0 supports-color: 8.1.1 - /jest@27.5.1(supports-color@8.1.1): + /jest@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): resolution: { - integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==, + integrity: sha512-lWmHtOcJSjR6FYRw+4oo7456QUe6LN73Lw6HLwOWKTPLcyQF60cMh0EoIHi67dV74SY5tw/kL+jYC+Ji43ScUg==, } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -15264,18 +15704,17 @@ packages: node-notifier: optional: true dependencies: - "@jest/core": 27.5.1(supports-color@8.1.1) + "@jest/core": 29.3.0(ts-node@10.9.1) + "@jest/types": 29.2.1 import-local: 3.1.0 - jest-cli: 27.5.1(supports-color@8.1.1) + jest-cli: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) transitivePeerDependencies: - - bufferutil - - canvas + - "@types/node" - supports-color - ts-node - - utf-8-validate dev: true - /jest@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): + /jest@29.3.0(ts-node@10.9.1): resolution: { integrity: sha512-lWmHtOcJSjR6FYRw+4oo7456QUe6LN73Lw6HLwOWKTPLcyQF60cMh0EoIHi67dV74SY5tw/kL+jYC+Ji43ScUg==, @@ -15291,11 +15730,12 @@ packages: "@jest/core": 29.3.0(ts-node@10.9.1) "@jest/types": 29.2.1 import-local: 3.1.0 - jest-cli: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) + jest-cli: 29.3.0(ts-node@10.9.1) transitivePeerDependencies: - "@types/node" - supports-color - ts-node + dev: false /jiti@1.14.0: resolution: @@ -15370,6 +15810,71 @@ packages: dependencies: argparse: 2.0.1 + /jscodeshift@0.13.0: + resolution: + { + integrity: sha512-FNHLuwh7TeI0F4EzNVIRwUSxSqsGWM5nTv596FK4NfBnEEKFpIcyFeG559DMFGHSTIYA5AY4Fqh2cBrJx0EAwg==, + } + hasBin: true + peerDependencies: + "@babel/preset-env": ^7.1.6 + dependencies: + "@babel/core": 7.18.2 + "@babel/parser": 7.18.4 + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.18.2) + "@babel/preset-flow": 7.17.12(@babel/core@7.18.2) + "@babel/preset-typescript": 7.17.12(@babel/core@7.18.2) + "@babel/register": 7.17.7(@babel/core@7.18.2) + babel-core: 7.0.0-bridge.0(@babel/core@7.18.2) + colors: 1.4.0 + flow-parser: 0.179.0 + graceful-fs: 4.2.10 + micromatch: 3.1.10 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.20.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + dev: false + + /jscodeshift@0.13.0(@babel/preset-env@7.12.10): + resolution: + { + integrity: sha512-FNHLuwh7TeI0F4EzNVIRwUSxSqsGWM5nTv596FK4NfBnEEKFpIcyFeG559DMFGHSTIYA5AY4Fqh2cBrJx0EAwg==, + } + hasBin: true + peerDependencies: + "@babel/preset-env": ^7.1.6 + dependencies: + "@babel/core": 7.18.2 + "@babel/parser": 7.18.4 + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.18.2) + "@babel/preset-env": 7.12.10(@babel/core@7.12.10) + "@babel/preset-flow": 7.17.12(@babel/core@7.18.2) + "@babel/preset-typescript": 7.17.12(@babel/core@7.18.2) + "@babel/register": 7.17.7(@babel/core@7.18.2) + babel-core: 7.0.0-bridge.0(@babel/core@7.18.2) + colors: 1.4.0 + flow-parser: 0.179.0 + graceful-fs: 4.2.10 + micromatch: 3.1.10 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.20.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + dev: false + /jscodeshift@0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1): resolution: { @@ -15403,50 +15908,37 @@ packages: - supports-color dev: false - /jsdom@16.7.0(supports-color@8.1.1): + /jscodeshift@0.13.0(supports-color@8.1.1): resolution: { - integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==, + integrity: sha512-FNHLuwh7TeI0F4EzNVIRwUSxSqsGWM5nTv596FK4NfBnEEKFpIcyFeG559DMFGHSTIYA5AY4Fqh2cBrJx0EAwg==, } - engines: {node: ">=10"} + hasBin: true peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + "@babel/preset-env": ^7.1.6 dependencies: - abab: 2.0.6 - acorn: 8.8.1 - acorn-globals: 6.0.0 - cssom: 0.4.4 - cssstyle: 2.3.0 - data-urls: 2.0.0 - decimal.js: 10.4.2 - domexception: 2.0.1 - escodegen: 2.0.0 - form-data: 3.0.1 - html-encoding-sniffer: 2.0.1 - http-proxy-agent: 4.0.1(supports-color@8.1.1) - https-proxy-agent: 5.0.1(supports-color@8.1.1) - is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.2 - parse5: 6.0.1 - saxes: 5.0.1 - symbol-tree: 3.2.4 - tough-cookie: 4.1.2 - w3c-hr-time: 1.0.2 - w3c-xmlserializer: 2.0.0 - webidl-conversions: 6.1.0 - whatwg-encoding: 1.0.5 - whatwg-mimetype: 2.3.0 - whatwg-url: 8.7.0 - ws: 7.5.8 - xml-name-validator: 3.0.0 + "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/parser": 7.18.4 + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.18.2)(supports-color@8.1.1) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.18.2)(supports-color@8.1.1) + "@babel/preset-flow": 7.17.12(@babel/core@7.18.2) + "@babel/preset-typescript": 7.17.12(@babel/core@7.18.2)(supports-color@8.1.1) + "@babel/register": 7.17.7(@babel/core@7.18.2) + babel-core: 7.0.0-bridge.0(@babel/core@7.18.2) + colors: 1.4.0 + flow-parser: 0.179.0 + graceful-fs: 4.2.10 + micromatch: 3.1.10(supports-color@8.1.1) + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.20.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate - dev: true + dev: false /jsdom@19.0.0: resolution: @@ -15472,7 +15964,7 @@ packages: form-data: 4.0.0 html-encoding-sniffer: 3.0.0 http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1(supports-color@8.1.1) + https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.0 parse5: 6.0.1 @@ -15516,7 +16008,7 @@ packages: form-data: 4.0.0 html-encoding-sniffer: 3.0.0 http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1(supports-color@8.1.1) + https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.2 parse5: 7.1.1 @@ -15873,7 +16365,7 @@ packages: cli-truncate: 3.1.0 colorette: 2.0.17 commander: 9.4.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 execa: 6.1.0 lilconfig: 2.0.5 listr2: 4.0.5 @@ -16337,6 +16829,30 @@ packages: engines: {node: ">= 0.6"} dev: true + /micromatch@3.1.10: + resolution: + { + integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==, + } + engines: {node: ">=0.10.0"} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + braces: 2.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + extglob: 2.0.4 + fragment-cache: 0.2.1 + kind-of: 6.0.3 + nanomatch: 1.2.13 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: false + /micromatch@3.1.10(supports-color@8.1.1): resolution: { @@ -16657,6 +17173,28 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true + /nanomatch@1.2.13: + resolution: + { + integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==, + } + engines: {node: ">=0.10.0"} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + fragment-cache: 0.2.1 + is-windows: 1.0.2 + kind-of: 6.0.3 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: false + /nanomatch@1.2.13(supports-color@8.1.1): resolution: { @@ -16738,7 +17276,7 @@ packages: "@panva/hkdf": 1.0.2 cookie: 0.5.0 jose: 4.11.2 - next: 13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + next: 13.3.0(react-dom@18.2.0)(react@18.2.0) oauth: 0.9.15 openid-client: 5.2.1 preact: 10.11.3 @@ -16756,57 +17294,11 @@ packages: next: ">=10.0.0" react: ">=17.0.0" dependencies: - next: 13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + next: 13.3.0(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: true - /next@13.3.0(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==, - } - engines: {node: ">=14.6.0"} - hasBin: true - peerDependencies: - "@opentelemetry/api": ^1.1.0 - fibers: ">= 3.1.0" - node-sass: ^6.0.0 || ^7.0.0 - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - peerDependenciesMeta: - "@opentelemetry/api": - optional: true - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - dependencies: - "@next/env": 13.3.0 - "@swc/helpers": 0.4.14 - busboy: 1.6.0 - caniuse-lite: 1.0.30001434 - postcss: 8.4.14 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.12.10)(react@18.2.0) - optionalDependencies: - "@next/swc-darwin-arm64": 13.3.0 - "@next/swc-darwin-x64": 13.3.0 - "@next/swc-linux-arm64-gnu": 13.3.0 - "@next/swc-linux-arm64-musl": 13.3.0 - "@next/swc-linux-x64-gnu": 13.3.0 - "@next/swc-linux-x64-musl": 13.3.0 - "@next/swc-win32-arm64-msvc": 13.3.0 - "@next/swc-win32-ia32-msvc": 13.3.0 - "@next/swc-win32-x64-msvc": 13.3.0 - transitivePeerDependencies: - - "@babel/core" - - babel-plugin-macros - - /next@13.3.0(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0): + /next@13.3.0: resolution: { integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==, @@ -16835,9 +17327,7 @@ packages: busboy: 1.6.0 caniuse-lite: 1.0.30001434 postcss: 8.4.14 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.18.2)(react@18.2.0) + styled-jsx: 5.1.1 optionalDependencies: "@next/swc-darwin-arm64": 13.3.0 "@next/swc-darwin-x64": 13.3.0 @@ -16853,7 +17343,7 @@ packages: - babel-plugin-macros dev: false - /next@13.3.0(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0): + /next@13.3.0(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==, @@ -16884,7 +17374,7 @@ packages: postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.20.2)(react@18.2.0) + styled-jsx: 5.1.1(react@18.2.0) optionalDependencies: "@next/swc-darwin-arm64": 13.3.0 "@next/swc-darwin-x64": 13.3.0 @@ -19068,6 +19558,27 @@ packages: "@babel/code-frame": 7.18.6 dev: true + /rollup-plugin-esbuild@4.9.1(esbuild@0.14.51)(rollup@2.77.2): + resolution: + { + integrity: sha512-qn/x7Wz9p3Xnva99qcb+nopH0d2VJwVnsxJTGEg+Sh2Z3tqQl33MhOwzekVo1YTKgv+yAmosjcBRJygMfGrtLw==, + } + engines: {node: ">=12"} + peerDependencies: + esbuild: ">=0.10.1" + rollup: ^1.20.0 || ^2.0.0 + dependencies: + "@rollup/pluginutils": 4.2.1 + debug: 4.3.3 + es-module-lexer: 0.9.3 + esbuild: 0.14.51 + joycon: 3.1.1 + jsonc-parser: 3.0.0 + rollup: 2.77.2 + transitivePeerDependencies: + - supports-color + dev: true + /rollup-plugin-esbuild@4.9.1(esbuild@0.14.51)(rollup@2.77.2)(supports-color@8.1.1): resolution: { @@ -19297,6 +19808,30 @@ packages: dependencies: lru-cache: 6.0.0 + /send@0.17.2: + resolution: + { + integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==, + } + engines: {node: ">= 0.8.0"} + dependencies: + debug: 2.6.9 + depd: 1.1.2 + destroy: 1.0.4 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 1.8.1 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.3.0 + range-parser: 1.2.1 + statuses: 1.5.0 + transitivePeerDependencies: + - supports-color + dev: true + /send@0.17.2(supports-color@8.1.1): resolution: { @@ -19324,12 +19859,27 @@ packages: /serialize-error@7.0.1: resolution: { - integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==, + integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==, + } + engines: {node: ">=10"} + dependencies: + type-fest: 0.13.1 + dev: false + + /serve-static@1.14.2: + resolution: + { + integrity: sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==, } - engines: {node: ">=10"} + engines: {node: ">= 0.8.0"} dependencies: - type-fest: 0.13.1 - dev: false + encodeurl: 1.0.2 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.17.2 + transitivePeerDependencies: + - supports-color + dev: true /serve-static@1.14.2(supports-color@8.1.1): resolution: @@ -19560,6 +20110,25 @@ packages: kind-of: 3.2.2 dev: false + /snapdragon@0.8.2: + resolution: + { + integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==, + } + engines: {node: ">=0.10.0"} + dependencies: + base: 0.11.2 + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + map-cache: 0.2.2 + source-map: 0.5.7 + source-map-resolve: 0.5.3 + use: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: false + /snapdragon@0.8.2(supports-color@8.1.1): resolution: { @@ -19637,6 +20206,7 @@ packages: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 + dev: false /source-map-url@0.4.1: resolution: @@ -19661,14 +20231,6 @@ packages: engines: {node: ">=0.10.0"} requiresBuild: true - /source-map@0.7.4: - resolution: - { - integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==, - } - engines: {node: ">= 8"} - dev: true - /sourcemap-codec@1.4.8: resolution: { @@ -20002,27 +20564,7 @@ packages: dependencies: acorn: 8.8.1 - /styled-jsx@5.1.1(@babel/core@7.12.10)(react@18.2.0): - resolution: - { - integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, - } - engines: {node: ">= 12.0.0"} - peerDependencies: - "@babel/core": "*" - babel-plugin-macros: "*" - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" - peerDependenciesMeta: - "@babel/core": - optional: true - babel-plugin-macros: - optional: true - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - client-only: 0.0.1 - react: 18.2.0 - - /styled-jsx@5.1.1(@babel/core@7.18.2)(react@18.2.0): + /styled-jsx@5.1.1: resolution: { integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, @@ -20038,12 +20580,10 @@ packages: babel-plugin-macros: optional: true dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) client-only: 0.0.1 - react: 18.2.0 dev: false - /styled-jsx@5.1.1(@babel/core@7.20.2)(react@18.2.0): + /styled-jsx@5.1.1(react@18.2.0): resolution: { integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, @@ -20059,7 +20599,6 @@ packages: babel-plugin-macros: optional: true dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) client-only: 0.0.1 react: 18.2.0 @@ -20125,17 +20664,6 @@ packages: dependencies: has-flag: 4.0.0 - /supports-hyperlinks@2.3.0: - resolution: - { - integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==, - } - engines: {node: ">=8"} - dependencies: - has-flag: 4.0.0 - supports-color: 7.2.0 - dev: true - /supports-preserve-symlinks-flag@1.0.0: resolution: { @@ -20213,17 +20741,6 @@ packages: engines: {node: ">=8"} dev: false - /terminal-link@2.1.1: - resolution: - { - integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==, - } - engines: {node: ">=8"} - dependencies: - ansi-escapes: 4.3.2 - supports-hyperlinks: 2.3.0 - dev: true - /test-exclude@6.0.0: resolution: { @@ -20267,13 +20784,6 @@ packages: any-promise: 1.3.0 dev: true - /throat@6.0.2: - resolution: - { - integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==, - } - dev: true - /through2@3.0.2: resolution: { @@ -20464,16 +20974,6 @@ packages: universalify: 0.2.0 url-parse: 1.5.10 - /tr46@2.1.0: - resolution: - { - integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==, - } - engines: {node: ">=8"} - dependencies: - punycode: 2.1.1 - dev: true - /tr46@3.0.0: resolution: { @@ -20506,7 +21006,7 @@ packages: } dev: true - /ts-jest@27.1.4(@babel/core@7.12.10)(esbuild@0.14.51)(jest@27.5.1)(typescript@4.8.4): + /ts-jest@27.1.4(typescript@4.8.4): resolution: { integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==, @@ -20530,11 +21030,8 @@ packages: esbuild: optional: true dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) bs-logger: 0.2.6 - esbuild: 0.14.51 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1(supports-color@8.1.1) jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -20611,6 +21108,39 @@ packages: yn: 3.1.1 dev: true + /ts-node@10.9.1(typescript@4.8.4): + 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.10 + "@tsconfig/node14": 1.0.2 + "@tsconfig/node16": 1.0.3 + acorn: 8.7.1 + 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.8.4 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: false + /tsconfig-paths@3.14.1: resolution: { @@ -20644,14 +21174,12 @@ packages: integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==, } - /tslog@3.3.4: + /tslog@4.8.2: resolution: { - integrity: sha512-N0HHuHE0e/o75ALfkioFObknHR5dVchUad4F0XyFf3gXJYB++DewEzwGI/uIOM216E5a43ovnRNEeQIq9qgm4Q==, + integrity: sha512-eAKIRjxfSKYLs06r1wT7oou6Uv9VN6NW9g0JPidBlqQwPBBl5+84dm7r8zSOPVq1kyfEw1P6B3/FLSpZCorAgA==, } - engines: {node: ">=10"} - dependencies: - source-map-support: 0.5.21 + engines: {node: ">=16"} dev: false /tsscmp@1.0.6: @@ -20957,15 +21485,6 @@ packages: mime-types: 2.1.35 dev: true - /typedarray-to-buffer@3.1.5: - resolution: - { - integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==, - } - dependencies: - is-typedarray: 1.0.0 - dev: true - /typescript@4.8.4: resolution: { @@ -21030,6 +21549,44 @@ packages: - supports-color dev: true + /unbuild@0.7.6: + resolution: + { + integrity: sha512-W6pFPS6/ewlEV5uWbNgfo0i2LbVBsue5GKlOkCo6ozIrInOBEgq4s3HCUB5eZSw6Ty2iwF8dKM65pZX7QGZJ0g==, + } + hasBin: true + dependencies: + "@rollup/plugin-alias": 3.1.9(rollup@2.77.2) + "@rollup/plugin-commonjs": 22.0.1(rollup@2.77.2) + "@rollup/plugin-json": 4.1.0(rollup@2.77.2) + "@rollup/plugin-node-resolve": 13.3.0(rollup@2.77.2) + "@rollup/plugin-replace": 4.0.0(rollup@2.77.2) + "@rollup/pluginutils": 4.2.1 + chalk: 5.0.1 + consola: 2.15.3 + defu: 6.0.0 + esbuild: 0.14.51 + hookable: 5.1.1 + jiti: 1.14.0 + magic-string: 0.26.2 + mkdirp: 1.0.4 + mkdist: 0.3.13(typescript@4.8.4) + mlly: 0.5.5 + mri: 1.2.0 + pathe: 0.3.2 + pkg-types: 0.3.3 + pretty-bytes: 6.0.0 + rimraf: 3.0.2 + rollup: 2.77.2 + rollup-plugin-dts: 4.2.2(rollup@2.77.2)(typescript@4.8.4) + rollup-plugin-esbuild: 4.9.1(esbuild@0.14.51)(rollup@2.77.2) + scule: 0.2.1 + typescript: 4.8.4 + untyped: 0.4.4 + transitivePeerDependencies: + - supports-color + dev: true + /unbuild@0.7.6(supports-color@8.1.1): resolution: { @@ -21159,6 +21716,20 @@ packages: } dev: true + /untyped@0.4.4: + resolution: + { + integrity: sha512-sY6u8RedwfLfBis0copfU/fzROieyAndqPs8Kn2PfyzTjtA88vCk81J1b5z+8/VJc+cwfGy23/AqOCpvAbkNVw==, + } + dependencies: + "@babel/core": 7.20.2 + "@babel/standalone": 7.18.9 + "@babel/types": 7.18.4 + scule: 0.2.1 + transitivePeerDependencies: + - supports-color + dev: true + /untyped@0.4.4(supports-color@8.1.1): resolution: { @@ -21292,18 +21863,6 @@ packages: integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, } - /v8-to-istanbul@8.1.1: - resolution: - { - integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==, - } - engines: {node: ">=10.12.0"} - dependencies: - "@types/istanbul-lib-coverage": 2.0.4 - convert-source-map: 1.8.0 - source-map: 0.7.4 - dev: true - /v8-to-istanbul@9.0.1: resolution: { @@ -21371,7 +21930,7 @@ packages: replace-ext: 1.0.1 dev: false - /vite-tsconfig-paths@3.6.0(vite@3.2.4): + /vite-tsconfig-paths@3.6.0: resolution: { integrity: sha512-UfsPYonxLqPD633X8cWcPFVuYzx/CMNHAjZTasYwX69sXpa4gNmQkR0XCjj82h7zhLGdTWagMjC1qfb9S+zv0A==, @@ -21379,11 +21938,10 @@ packages: peerDependencies: vite: ">2.0.0-0" dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 globrex: 0.1.2 recrawl-sync: 2.2.3 tsconfig-paths: 4.0.0 - vite: 3.2.4(@types/node@18.11.9) transitivePeerDependencies: - supports-color dev: true @@ -21455,7 +22013,7 @@ packages: acorn: 8.8.1 acorn-walk: 8.2.0 chai: 4.3.6 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 jsdom: 19.0.0 local-pkg: 0.4.2 source-map: 0.6.1 @@ -21504,7 +22062,7 @@ packages: acorn: 8.8.1 acorn-walk: 8.2.0 chai: 4.3.6 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 jsdom: 20.0.3 local-pkg: 0.4.2 source-map: 0.6.1 @@ -21538,16 +22096,6 @@ packages: dependencies: browser-process-hrtime: 1.0.0 - /w3c-xmlserializer@2.0.0: - resolution: - { - integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==, - } - engines: {node: ">=10"} - dependencies: - xml-name-validator: 3.0.0 - dev: true - /w3c-xmlserializer@3.0.0: resolution: { @@ -21593,7 +22141,7 @@ packages: dependencies: chalk: 4.1.2 commander: 9.4.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: false @@ -21642,22 +22190,6 @@ packages: } engines: {node: ">= 8"} - /webidl-conversions@5.0.0: - resolution: - { - integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==, - } - engines: {node: ">=8"} - dev: true - - /webidl-conversions@6.1.0: - resolution: - { - integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==, - } - engines: {node: ">=10.4"} - dev: true - /webidl-conversions@7.0.0: resolution: { @@ -21687,15 +22219,6 @@ packages: - utf-8-validate dev: true - /whatwg-encoding@1.0.5: - resolution: - { - integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==, - } - dependencies: - iconv-lite: 0.4.24 - dev: true - /whatwg-encoding@2.0.0: resolution: { @@ -21705,13 +22228,6 @@ packages: dependencies: iconv-lite: 0.6.3 - /whatwg-mimetype@2.3.0: - resolution: - { - integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==, - } - dev: true - /whatwg-mimetype@3.0.0: resolution: { @@ -21739,18 +22255,6 @@ packages: tr46: 3.0.0 webidl-conversions: 7.0.0 - /whatwg-url@8.7.0: - resolution: - { - integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==, - } - engines: {node: ">=10"} - dependencies: - lodash: 4.17.21 - tr46: 2.1.0 - webidl-conversions: 6.1.0 - dev: true - /which-boxed-primitive@1.0.2: resolution: { @@ -21909,18 +22413,6 @@ packages: signal-exit: 3.0.7 dev: false - /write-file-atomic@3.0.3: - resolution: - { - integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==, - } - dependencies: - imurmurhash: 0.1.4 - is-typedarray: 1.0.0 - signal-exit: 3.0.7 - typedarray-to-buffer: 3.1.5 - dev: true - /write-file-atomic@4.0.2: resolution: { @@ -21976,13 +22468,6 @@ packages: utf-8-validate: optional: true - /xml-name-validator@3.0.0: - resolution: - { - integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==, - } - dev: true - /xml-name-validator@4.0.0: resolution: { @@ -22095,22 +22580,6 @@ packages: yargs-parser: 18.1.3 dev: false - /yargs@16.2.0: - resolution: - { - integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==, - } - engines: {node: ">=10"} - dependencies: - cliui: 7.0.4 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 20.2.9 - dev: true - /yargs@17.6.2: resolution: { From 6ec7159de606da0fe1e53b3ab1c7e15e44bf78e5 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Thu, 8 Jun 2023 20:45:30 +0530 Subject: [PATCH 13/18] Update main.yml --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f1cf92fbdf..7ea3835a53 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v2.2.4 with: - version: 8.6.0 + version: 7.33.0 - name: Setup node uses: actions/setup-node@v2 with: @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v2.2.4 with: - version: 8.6.0 + version: 7.33.0 - name: Setup node uses: actions/setup-node@v2 with: @@ -70,7 +70,7 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v2.2.4 with: - version: 8.6.0 + version: 7.33.0 - name: Setup node@16 uses: actions/setup-node@v2 @@ -129,7 +129,7 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v2.2.4 with: - version: 8.6.0 + version: 7.33.0 - name: Setup node@${{ matrix.NODE_VERSION }} uses: actions/setup-node@v2 From 1fcf06f3c8c15dd7c44f5aff3cd2d861462e82c9 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Thu, 8 Jun 2023 20:46:58 +0530 Subject: [PATCH 14/18] Update apps/toolkit-app/next.config.js --- apps/toolkit-app/next.config.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/apps/toolkit-app/next.config.js b/apps/toolkit-app/next.config.js index e8e685b3a2..e70bb88749 100644 --- a/apps/toolkit-app/next.config.js +++ b/apps/toolkit-app/next.config.js @@ -6,17 +6,6 @@ const { withBlitz } = require("@blitzjs/next") **/ const config = { reactStrictMode: true, - webpack: (config, { isServer }) => { - config.resolve.alias = { - ...config.resolve.alias, - "next-auth/core/lib/oauth/callback": - process.cwd() + "/node_modules/next-auth/core/lib/oauth/callback.js", - "next-auth/core/lib/oauth/authorization-url": - process.cwd() + "/node_modules/next-auth/core/lib/oauth/authorization-url.js", - "next-auth/core/init": process.cwd() + "/node_modules/next-auth/core/init.js", - } - return config - }, } module.exports = withBlitz(withNextAuthAdapter(config)) From 3e2303733f4317bd7a330017cc768a31a5a0add0 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Mon, 12 Jun 2023 16:30:43 +0530 Subject: [PATCH 15/18] next-auth working again --- apps/toolkit-app/.env | 3 + apps/toolkit-app/next.config.js | 2 +- apps/toolkit-app/src/pages/index.tsx | 4 +- packages/blitz-auth/package.json | 3 +- packages/blitz-auth/scripts/postinstall.js | 60 ------------ .../blitz-auth/src/server/adapters/index.ts | 1 + .../src/server/adapters/next-auth.ts | 1 - .../src/server/adapters/next-auth/adapter.ts | 2 - .../src/server/adapters/next-auth/webpack.ts | 13 +-- .../blitz-auth/src/server/auth-sessions.ts | 2 +- packages/blitz-next/package.json | 5 +- pnpm-lock.yaml | 94 +++++++++++-------- 12 files changed, 75 insertions(+), 115 deletions(-) delete mode 100644 packages/blitz-auth/scripts/postinstall.js diff --git a/apps/toolkit-app/.env b/apps/toolkit-app/.env index 5cd1aca530..4b088c986c 100644 --- a/apps/toolkit-app/.env +++ b/apps/toolkit-app/.env @@ -1,3 +1,6 @@ # This env file should be checked into source control # This is the place for default values for all environments # Values in `.env.local` and `.env.production` will override these values + +GITHUB_CLIENT_ID= dcd02983e7e911bd169f +GITHUB_CLIENT_SECRET = 5c3b2bac7d9bc55ba9f99d0d89a8ab4e655ff5bc \ No newline at end of file diff --git a/apps/toolkit-app/next.config.js b/apps/toolkit-app/next.config.js index 8840fb33b3..3e7f497505 100644 --- a/apps/toolkit-app/next.config.js +++ b/apps/toolkit-app/next.config.js @@ -1,4 +1,4 @@ -const { withNextAuthAdapter } = require("@blitzjs/auth/next-auth") +const { withNextAuthAdapter } = require("@blitzjs/auth") const { withBlitz } = require("@blitzjs/next") /** diff --git a/apps/toolkit-app/src/pages/index.tsx b/apps/toolkit-app/src/pages/index.tsx index e1e3d07538..ad0f28d5b9 100644 --- a/apps/toolkit-app/src/pages/index.tsx +++ b/apps/toolkit-app/src/pages/index.tsx @@ -38,10 +38,10 @@ const UserInfo = () => { } else { return ( <> - + Sign Up - + Login diff --git a/packages/blitz-auth/package.json b/packages/blitz-auth/package.json index 6f601cabc5..2fda5b4a6d 100644 --- a/packages/blitz-auth/package.json +++ b/packages/blitz-auth/package.json @@ -13,8 +13,7 @@ "lint": "eslint . --fix", "test": "vitest run", "test-watch": "vitest", - "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", - "postinstall": "node scripts/postinstall.js" + "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist" }, "main": "./dist/index-server.cjs", "module": "./dist/index-server.mjs", diff --git a/packages/blitz-auth/scripts/postinstall.js b/packages/blitz-auth/scripts/postinstall.js deleted file mode 100644 index bf62d87d84..0000000000 --- a/packages/blitz-auth/scripts/postinstall.js +++ /dev/null @@ -1,60 +0,0 @@ -//@ts-check -const resolveFrom = require("resolve-from") -const fs = require("fs") -const path = require("path") -const findUp = require("find-up") -const isInBlitzMonorepo = fs.existsSync(path.join(__dirname, "../../blitz-next")) - -async function findNodeModulesRoot(src) { - let root - if (isInBlitzMonorepo) { - root = path.join(src, "node_modules") - } else if (src.includes(".pnpm")) { - const blitzPkgLocation = path.dirname( - (await findUp("package.json", { - cwd: resolveFrom(src, "blitz"), - })) || "", - ) - if (!blitzPkgLocation) { - throw new Error("Internal Blitz Error: unable to find 'blitz' package location") - } - root = path.join(blitzPkgLocation, "../../../../") - } else { - const blitzPkgLocation = path.dirname( - (await findUp("package.json", { - cwd: resolveFrom(src, "blitz"), - })) || "", - ) - if (!blitzPkgLocation) { - throw new Error("Internal Blitz Error: unable to find 'blitz' package location") - } - - root = path.join(blitzPkgLocation, "../") - } - return path.join(root, ".blitz") -} - -async function patchNextAuth() { - try { - const nodeModulesRoot = await findNodeModulesRoot(__dirname) - const nextAuthPackageJson = require.resolve("next-auth", { - paths: [nodeModulesRoot], - }) - const nextAuthPackageJsonContents = require(path.join( - nextAuthPackageJson, - "..", - "package.json", - )) - nextAuthPackageJsonContents.exports = { - ...nextAuthPackageJsonContents.exports, - "./core/*": "./core/*.js", - } - fs.writeFileSync(nextAuthPackageJson, JSON.stringify(nextAuthPackageJsonContents, null, 2)) - console.debug("Patched next-auth package.json exports") - } catch (e) { - console.log("Failed to patch next-auth package.json exports") - console.log(e) - } -} - -patchNextAuth() diff --git a/packages/blitz-auth/src/server/adapters/index.ts b/packages/blitz-auth/src/server/adapters/index.ts index 0cefe34c4d..b5a99e222f 100644 --- a/packages/blitz-auth/src/server/adapters/index.ts +++ b/packages/blitz-auth/src/server/adapters/index.ts @@ -1 +1,2 @@ export * from "./passport/adapter" +export * from "./next-auth/webpack" diff --git a/packages/blitz-auth/src/server/adapters/next-auth.ts b/packages/blitz-auth/src/server/adapters/next-auth.ts index 2dcf9b0ec4..175e001778 100644 --- a/packages/blitz-auth/src/server/adapters/next-auth.ts +++ b/packages/blitz-auth/src/server/adapters/next-auth.ts @@ -1,3 +1,2 @@ export * from "./next-auth/adapter" export * from "./next-auth/types" -export * from "./next-auth/webpack" diff --git a/packages/blitz-auth/src/server/adapters/next-auth/adapter.ts b/packages/blitz-auth/src/server/adapters/next-auth/adapter.ts index 9a9a3bcd4f..738cf3787a 100644 --- a/packages/blitz-auth/src/server/adapters/next-auth/adapter.ts +++ b/packages/blitz-auth/src/server/adapters/next-auth/adapter.ts @@ -31,8 +31,6 @@ import {init} from "next-auth/core/init" import getAuthorizationUrl from "next-auth/core/lib/oauth/authorization-url" import oAuthCallback from "next-auth/core/lib/oauth/callback" -export {withNextAuthAdapter} from "./webpack" - const INTERNAL_REDIRECT_URL_KEY = "_redirectUrl" function switchURL(callbackUrl: string) { diff --git a/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts b/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts index 0f1f6acb8b..9fd3da5156 100644 --- a/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts +++ b/packages/blitz-auth/src/server/adapters/next-auth/webpack.ts @@ -1,18 +1,19 @@ //@ts-nocheck +import fs from "fs-extra" import path from "path" export function withNextAuthAdapter(nextConfig) { const config = Object.assign({}, nextConfig) + const nextAuthPath = path.dirname(require.resolve("next-auth")) const webpack = (config) => { config.resolve.alias = { ...config.resolve.alias, - "next-auth/core/lib/oauth/callback": path.resolve( - "./node_modules/next-auth/core/lib/oauth/callback.js", + "next-auth/core/lib/oauth/callback": path.join(nextAuthPath, "core/lib/oauth/callback.js"), + "next-auth/core/lib/oauth/authorization-url": path.join( + nextAuthPath, + "core/lib/oauth/authorization-url.js", ), - "next-auth/core/lib/oauth/authorization-url": path.resolve( - "./node_modules/next-auth/core/lib/oauth/authorization-url.js", - ), - "next-auth/core/init": path.resolve("./node_modules/next-auth/core/init.js"), + "next-auth/core/init": path.join(nextAuthPath, "core/init.js"), } return config } diff --git a/packages/blitz-auth/src/server/auth-sessions.ts b/packages/blitz-auth/src/server/auth-sessions.ts index d3f3fbfd51..b75dfc5cb5 100644 --- a/packages/blitz-auth/src/server/auth-sessions.ts +++ b/packages/blitz-auth/src/server/auth-sessions.ts @@ -189,7 +189,7 @@ export async function getBlitzContext(): Promise { const req = new IncomingMessage(new Socket()) as IncomingMessage & { cookies: {[key: string]: string} } - req.headers = Object.fromEntries(headers()) + req.headers = Object.fromEntries(headers() as any) const csrfToken = cookies().get(COOKIE_CSRF_TOKEN()) if (csrfToken) { req.headers[HEADER_CSRF] = csrfToken.value diff --git a/packages/blitz-next/package.json b/packages/blitz-next/package.json index 1a8c782059..4199abd2f5 100644 --- a/packages/blitz-next/package.json +++ b/packages/blitz-next/package.json @@ -40,7 +40,8 @@ "peerDependencies": { "blitz": "2.0.0-beta.28", "next": "*", - "react": "*" + "react": "*", + "tslog": "*" }, "devDependencies": { "@blitzjs/config": "workspace:2.0.0-beta.28", @@ -49,6 +50,7 @@ "@testing-library/react": "13.4.0", "@testing-library/react-hooks": "8.0.1", "@testing-library/user-event": "13.5.0", + "@types/debug": "4.1.7", "@types/node": "18.11.9", "@types/react": "18.0.25", "@types/react-dom": "17.0.14", @@ -62,6 +64,7 @@ "react-dom": "18.2.0", "resolve-from": "5.0.0", "ts-jest": "27.1.4", + "tslog": "4.8.2", "typescript": "^4.8.4", "unbuild": "0.7.6", "watch": "1.0.2" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a7abc3eb3b..2a0837399b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -956,7 +956,7 @@ importers: version: 8.27.0 eslint-config-next: specifier: latest - version: 13.4.4(eslint@8.27.0)(typescript@4.8.4) + version: 13.4.5(eslint@8.27.0)(typescript@4.8.4) eslint-plugin-testing-library: specifier: 5.0.1 version: 5.0.1(eslint@8.27.0)(typescript@4.8.4) @@ -1672,6 +1672,9 @@ importers: "@testing-library/user-event": specifier: 13.5.0 version: 13.5.0(@testing-library/dom@8.13.0) + "@types/debug": + specifier: 4.1.7 + version: 4.1.7 "@types/node": specifier: 18.11.9 version: 18.11.9 @@ -1711,6 +1714,9 @@ importers: ts-jest: specifier: 27.1.4 version: 27.1.4(typescript@4.8.4) + tslog: + specifier: 4.8.2 + version: 4.8.2 typescript: specifier: ^4.8.4 version: 4.8.4 @@ -2350,7 +2356,7 @@ packages: engines: {node: ">=6.0.0"} dependencies: "@jridgewell/gen-mapping": 0.1.1 - "@jridgewell/trace-mapping": 0.3.11 + "@jridgewell/trace-mapping": 0.3.17 /@babel/code-frame@7.16.7: resolution: @@ -5807,7 +5813,7 @@ packages: engines: {node: ">=6.0.0"} dependencies: "@jridgewell/set-array": 1.1.1 - "@jridgewell/sourcemap-codec": 1.4.13 + "@jridgewell/sourcemap-codec": 1.4.14 /@jridgewell/gen-mapping@0.3.1: resolution: @@ -5817,8 +5823,8 @@ packages: engines: {node: ">=6.0.0"} dependencies: "@jridgewell/set-array": 1.1.1 - "@jridgewell/sourcemap-codec": 1.4.13 - "@jridgewell/trace-mapping": 0.3.11 + "@jridgewell/sourcemap-codec": 1.4.14 + "@jridgewell/trace-mapping": 0.3.17 /@jridgewell/gen-mapping@0.3.2: resolution: @@ -5831,13 +5837,6 @@ packages: "@jridgewell/sourcemap-codec": 1.4.14 "@jridgewell/trace-mapping": 0.3.17 - /@jridgewell/resolve-uri@3.0.7: - resolution: - { - integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==, - } - engines: {node: ">=6.0.0"} - /@jridgewell/resolve-uri@3.1.0: resolution: { @@ -5852,27 +5851,12 @@ packages: } engines: {node: ">=6.0.0"} - /@jridgewell/sourcemap-codec@1.4.13: - resolution: - { - integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==, - } - /@jridgewell/sourcemap-codec@1.4.14: resolution: { integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, } - /@jridgewell/trace-mapping@0.3.11: - resolution: - { - integrity: sha512-RllI476aSMsxzeI9TtlSMoNTgHDxEmnl6GkkHwhr0vdL8W+0WuesyI8Vd3rBOfrwtPXbPxdT9ADJdiOKgzxPQA==, - } - dependencies: - "@jridgewell/resolve-uri": 3.0.7 - "@jridgewell/sourcemap-codec": 1.4.13 - /@jridgewell/trace-mapping@0.3.17: resolution: { @@ -5888,8 +5872,8 @@ packages: integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, } dependencies: - "@jridgewell/resolve-uri": 3.0.7 - "@jridgewell/sourcemap-codec": 1.4.13 + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.4.14 /@juanm04/cpx@2.0.1(supports-color@8.1.1): resolution: @@ -6007,10 +5991,10 @@ packages: glob: 7.1.7 dev: true - /@next/eslint-plugin-next@13.4.4: + /@next/eslint-plugin-next@13.4.5: resolution: { - integrity: sha512-5jnh7q6I15efnjR/rR+/TGTc9hn53g3JTbEjAMjmeQiExKqEUgIXqrHI5zlTNlNyzCPkBB860/ctxXheZaF2Vw==, + integrity: sha512-/xD/kyJhXmBZq+0xGKOdjL22c9/4i3mBAXaU9aOGEHTXqqFeOz8scJbScWF13aMqigeoFCsDqngIB2MIatcn4g==, } dependencies: glob: 7.1.7 @@ -12013,10 +11997,10 @@ packages: - supports-color dev: true - /eslint-config-next@13.4.4(eslint@8.27.0)(typescript@4.8.4): + /eslint-config-next@13.4.5(eslint@8.27.0)(typescript@4.8.4): resolution: { - integrity: sha512-z/PMbm6L0iC/fwISULxe8IVy4DtNqZk2wQY711o35klenq70O6ns82A8yuMVCFjHC0DIyB2lyugesRtuk9u8dQ==, + integrity: sha512-7qgJmRp9ClRzPgkzEz7ahK+Rasiv4k2aU3eqkkORzseNUGdtImZVYomcXUhUheHwkxzdN2p//nbIA7zJrCxsCg==, } peerDependencies: eslint: ^7.23.0 || ^8.0.0 @@ -12025,7 +12009,7 @@ packages: typescript: optional: true dependencies: - "@next/eslint-plugin-next": 13.4.4 + "@next/eslint-plugin-next": 13.4.5 "@rushstack/eslint-patch": 1.1.3 "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) eslint: 8.27.0 @@ -15276,6 +15260,7 @@ packages: pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 + ts-node: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) transitivePeerDependencies: - supports-color @@ -21063,7 +21048,7 @@ packages: "@tsconfig/node14": 1.0.2 "@tsconfig/node16": 1.0.3 "@types/node": 18.11.9 - acorn: 8.7.1 + acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 @@ -21072,7 +21057,6 @@ packages: typescript: 4.8.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: false /ts-node@10.9.1(@types/node@18.7.13)(typescript@4.8.4): resolution: @@ -21097,7 +21081,7 @@ packages: "@tsconfig/node14": 1.0.2 "@tsconfig/node16": 1.0.3 "@types/node": 18.7.13 - acorn: 8.7.1 + acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 @@ -21108,6 +21092,39 @@ packages: yn: 3.1.1 dev: true + /ts-node@10.9.1(typescript@4.8.4): + 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.10 + "@tsconfig/node14": 1.0.2 + "@tsconfig/node16": 1.0.3 + acorn: 8.8.1 + 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.8.4 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: false + /tsconfig-paths@3.14.1: resolution: { @@ -21147,7 +21164,6 @@ packages: integrity: sha512-eAKIRjxfSKYLs06r1wT7oou6Uv9VN6NW9g0JPidBlqQwPBBl5+84dm7r8zSOPVq1kyfEw1P6B3/FLSpZCorAgA==, } engines: {node: ">=16"} - dev: false /tsscmp@1.0.6: resolution: @@ -22172,7 +22188,7 @@ packages: engines: {node: ">= 10.13.0"} hasBin: true dependencies: - acorn: 8.7.1 + acorn: 8.8.1 acorn-walk: 8.2.0 chalk: 4.1.2 commander: 6.2.1 From 27b08bcf6d6cc0743351fa9587700a9bd73d9a86 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Mon, 12 Jun 2023 16:32:15 +0530 Subject: [PATCH 16/18] Update apps/toolkit-app/.env --- apps/toolkit-app/.env | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/toolkit-app/.env b/apps/toolkit-app/.env index 4b088c986c..5cd1aca530 100644 --- a/apps/toolkit-app/.env +++ b/apps/toolkit-app/.env @@ -1,6 +1,3 @@ # This env file should be checked into source control # This is the place for default values for all environments # Values in `.env.local` and `.env.production` will override these values - -GITHUB_CLIENT_ID= dcd02983e7e911bd169f -GITHUB_CLIENT_SECRET = 5c3b2bac7d9bc55ba9f99d0d89a8ab4e655ff5bc \ No newline at end of file From 5da9242528cb95b676f75359718e766f80b30d77 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 13 Jun 2023 18:54:46 +0530 Subject: [PATCH 17/18] Update packages/blitz-auth/src/server/auth-sessions.ts --- packages/blitz-auth/src/server/auth-sessions.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/blitz-auth/src/server/auth-sessions.ts b/packages/blitz-auth/src/server/auth-sessions.ts index b75dfc5cb5..3edc86e182 100644 --- a/packages/blitz-auth/src/server/auth-sessions.ts +++ b/packages/blitz-auth/src/server/auth-sessions.ts @@ -189,7 +189,8 @@ export async function getBlitzContext(): Promise { const req = new IncomingMessage(new Socket()) as IncomingMessage & { cookies: {[key: string]: string} } - req.headers = Object.fromEntries(headers() as any) + // @ts-expect-error TODO + req.headers = Object.fromEntries(headers()) const csrfToken = cookies().get(COOKIE_CSRF_TOKEN()) if (csrfToken) { req.headers[HEADER_CSRF] = csrfToken.value From 5872761932179010f072b0593546d65fa0f7ab6b Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Wed, 14 Jun 2023 20:32:33 +0530 Subject: [PATCH 18/18] Update packages/blitz-auth/src/server/auth-sessions.ts --- packages/blitz-auth/src/server/auth-sessions.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/blitz-auth/src/server/auth-sessions.ts b/packages/blitz-auth/src/server/auth-sessions.ts index 3edc86e182..d3f3fbfd51 100644 --- a/packages/blitz-auth/src/server/auth-sessions.ts +++ b/packages/blitz-auth/src/server/auth-sessions.ts @@ -189,7 +189,6 @@ export async function getBlitzContext(): Promise { const req = new IncomingMessage(new Socket()) as IncomingMessage & { cookies: {[key: string]: string} } - // @ts-expect-error TODO req.headers = Object.fromEntries(headers()) const csrfToken = cookies().get(COOKIE_CSRF_TOKEN()) if (csrfToken) {