From 7d452a91c72ee55130655fb3a57d40b2ddbbb6a4 Mon Sep 17 00:00:00 2001 From: Christian Foidl Date: Thu, 18 Jan 2024 16:05:49 +0100 Subject: [PATCH 1/5] chore: update all dependencies --- package.json | 12 +- packages/config/eslint/package.json | 14 +- packages/config/prettier/index.js | 29 +- packages/config/prettier/package.json | 6 +- packages/config/typescript/base.json | 4 +- packages/config/typescript/package.json | 2 +- packages/consumers/.eslintrc.json | 5 +- packages/consumers/package.json | 14 +- packages/consumers/tests/plugin.test.ts | 23 +- packages/core/.eslintrc.json | 5 +- packages/core/package.json | 20 +- packages/core/tests/requests.test.ts | 63 +- packages/jsonapi/.eslintrc.json | 5 +- packages/jsonapi/package.json | 16 +- packages/jsonapi/tests/menu.test.ts | 46 +- packages/jsonapi/tests/resources.test.ts | 312 +- .../simple-oauth-auth-code/.eslintrc.json | 5 +- packages/simple-oauth-auth-code/package.json | 16 +- .../DrupalkitSimpleOauthAuthCode.test.ts | 23 +- packages/simple-oauth/.eslintrc.json | 5 +- packages/simple-oauth/package.json | 16 +- .../tests/DrupalkitSimpleOauth.test.ts | 56 +- packages/types/.eslintrc.json | 5 +- packages/types/package.json | 2 +- packages/user-api/.eslintrc.json | 5 +- packages/user-api/package.json | 18 +- .../user-api/tests/DrupalkitUserApi.test.ts | 272 +- packages/verification/.eslintrc.json | 5 +- packages/verification/package.json | 14 +- .../tests/DrupalkitVerification.test.ts | 18 +- pnpm-lock.yaml | 3945 +++++++++-------- 31 files changed, 2704 insertions(+), 2277 deletions(-) diff --git a/package.json b/package.json index abb158f..c41a634 100644 --- a/package.json +++ b/package.json @@ -9,14 +9,14 @@ ], "private": true, "devDependencies": { - "@changesets/changelog-github": "^0.4.8", - "@changesets/cli": "^2.26.1", - "@commitlint/cli": "^17.6.3", - "@commitlint/config-conventional": "^17.6.3", + "@changesets/changelog-github": "^0.5.0", + "@changesets/cli": "^2.27.1", + "@commitlint/cli": "^18.4.4", + "@commitlint/config-conventional": "^18.4.4", "@drupal-kit/config-prettier": "workspace:*", "husky": "^8.0.3", - "syncpack": "^9.8.6", - "turbo": "^1.9.6" + "syncpack": "^12.3.0", + "turbo": "^1.11.3" }, "scripts": { "build": "turbo run build", diff --git a/packages/config/eslint/package.json b/packages/config/eslint/package.json index bef797e..c7fc597 100644 --- a/packages/config/eslint/package.json +++ b/packages/config/eslint/package.json @@ -4,13 +4,13 @@ "main": "index.js", "private": true, "devDependencies": { - "@typescript-eslint/eslint-plugin": "^5.59.6", - "@typescript-eslint/parser": "^5.59.6", - "@wunderwerk/eslint-config": "^1.0.3", - "eslint": "^8.40.0", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsdoc": "^44.2.4", - "typescript": "5.0.4" + "@typescript-eslint/eslint-plugin": "^6.19.0", + "@typescript-eslint/parser": "^6.19.0", + "@wunderwerk/eslint-config": "^1.0.7", + "eslint": "^8.56.0", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-jsdoc": "^48.0.2", + "typescript": "5.3.3" }, "files": [ "index.js" diff --git a/packages/config/prettier/index.js b/packages/config/prettier/index.js index 8d65fff..223487e 100644 --- a/packages/config/prettier/index.js +++ b/packages/config/prettier/index.js @@ -7,23 +7,14 @@ module.exports = { semi: true, trailingComma: "all", tabWidth: 2, - plugins: [ - "@ianvs/prettier-plugin-sort-imports", - ], - "pluginSearchDirs": false, - importOrder: [ - "^(jest-fetch-mock)$", - "", - "^@drupal-kit/(.*)$", - "", - "^~/utils/(.*)$", - "^~/(.*)$", - "^[./]", - ], - importOrderSeparation: false, - importOrderSortSpecifiers: true, - importOrderBuiltinModulesToTop: true, - importOrderParserPlugins: ["decorators-legacy", "importAssertions", "typescript"], - importOrderMergeDuplicateImports: true, - importOrderCombineTypeAndValueImports: true, + // plugins: [ + // "@ianvs/prettier-plugin-sort-imports", + // ], + // importOrder: [ + // "", + // "^@drupal-kit/(.*)$", + // "", + // "^@/(.*)$", + // "^[./]", + // ], }; diff --git a/packages/config/prettier/package.json b/packages/config/prettier/package.json index 6570835..d940df6 100644 --- a/packages/config/prettier/package.json +++ b/packages/config/prettier/package.json @@ -4,9 +4,9 @@ "main": "index.js", "private": true, "devDependencies": { - "@ianvs/prettier-plugin-sort-imports": "^3.7.2", - "prettier": "^2.8.8", - "typescript": "5.0.4" + "@ianvs/prettier-plugin-sort-imports": "^4.1.1", + "prettier": "^3.2.4", + "typescript": "5.3.3" }, "files": [ "index.js" diff --git a/packages/config/typescript/base.json b/packages/config/typescript/base.json index d68fda3..667d07c 100644 --- a/packages/config/typescript/base.json +++ b/packages/config/typescript/base.json @@ -10,8 +10,8 @@ "strictNullChecks": true, "noEmit": true, "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "node16", + "module": "nodenext", + "moduleResolution": "nodenext", "resolveJsonModule": true, "isolatedModules": true }, diff --git a/packages/config/typescript/package.json b/packages/config/typescript/package.json index 4151edc..84f3aeb 100644 --- a/packages/config/typescript/package.json +++ b/packages/config/typescript/package.json @@ -3,7 +3,7 @@ "version": "0.10.0", "private": true, "devDependencies": { - "typescript": "5.0.4" + "typescript": "5.3.3" }, "files": [ "base.json" diff --git a/packages/consumers/.eslintrc.json b/packages/consumers/.eslintrc.json index f3bb65f..e2cbf09 100644 --- a/packages/consumers/.eslintrc.json +++ b/packages/consumers/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["@drupal-kit/eslint-config"] + "extends": ["@drupal-kit/eslint-config"], + "parserOptions": { + "project": "./tsconfig.json" + } } diff --git a/packages/consumers/package.json b/packages/consumers/package.json index d8f6d48..86dd37f 100644 --- a/packages/consumers/package.json +++ b/packages/consumers/package.json @@ -12,14 +12,14 @@ "@drupal-kit/types": "workspace:0.10.0", "@rollup/plugin-typescript": "^11.1.1", "@swc/core": "^1.3.58", - "ava": "^5.2.0", - "esbuild": "^0.17.19", - "msw": "^1.2.1", - "rollup": "^3.22.0", - "rollup-plugin-dts": "^5.3.0", - "rollup-plugin-esbuild": "^5.0.0", + "ava": "^6.0.1", + "esbuild": "^0.19.11", + "msw": "^2.1.2", + "rollup": "^4.9.5", + "rollup-plugin-dts": "^6.1.0", + "rollup-plugin-esbuild": "^6.1.0", "ts-node": "^10.9.1", - "typescript": "5.0.4" + "typescript": "5.3.3" }, "scripts": { "build": "rollup -c", diff --git a/packages/consumers/tests/plugin.test.ts b/packages/consumers/tests/plugin.test.ts index cc1a632..ba35aa0 100644 --- a/packages/consumers/tests/plugin.test.ts +++ b/packages/consumers/tests/plugin.test.ts @@ -1,5 +1,5 @@ import test from "ava"; -import { rest } from "msw"; +import { http, HttpResponse } from "msw"; import { setupServer } from "msw/node"; import { Drupalkit, DrupalkitOptions } from "@drupal-kit/core"; @@ -40,9 +40,10 @@ test.serial("Add consumer id to request", async (t) => { t.plan(2); server.use( - rest.get("*", (req, res) => { - t.is(req.headers.get("X-Consumer-ID"), CONSUMER_UUID); - return res(); + http.get("*", ({ request }) => { + t.is(request.headers.get("X-Consumer-ID"), CONSUMER_UUID); + + return HttpResponse.text(); }), ); @@ -64,9 +65,10 @@ test.serial( t.plan(1); server.use( - rest.get("*", (req, res) => { - t.is(req.headers.get("X-Consumer-ID"), null); - return res(); + http.get("*", ({ request }) => { + t.is(request.headers.get("X-Consumer-ID"), null); + + return HttpResponse.text(); }), ); @@ -84,9 +86,10 @@ test.serial("Add consumer id with custom header name", async (t) => { t.plan(1); server.use( - rest.get("*", (req, res) => { - t.is(req.headers.get("X-Custom-Consumer-ID"), CONSUMER_UUID); - return res(); + http.get("*", ({ request }) => { + t.is(request.headers.get("X-Custom-Consumer-ID"), CONSUMER_UUID); + + return HttpResponse.text(); }), ); diff --git a/packages/core/.eslintrc.json b/packages/core/.eslintrc.json index f3bb65f..e2cbf09 100644 --- a/packages/core/.eslintrc.json +++ b/packages/core/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["@drupal-kit/eslint-config"] + "extends": ["@drupal-kit/eslint-config"], + "parserOptions": { + "project": "./tsconfig.json" + } } diff --git a/packages/core/package.json b/packages/core/package.json index 1a36fab..219c480 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -4,10 +4,10 @@ "type": "module", "types": "./dist/index.d.ts", "dependencies": { - "@wunderwerk/ts-functional": "1.0.0-beta.2", + "@wunderwerk/ts-functional": "1.0.0-beta.3", "before-after-hook": "^3.0.2", "is-plain-object": "^5.0.0", - "qs": "~6.9" + "qs": "~6.11.2" }, "devDependencies": { "@drupal-kit/config-typescript": "workspace:0.10.0", @@ -17,14 +17,14 @@ "@swc/core": "^1.3.58", "@types/qs": "~6.9", "@wunderwerk/node-pkg-version-export": "1.0.0-beta.1", - "ava": "^5.2.0", - "esbuild": "^0.17.19", - "msw": "^1.2.1", - "rollup": "^3.22.0", - "rollup-plugin-dts": "^5.3.0", - "rollup-plugin-esbuild": "^5.0.0", - "ts-node": "^10.9.1", - "typescript": "5.0.4" + "ava": "^6.0.1", + "esbuild": "^0.19.11", + "msw": "^2.1.2", + "rollup": "^4.9.5", + "rollup-plugin-dts": "^6.1.0", + "rollup-plugin-esbuild": "^6.1.0", + "ts-node": "^10.9.2", + "typescript": "5.3.3" }, "scripts": { "build": "rollup -c", diff --git a/packages/core/tests/requests.test.ts b/packages/core/tests/requests.test.ts index af6a6d6..ccfa057 100644 --- a/packages/core/tests/requests.test.ts +++ b/packages/core/tests/requests.test.ts @@ -1,20 +1,18 @@ import test from "ava"; -import { rest } from "msw"; +import { http, HttpResponse } from "msw"; import { setupServer } from "msw/node"; import { Drupalkit, DrupalkitError } from "../src/index.js"; -import DemoEndpointResponse from "./fixtures/demo-endpoint.json" assert { type: "json" }; +import DemoEndpointResponse from "./fixtures/demo-endpoint.json" with { type: "json" }; const BASE_URL = "https://my-drupal.com"; const server = setupServer( - rest.get("*/demo-endpoint", (_req, res, ctx) => { - return res(ctx.json(DemoEndpointResponse)); + http.get("*/demo-endpoint", () => { + return HttpResponse.json(DemoEndpointResponse); }), - rest.get("*/not-found", (_req, res, ctx) => res(ctx.status(404))), - rest.get("*/network-error", (_req, res) => - res.networkError("Failed to connect"), - ), + http.get("*/not-found", () => HttpResponse.text("", { status: 404 })), + http.get("*/network-error", () => HttpResponse.error()), ); test.before(() => { @@ -61,12 +59,12 @@ test.serial("Make request with payload", async (t) => { }; server.use( - rest.post("*/demo-endpoint", async (req, res, ctx) => { - const payload = await req.json(); + http.post("*/demo-endpoint", async ({ request }) => { + const payload = await request.json(); t.deepEqual(payload, body); - t.deepEqual(req.headers.get("X-Custom"), headers["X-Custom"]); + t.deepEqual(request.headers.get("X-Custom"), headers["X-Custom"]); - return res(); + return HttpResponse.text(); }), ); @@ -94,14 +92,13 @@ test.serial("Add response data to result", async (t) => { t.deepEqual(result.unwrap().headers, { "content-type": "application/json", - "x-powered-by": "msw", }); }); test.serial("Do not add response data for 204 and 205 responses", async (t) => { server.use( - rest.get("*/demo-endpoint-204", async (req, res, ctx) => { - return res(ctx.status(204)); + http.get("*/demo-endpoint-204", async () => { + return HttpResponse.text(null, { status: 204 }); }), ); @@ -135,8 +132,8 @@ test.serial("Return drupalkit errors", async (t) => { }); test.serial("Append locale to url", async (t) => { - rest.get("*/en/demo-endpoint", (req, res, ctx) => { - return res(ctx.json(DemoEndpointResponse)); + http.get("*/en/demo-endpoint", () => { + return HttpResponse.json(DemoEndpointResponse); }); const drupalkit = new Drupalkit({ @@ -156,8 +153,8 @@ test.serial("Append locale to url", async (t) => { }); test.serial("Append overwritten locale to url", async (t) => { - rest.get("*/en/demo-endpoint", (req, res, ctx) => { - return res(ctx.json(DemoEndpointResponse)); + http.get("*/en/demo-endpoint", () => { + return HttpResponse.json(DemoEndpointResponse); }); const drupalkit = new Drupalkit({ @@ -206,11 +203,11 @@ test.serial("Add auth header if present", async (t) => { const authHeaderValue = "Bearer 00000"; server.use( - rest.get("*/demo-endpoint", (req, res) => { - t.is(req.headers.get("authorization"), authHeaderValue); + http.get("*/demo-endpoint", ({ request }) => { + t.is(request.headers.get("authorization"), authHeaderValue); - res.once(); - }), + return HttpResponse.text(); + }, { once: true }), ); const drupalkit = new Drupalkit({ @@ -227,11 +224,11 @@ test.serial("Add auth header if present", async (t) => { server.resetHandlers(); server.use( - rest.get("*/demo-endpoint", (req, res) => { - t.is(req.headers.get("authorization"), null); + http.get("*/demo-endpoint", ({ request }) => { + t.is(request.headers.get("authorization"), null); - res.once(); - }), + return HttpResponse.text(); + }, { once: true }), ); await drupalkit.request("/demo-endpoint", { @@ -244,11 +241,11 @@ test.serial("Add auth header if present", async (t) => { server.resetHandlers(); server.use( - rest.get("*/demo-endpoint", (req, res) => { - t.is(req.headers.get("authorization"), null); + http.get("*/demo-endpoint", ({ request }) => { + t.is(request.headers.get("authorization"), null); - res.once(); - }), + return HttpResponse.text(); + }, { once: true }), ); await drupalkit.request("/demo-endpoint", { @@ -276,8 +273,8 @@ test.serial("Allow options overrides", async (t) => { t.plan(3); server.use( - rest.get("*/en/demo-endpoint", (req, res, ctx) => { - return res(ctx.json(DemoEndpointResponse)); + http.get("*/en/demo-endpoint", () => { + return HttpResponse.json(DemoEndpointResponse); }), ); diff --git a/packages/jsonapi/.eslintrc.json b/packages/jsonapi/.eslintrc.json index f3bb65f..e2cbf09 100644 --- a/packages/jsonapi/.eslintrc.json +++ b/packages/jsonapi/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["@drupal-kit/eslint-config"] + "extends": ["@drupal-kit/eslint-config"], + "parserOptions": { + "project": "./tsconfig.json" + } } diff --git a/packages/jsonapi/package.json b/packages/jsonapi/package.json index 666dfe1..8d700f0 100644 --- a/packages/jsonapi/package.json +++ b/packages/jsonapi/package.json @@ -5,7 +5,7 @@ "types": "./dist/index.d.ts", "dependencies": { "@drupal-kit/core": "workspace:0.10.0", - "@wunderwerk/ts-functional": "1.0.0-beta.2", + "@wunderwerk/ts-functional": "1.0.0-beta.3", "drupal-jsonapi-params": "^2.2.0", "jsona": "^1.11.0", "ts-json-api": "^1.2.0" @@ -16,14 +16,14 @@ "@drupal-kit/types": "workspace:0.10.0", "@rollup/plugin-typescript": "^11.1.1", "@swc/core": "^1.3.58", - "ava": "^5.2.0", - "esbuild": "^0.17.19", - "msw": "^1.2.1", - "rollup": "^3.22.0", - "rollup-plugin-dts": "^5.3.0", - "rollup-plugin-esbuild": "^5.0.0", + "ava": "^6.0.1", + "esbuild": "^0.19.11", + "msw": "^2.1.2", + "rollup": "^4.9.5", + "rollup-plugin-dts": "^6.1.0", + "rollup-plugin-esbuild": "^6.1.0", "ts-node": "^10.9.1", - "typescript": "5.0.4" + "typescript": "5.3.3" }, "scripts": { "build": "rollup -c && node scripts/fix-type-declaration.mjs", diff --git a/packages/jsonapi/tests/menu.test.ts b/packages/jsonapi/tests/menu.test.ts index 073d27d..49c7565 100644 --- a/packages/jsonapi/tests/menu.test.ts +++ b/packages/jsonapi/tests/menu.test.ts @@ -1,12 +1,11 @@ import test from "ava"; -import { DrupalJsonApiParams } from "drupal-jsonapi-params"; -import { rest } from "msw"; +import { http, HttpResponse } from "msw"; import { setupServer } from "msw/node"; import { Drupalkit } from "@drupal-kit/core"; import { DrupalkitJsonApi, DrupalkitJsonApiError } from "../src/index.js"; -import JsonApiMenuItems from "./fixtures/jsonapi_menu_items.json" assert { type: "json" }; -import JsonApiMenuItemsError from "./fixtures/jsonapi_menu_items_error.json" assert { type: "json" }; +import JsonApiMenuItemsError from "./fixtures/jsonapi_menu_items_error.json" with { type: "json" }; +import JsonApiMenuItems from "./fixtures/jsonapi_menu_items.json" with { type: "json" }; const BASE_URL = "https://my-drupal.com"; @@ -40,11 +39,12 @@ test.serial("Get menu items", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.get("*/jsonapi/menu_items/my_menu", (_req, res, ctx) => - res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiMenuItems), - ), + http.get("*/jsonapi/menu_items/my_menu", () => + HttpResponse.json(JsonApiMenuItems, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }), ), ); @@ -65,13 +65,14 @@ test.serial("Get menu items with custom request options", async (t) => { }); server.use( - rest.get("*/jsonapi/menu_items/my_menu", (req, res, ctx) => { - t.is(req.headers.get("x-custom"), "1"); - - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiMenuItems), - ); + http.get("*/jsonapi/menu_items/my_menu", ({ request }) => { + t.is(request.headers.get("x-custom"), "1"); + + return HttpResponse.json(JsonApiMenuItems, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -87,12 +88,13 @@ test.serial("Get menu items for non-existant menu", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.get("*/jsonapi/menu_items/non_existant", (_req, res, ctx) => - res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(404), - ctx.json(JsonApiMenuItemsError), - ), + http.get("*/jsonapi/menu_items/non_existant", () => + HttpResponse.json(JsonApiMenuItemsError, { + status: 404, + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) ), ); diff --git a/packages/jsonapi/tests/resources.test.ts b/packages/jsonapi/tests/resources.test.ts index cff811e..d27497d 100644 --- a/packages/jsonapi/tests/resources.test.ts +++ b/packages/jsonapi/tests/resources.test.ts @@ -1,15 +1,16 @@ import test from "ava"; import { DrupalJsonApiParams } from "drupal-jsonapi-params"; -import { rest } from "msw"; +import { http, HttpResponse } from "msw"; import { setupServer } from "msw/node"; import { Drupalkit } from "@drupal-kit/core"; import { DrupalkitJsonApi, DrupalkitJsonApiError } from "../src/index.js"; -import JsonApiArticleCollection from "./fixtures/jsonapi_article_collection.json" assert { type: "json" }; -import JsonApiArticleDetail from "./fixtures/jsonapi_article_detail.json" assert { type: "json" }; -import JsonApiIncludeError from "./fixtures/jsonapi_include_error.json" assert { type: "json" }; -import JsonApiIndex from "./fixtures/jsonapi_index.json" assert { type: "json" }; -import JsonApiIndexError from "./fixtures/jsonapi_index_error.json" assert { type: "json" }; +import JsonApiArticleCollection from "./fixtures/jsonapi_article_collection.json" with { type: "json" }; +import JsonApiArticleDetail from "./fixtures/jsonapi_article_detail.json" with { type: "json" }; +import JsonApiIncludeError from "./fixtures/jsonapi_include_error.json" with { type: "json" }; +import JsonApiIndexError from "./fixtures/jsonapi_index_error.json" with { type: "json" }; +import JsonApiIndex from "./fixtures/jsonapi_index.json" with { type: "json" }; + import "./types.js"; const BASE_URL = "https://my-drupal.com"; @@ -84,11 +85,12 @@ test.serial("Get JSON:API index", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.get("*/jsonapi", (_req, res, ctx) => - res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiIndex), - ), + http.get("*/jsonapi", () => + HttpResponse.json(JsonApiIndex, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }), ), ); @@ -104,12 +106,13 @@ test.serial("Get JSON:API index", async (t) => { // With error server.resetHandlers(); server.use( - rest.get("*/jsonapi", (_req, res, ctx) => - res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(500), - ctx.json(JsonApiIndexError), - ), + http.get("*/jsonapi", () => + HttpResponse.json(JsonApiIndexError, { + status: 500, + headers: { + "Content-Type": "application/vnd.api+json", + }, + }), ), ); @@ -129,13 +132,14 @@ test.serial("Get JSON:API index with options", async (t) => { }); server.use( - rest.get("*/jsonapi", (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.get("*/jsonapi", ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiIndex), - ); + return HttpResponse.json(JsonApiIndex, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }); }), ); @@ -156,11 +160,12 @@ test.serial("Get JSON:API resource", async (t) => { const uuid = "5f5f5f5f-5f5f-5f5f-5f5f-5f5f5f5f5f5f"; server.use( - rest.get("*/jsonapi/node/article/" + uuid, (_req, res, ctx) => - res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiArticleDetail), - ), + http.get("*/jsonapi/node/article/" + uuid, () => + HttpResponse.json(JsonApiArticleDetail, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) ), ); @@ -187,13 +192,14 @@ test.serial("Get JSON:API resource with options", async (t) => { }); server.use( - rest.get("*/jsonapi/node/article/" + uuid, (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.get("*/jsonapi/node/article/" + uuid, ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiArticleDetail), - ); + return HttpResponse.json(JsonApiArticleDetail, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -217,11 +223,12 @@ test.serial("Simplify single resource", async (t) => { const uuid = "5f5f5f5f-5f5f-5f5f-5f5f-5f5f5f5f5f5f"; server.use( - rest.get("*/jsonapi/node/article/" + uuid, (_req, res, ctx) => - res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiArticleDetail), - ), + http.get("*/jsonapi/node/article/" + uuid, () => + HttpResponse.json(JsonApiArticleDetail, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) ), ); @@ -246,13 +253,14 @@ test.serial("Get localized JSON:API resource", async (t) => { t.plan(2); server.use( - rest.get("*/jsonapi/node/article/" + uuid, (req, res, ctx) => { - t.assert(req.url.toString().includes("/en/jsonapi")); + http.get("*/jsonapi/node/article/" + uuid, ({ request }) => { + t.assert(request.url.toString().includes("/en/jsonapi")); - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiArticleDetail), - ); + return HttpResponse.json(JsonApiArticleDetail, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -282,13 +290,14 @@ test.serial("Get JSON:API resource with query parameters", async (t) => { queryParams.addCustomParam({ resourceVersion: "id:3" }); server.use( - rest.get("*/jsonapi/node/article/" + uuid, (req, res, ctx) => { - t.snapshot(req.url.toString()); + http.get("*/jsonapi/node/article/" + uuid, ({ request }) => { + t.snapshot(request.url.toString()); - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiArticleDetail), - ); + return HttpResponse.json(JsonApiArticleDetail, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -312,12 +321,13 @@ test.serial("Handle error when getting single resource", async (t) => { queryParams.addInclude(["wrong-field"]); server.use( - rest.get("*/jsonapi/node/article/" + uuid, (_req, res, ctx) => { - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(400), - ctx.json(JsonApiIncludeError), - ); + http.get("*/jsonapi/node/article/" + uuid, () => { + return HttpResponse.json(JsonApiIncludeError, { + status: 400, + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -344,12 +354,12 @@ test.serial("Get many resources", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.get("*/jsonapi/node/article", (_req, res, ctx) => { - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(200), - ctx.json(JsonApiArticleCollection), - ); + http.get("*/jsonapi/node/article", () => { + return HttpResponse.json(JsonApiArticleCollection, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -373,15 +383,15 @@ test.serial("Get many resources with custom request options", async (t) => { }); server.use( - rest.get("*/jsonapi/node/article", (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); - t.assert(req.url.toString().includes("/en/jsonapi")); - - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(200), - ctx.json(JsonApiArticleCollection), - ); + http.get("*/jsonapi/node/article", ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); + t.assert(request.url.toString().includes("/en/jsonapi")); + + return HttpResponse.json(JsonApiArticleCollection, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -403,12 +413,12 @@ test.serial("Simplify many resources", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.get("*/jsonapi/node/article", (_req, res, ctx) => { - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(200), - ctx.json(JsonApiArticleCollection), - ); + http.get("*/jsonapi/node/article", () => { + return HttpResponse.json(JsonApiArticleCollection, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -429,12 +439,13 @@ test.serial("Handle error when getting many resource", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.get("*/jsonapi/node/article", (_req, res, ctx) => { - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(400), - ctx.json(JsonApiIncludeError), - ); + http.get("*/jsonapi/node/article", () => { + return HttpResponse.json(JsonApiIncludeError, { + status: 400, + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); const result = await drupalkit.jsonApi.resource( @@ -453,8 +464,8 @@ test.serial("Handle network error", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.get("*/jsonapi/node/article", (_req, res) => { - return res.networkError("Network Error"); + http.get("*/jsonapi/node/article", () => { + return HttpResponse.error(); }), ); const result = await drupalkit.jsonApi.resource( @@ -479,14 +490,15 @@ test.serial("Create new resource", async (t) => { t.plan(3); server.use( - rest.post("*/jsonapi/node/article", async (req, res, ctx) => { - const payload = await req.json(); - t.is(payload.data.type, "node--article"); + http.post("*/jsonapi/node/article", async ({ request }) => { + const payload = await request.json(); + t.is((payload as any).data.type, "node--article"); - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiArticleDetail), - ); + return HttpResponse.json(JsonApiArticleDetail, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -524,15 +536,15 @@ test.serial("Create resource with custom request options", async (t) => { }); server.use( - rest.post("*/jsonapi/node/article", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); - t.assert(req.url.toString().includes("/en/jsonapi")); - - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(200), - ctx.json(JsonApiArticleDetail), - ); + http.post("*/jsonapi/node/article", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); + t.assert(request.url.toString().includes("/en/jsonapi")); + + return HttpResponse.json(JsonApiArticleDetail, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -569,12 +581,13 @@ test.serial("Handle error when creating new resource", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.post("*/jsonapi/node/article", (_req, res, ctx) => - res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(400), - ctx.json(JsonApiIncludeError), - ), + http.post("*/jsonapi/node/article", () => + HttpResponse.json(JsonApiIncludeError, { + status: 400, + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) ), ); @@ -613,16 +626,17 @@ test.serial("Update resource", async (t) => { t.plan(4); server.use( - rest.patch("*/jsonapi/node/article/" + uuid, async (req, res, ctx) => { - const payload = await req.json(); + http.patch("*/jsonapi/node/article/" + uuid, async ({ request }) => { + const payload = await request.json() as any; t.is(payload.data.type, "node--article"); t.is(payload.data.id, uuid); - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.json(JsonApiArticleDetail), - ); + return HttpResponse.json(JsonApiArticleDetail, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -653,15 +667,15 @@ test.serial("Update resource with custom request options", async (t) => { }); server.use( - rest.patch("*/jsonapi/node/article/" + uuid, async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); - t.assert(req.url.toString().includes("/en/jsonapi")); - - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(200), - ctx.json(JsonApiArticleDetail), - ); + http.patch("*/jsonapi/node/article/" + uuid, async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); + t.assert(request.url.toString().includes("/en/jsonapi")); + + return HttpResponse.json(JsonApiArticleDetail, { + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -691,12 +705,13 @@ test.serial("Handle error when updating resource", async (t) => { const uuid = "5f5f5f5f-5f5f-5f5f-5f5f-5f5f5f5f5f5f"; server.use( - rest.patch("*/jsonapi/node/article/" + uuid, (_req, res, ctx) => - res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(400), - ctx.json(JsonApiIncludeError), - ), + http.patch("*/jsonapi/node/article/" + uuid, () => + HttpResponse.json(JsonApiIncludeError, { + status: 400, + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) ), ); @@ -724,8 +739,13 @@ test.serial("Delete resource", async (t) => { const uuid = "5f5f5f5f-5f5f-5f5f-5f5f-5f5f5f5f5f5f"; server.use( - rest.delete("*/jsonapi/node/article/" + uuid, (_req, res, ctx) => - res(ctx.set("Content-Type", "application/vnd.api+json"), ctx.status(204)), + http.delete("*/jsonapi/node/article/" + uuid, () => + HttpResponse.text(null, { + status: 204, + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) ), ); @@ -748,14 +768,15 @@ test.serial("Delete resource with custom request options", async (t) => { }); server.use( - rest.delete("*/jsonapi/node/article/" + uuid, (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); - - return res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(400), - ctx.json(JsonApiIncludeError), - ); + http.delete("*/jsonapi/node/article/" + uuid, ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); + + HttpResponse.json(JsonApiIncludeError, { + status: 400, + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) }), ); @@ -779,12 +800,13 @@ test.serial("Handle error when deleting resource", async (t) => { const uuid = "5f5f5f5f-5f5f-5f5f-5f5f-5f5f5f5f5f5f"; server.use( - rest.delete("*/jsonapi/node/article/" + uuid, (_req, res, ctx) => - res( - ctx.set("Content-Type", "application/vnd.api+json"), - ctx.status(400), - ctx.json(JsonApiIncludeError), - ), + http.delete("*/jsonapi/node/article/" + uuid, () => + HttpResponse.json(JsonApiIncludeError, { + status: 400, + headers: { + "Content-Type": "application/vnd.api+json", + }, + }) ), ); diff --git a/packages/simple-oauth-auth-code/.eslintrc.json b/packages/simple-oauth-auth-code/.eslintrc.json index f3bb65f..e2cbf09 100644 --- a/packages/simple-oauth-auth-code/.eslintrc.json +++ b/packages/simple-oauth-auth-code/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["@drupal-kit/eslint-config"] + "extends": ["@drupal-kit/eslint-config"], + "parserOptions": { + "project": "./tsconfig.json" + } } diff --git a/packages/simple-oauth-auth-code/package.json b/packages/simple-oauth-auth-code/package.json index 4f22eb3..2b562ca 100644 --- a/packages/simple-oauth-auth-code/package.json +++ b/packages/simple-oauth-auth-code/package.json @@ -5,7 +5,7 @@ "types": "./dist/index.d.ts", "dependencies": { "@drupal-kit/core": "workspace:0.10.0", - "@wunderwerk/ts-functional": "1.0.0-beta.2" + "@wunderwerk/ts-functional": "1.0.0-beta.3" }, "devDependencies": { "@drupal-kit/config-typescript": "workspace:0.10.0", @@ -13,14 +13,14 @@ "@drupal-kit/types": "workspace:0.10.0", "@rollup/plugin-typescript": "^11.1.1", "@swc/core": "^1.3.58", - "ava": "^5.2.0", - "esbuild": "^0.17.19", - "msw": "^1.2.1", - "rollup": "^3.22.0", - "rollup-plugin-dts": "^5.3.0", - "rollup-plugin-esbuild": "^5.0.0", + "ava": "^6.0.1", + "esbuild": "^0.19.11", + "msw": "^2.1.2", + "rollup": "^4.9.5", + "rollup-plugin-dts": "^6.1.0", + "rollup-plugin-esbuild": "^6.1.0", "ts-node": "^10.9.1", - "typescript": "5.0.4" + "typescript": "5.3.3" }, "scripts": { "build": "rollup -c", diff --git a/packages/simple-oauth-auth-code/tests/DrupalkitSimpleOauthAuthCode.test.ts b/packages/simple-oauth-auth-code/tests/DrupalkitSimpleOauthAuthCode.test.ts index a5c41fc..f8510bb 100644 --- a/packages/simple-oauth-auth-code/tests/DrupalkitSimpleOauthAuthCode.test.ts +++ b/packages/simple-oauth-auth-code/tests/DrupalkitSimpleOauthAuthCode.test.ts @@ -1,10 +1,10 @@ import test from "ava"; -import { rest } from "msw"; +import { http, HttpResponse } from "msw"; import { setupServer } from "msw/node"; import { Drupalkit, DrupalkitOptions } from "@drupal-kit/core"; import { DrupalkitSimpleOauthAuthCode } from "../src/index.js"; -import AuthCodeResponse from "./fixtures/auth_code_response.json" assert { type: "json" }; +import AuthCodeResponse from "./fixtures/auth_code_response.json" with { type: "json" }; const BASE_URL = "https://my-drupal.com"; @@ -43,8 +43,8 @@ test.serial("Request auth code", async (t) => { const email = "F3f6Z@example.com"; server.use( - rest.post("*/simple-oauth/auth-code", async (req, res, ctx) => - res(ctx.json(AuthCodeResponse)), + http.post("*/simple-oauth/auth-code", async ({ request }) => + HttpResponse.json(AuthCodeResponse), ), ); @@ -67,9 +67,10 @@ test.serial("Request auth code with custom request options", async (t) => { const email = "F3f6Z@example.com"; server.use( - rest.post("*/simple-oauth/auth-code", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); - return res(ctx.json(AuthCodeResponse)); + http.post("*/simple-oauth/auth-code", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); + + return HttpResponse.json(AuthCodeResponse); }), ); @@ -92,8 +93,8 @@ test.serial("Request auth code with explicit endpoint", async (t) => { const email = "F3f6Z@example.com"; server.use( - rest.post("*/custom/auth-code", async (_req, res, ctx) => - res(ctx.json(AuthCodeResponse)), + http.post("*/custom/auth-code", async () => + HttpResponse.json(AuthCodeResponse), ), ); @@ -109,8 +110,8 @@ test.serial("Handle network error", async (t) => { const email = "F3f6Z@example.com"; server.use( - rest.post("*/simple-oauth/auth-code", async (_req, res) => - res.networkError("Network Error"), + http.post("*/simple-oauth/auth-code", async () => + HttpResponse.error() ), ); diff --git a/packages/simple-oauth/.eslintrc.json b/packages/simple-oauth/.eslintrc.json index f3bb65f..e2cbf09 100644 --- a/packages/simple-oauth/.eslintrc.json +++ b/packages/simple-oauth/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["@drupal-kit/eslint-config"] + "extends": ["@drupal-kit/eslint-config"], + "parserOptions": { + "project": "./tsconfig.json" + } } diff --git a/packages/simple-oauth/package.json b/packages/simple-oauth/package.json index ff7bb1f..8a8666b 100644 --- a/packages/simple-oauth/package.json +++ b/packages/simple-oauth/package.json @@ -5,7 +5,7 @@ "types": "./dist/index.d.ts", "dependencies": { "@drupal-kit/core": "workspace:0.10.0", - "@wunderwerk/ts-functional": "1.0.0-beta.2" + "@wunderwerk/ts-functional": "1.0.0-beta.3" }, "devDependencies": { "@drupal-kit/config-typescript": "workspace:0.10.0", @@ -13,14 +13,14 @@ "@drupal-kit/types": "workspace:0.10.0", "@rollup/plugin-typescript": "^11.1.1", "@swc/core": "^1.3.58", - "ava": "^5.2.0", - "esbuild": "^0.17.19", - "msw": "^1.2.1", - "rollup": "^3.22.0", - "rollup-plugin-dts": "^5.3.0", - "rollup-plugin-esbuild": "^5.0.0", + "ava": "^6.0.1", + "esbuild": "^0.19.11", + "msw": "^2.1.2", + "rollup": "^4.9.5", + "rollup-plugin-dts": "^6.1.0", + "rollup-plugin-esbuild": "^6.1.0", "ts-node": "^10.9.1", - "typescript": "5.0.4" + "typescript": "5.3.3" }, "scripts": { "build": "rollup -c", diff --git a/packages/simple-oauth/tests/DrupalkitSimpleOauth.test.ts b/packages/simple-oauth/tests/DrupalkitSimpleOauth.test.ts index 1415527..d7f891d 100644 --- a/packages/simple-oauth/tests/DrupalkitSimpleOauth.test.ts +++ b/packages/simple-oauth/tests/DrupalkitSimpleOauth.test.ts @@ -1,5 +1,5 @@ import test from "ava"; -import { rest } from "msw"; +import { http, HttpResponse } from "msw"; import { setupServer } from "msw/node"; import { Drupalkit, DrupalkitError, DrupalkitOptions } from "@drupal-kit/core"; @@ -7,9 +7,9 @@ import { DrupalkitSimpleOauth, DrupalkitSimpleOauthError, } from "../src/index.js"; -import ErrorResponse from "./fixtures/error_response.json" assert { type: "json" }; -import TokenResponse from "./fixtures/token_response.json" assert { type: "json" }; -import UserInfoResponse from "./fixtures/userinfo_response.json" assert { type: "json" }; +import ErrorResponse from "./fixtures/error_response.json" with { type: "json" }; +import TokenResponse from "./fixtures/token_response.json" with { type: "json" }; +import UserInfoResponse from "./fixtures/userinfo_response.json" with { type: "json" }; const BASE_URL = "https://my-drupal.com"; @@ -56,16 +56,16 @@ test.serial("Request token with client credentials grant", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.post("*/oauth/token", async (req, res, ctx) => { - const body = await req.text(); + http.post("*/oauth/token", async ({ request }) => { + const body = await request.text(); t.is( - req.headers.get("content-type"), + request.headers.get("content-type"), "application/x-www-form-urlencoded", ); t.snapshot(body); - return res(ctx.json(TokenResponse)); + return HttpResponse.json(TokenResponse); }), ); @@ -92,10 +92,10 @@ test.serial("Request token with custom request options", async (t) => { }); server.use( - rest.post("*/oauth/token", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/oauth/token", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(TokenResponse)); + return HttpResponse.json(TokenResponse) }), ); @@ -121,9 +121,7 @@ test.serial("Request token with explicit endpoint", async (t) => { }); server.use( - rest.post("*/custom/token", async (_req, res, ctx) => - res(ctx.json(TokenResponse)), - ), + http.post("*/custom/token", async () => HttpResponse.json(TokenResponse)), ); const result = await drupalkit.simpleOauth.requestToken( @@ -141,8 +139,8 @@ test.serial("Handle request errors", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.post("*/oauth/token", async (_req, res, ctx) => - res(ctx.status(400), ctx.json(ErrorResponse)), + http.post("*/oauth/token", async () => + HttpResponse.json(ErrorResponse, { status: 400 }), ), ); @@ -164,8 +162,8 @@ test.serial("Handle network errors", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.post("*/oauth/token", async (_req, res) => - res.networkError("Network Error"), + http.post("*/oauth/token", async () => + HttpResponse.error() ), ); @@ -187,9 +185,7 @@ test.serial( const drupalkit = createDrupalkit(); server.use( - rest.post("*/not/oauth/related", async (_req, res, ctx) => - res(ctx.status(400)), - ), + http.post("*/not/oauth/related", async () => HttpResponse.text(null, { status: 400 })), ); const result = await drupalkit.request("/not/oauth/related", { @@ -206,9 +202,7 @@ test.serial("Request user info", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.get("*/oauth/userinfo", async (_req, res, ctx) => - res(ctx.json(UserInfoResponse)), - ), + http.get("*/oauth/userinfo", async () => HttpResponse.json(UserInfoResponse)), ); const result = await drupalkit.simpleOauth.getUserInfo(); @@ -228,10 +222,10 @@ test.serial("Request user info with custom request options", async (t) => { }); server.use( - rest.get("*/oauth/userinfo", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.get("*/oauth/userinfo", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(UserInfoResponse)); + return HttpResponse.json(UserInfoResponse); }), ); @@ -252,8 +246,8 @@ test.serial("Request user info with explicit endpoint", async (t) => { }); server.use( - rest.get("*/custom/userinfo", async (_req, res, ctx) => - res(ctx.json(UserInfoResponse)), + http.get("*/custom/userinfo", async () => + HttpResponse.json(UserInfoResponse), ), ); @@ -266,8 +260,8 @@ test.serial("Handle request errors when requesting user info", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.get("*/oauth/userinfo", async (_req, res, ctx) => - res(ctx.status(400), ctx.json(ErrorResponse)), + http.get("*/oauth/userinfo", async () => + HttpResponse.json(ErrorResponse, { status: 400 }), ), ); diff --git a/packages/types/.eslintrc.json b/packages/types/.eslintrc.json index f3bb65f..e2cbf09 100644 --- a/packages/types/.eslintrc.json +++ b/packages/types/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["@drupal-kit/eslint-config"] + "extends": ["@drupal-kit/eslint-config"], + "parserOptions": { + "project": "./tsconfig.json" + } } diff --git a/packages/types/package.json b/packages/types/package.json index 352536a..1f25d05 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -5,7 +5,7 @@ "devDependencies": { "@drupal-kit/config-typescript": "workspace:0.10.0", "@drupal-kit/eslint-config": "workspace:0.10.0", - "typescript": "5.0.4" + "typescript": "5.3.3" }, "scripts": { "lint": "eslint --ext .ts,.tsx src --max-warnings 0", diff --git a/packages/user-api/.eslintrc.json b/packages/user-api/.eslintrc.json index f3bb65f..e2cbf09 100644 --- a/packages/user-api/.eslintrc.json +++ b/packages/user-api/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["@drupal-kit/eslint-config"] + "extends": ["@drupal-kit/eslint-config"], + "parserOptions": { + "project": "./tsconfig.json" + } } diff --git a/packages/user-api/package.json b/packages/user-api/package.json index 5d1a54e..06bb5bb 100644 --- a/packages/user-api/package.json +++ b/packages/user-api/package.json @@ -5,7 +5,7 @@ "types": "./dist/index.d.ts", "dependencies": { "@drupal-kit/core": "workspace:0.10.0", - "@wunderwerk/ts-functional": "1.0.0-beta.2", + "@wunderwerk/ts-functional": "1.0.0-beta.3", "util-deprecate": "^1.0.2" }, "devDependencies": { @@ -15,14 +15,14 @@ "@rollup/plugin-typescript": "^11.1.1", "@swc/core": "^1.3.58", "@types/util-deprecate": "^1.0.3", - "ava": "^5.2.0", - "esbuild": "^0.17.19", - "msw": "^1.2.1", - "rollup": "^3.22.0", - "rollup-plugin-dts": "^5.3.0", - "rollup-plugin-esbuild": "^5.0.0", - "ts-node": "^10.9.1", - "typescript": "5.0.4" + "ava": "^6.0.1", + "esbuild": "^0.19.11", + "msw": "^2.1.2", + "rollup": "^4.9.5", + "rollup-plugin-dts": "^6.1.0", + "rollup-plugin-esbuild": "^6.1.0", + "ts-node": "^10.9.2", + "typescript": "5.3.3" }, "scripts": { "build": "rollup -c", diff --git a/packages/user-api/tests/DrupalkitUserApi.test.ts b/packages/user-api/tests/DrupalkitUserApi.test.ts index 2f76f3d..f36f27e 100644 --- a/packages/user-api/tests/DrupalkitUserApi.test.ts +++ b/packages/user-api/tests/DrupalkitUserApi.test.ts @@ -1,5 +1,5 @@ import test from "ava"; -import { rest } from "msw"; +import { HttpResponse, http } from "msw"; import { setupServer } from "msw/node"; import { Drupalkit, DrupalkitOptions } from "@drupal-kit/core"; @@ -51,14 +51,14 @@ test.serial("Register", async (t) => { }; server.use( - rest.post("*/user-api/register", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/register", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - const data = await req.json(); + const data = await request.json(); t.deepEqual(data, payload); - return res(ctx.json(UserResponse)); + return HttpResponse.json(UserResponse) }), ); @@ -84,10 +84,10 @@ test.serial("Register with custom request options", async (t) => { }; server.use( - rest.post("*/user-api/register", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/user-api/register", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(UserResponse)); + return HttpResponse.json(UserResponse) }), ); @@ -111,8 +111,8 @@ test.serial("Register with custom endpoint", async (t) => { }; server.use( - rest.post("*/custom/register", async (req, res, ctx) => - res(ctx.json(UserResponse)), + http.post("*/custom/register", async ({ request }) => + HttpResponse.json(UserResponse) ), ); @@ -130,8 +130,8 @@ test.serial("Handle register error", async (t) => { }; server.use( - rest.post("*/user-api/register", async (_req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/register", async () => + HttpResponse.text(null, { status: 400 }) ), ); @@ -152,12 +152,12 @@ test.serial("Resend register email", async (t) => { const operation = "register"; server.use( - rest.post("*/user-api/register/resend-email", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/register/resend-email", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - t.deepEqual(await req.json(), { email, operation }); + t.deepEqual(await request.json(), { email, operation }); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -180,10 +180,10 @@ test.serial("Resend register email with custom request options", async (t) => { }); server.use( - rest.post("*/user-api/register/resend-email", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/user-api/register/resend-email", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -204,8 +204,8 @@ test.serial("Resend register email with custom endpoint", async (t) => { const operation = "register"; server.use( - rest.post("*/custom/register/resend-email", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/register/resend-email", async () => + HttpResponse.json(successResponse) ), ); @@ -223,8 +223,8 @@ test.serial("Resend register email - deprecated version", async (t) => { const operation = "register"; server.use( - rest.post("*/custom/register/resend-email", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/register/resend-email", async () => + HttpResponse.json(successResponse) ), ); @@ -242,8 +242,8 @@ test.serial("Handle error while resend register email", async (t) => { const operation = "register"; server.use( - rest.post("*/user-api/register/resend-email", async (_req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/register/resend-email", async () => + HttpResponse.text(null, { status: 400 }) ), ); @@ -262,10 +262,10 @@ test.serial("Init cancel account", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.post("*/user-api/cancel-account/init", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/cancel-account/init", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -286,10 +286,10 @@ test.serial("Init cancel account with custom request options", async (t) => { }); server.use( - rest.post("*/user-api/cancel-account/init", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/user-api/cancel-account/init", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -308,8 +308,8 @@ test.serial("Init cancel account with custom endpoint", async (t) => { }); server.use( - rest.post("*/custom/cancel-account/init", async (req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/cancel-account/init", async ({ request }) => + HttpResponse.json(successResponse) ), ); @@ -325,8 +325,8 @@ test.serial("Init cancel account - deprecated version", async (t) => { }); server.use( - rest.post("*/custom/cancel-account/init", async (req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/cancel-account/init", async ({ request }) => + HttpResponse.json(successResponse) ), ); @@ -339,8 +339,8 @@ test.serial("Handle error while init cancel account", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.post("*/user-api/cancel-account/init", async (req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/cancel-account/init", async ({ request }) => + HttpResponse.text(null, { status: 400 }) ), ); @@ -359,10 +359,10 @@ test.serial("Cancel account", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.post("*/user-api/cancel-account", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/cancel-account", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -383,10 +383,10 @@ test.serial("Cancel account with custom request options", async (t) => { }); server.use( - rest.post("*/user-api/cancel-account", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/cancel-account", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -405,8 +405,8 @@ test.serial("Cancel account with custom endpoint", async (t) => { }); server.use( - rest.post("*/custom/cancel-account", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/cancel-account", async () => + HttpResponse.json(successResponse) ), ); @@ -419,8 +419,8 @@ test.serial("Handle error while cancel account", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.post("*/user-api/cancel-account", async (_req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/cancel-account", async () => + HttpResponse.text(null, { status: 400 }) ), ); @@ -440,12 +440,12 @@ test.serial("Init set password", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/user-api/set-password/init", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/set-password/init", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - t.deepEqual(await req.json(), { email }); + t.deepEqual(await request.json(), { email }); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -467,10 +467,10 @@ test.serial("Init set password with custom request options", async (t) => { }); server.use( - rest.post("*/user-api/set-password/init", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/user-api/set-password/init", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -490,8 +490,8 @@ test.serial("Init set password with custom endpoint", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/custom/set-password/init", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/set-password/init", async () => + HttpResponse.json(successResponse) ), ); @@ -508,8 +508,8 @@ test.serial("Init set password - deprecated version", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/custom/set-password/init", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/set-password/init", async () => + HttpResponse.json(successResponse) ), ); @@ -523,8 +523,8 @@ test.serial("Handle error while init set password", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/user-api/set-password/init", async (_req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/set-password/init", async () => + HttpResponse.text(null, { status: 400 }) ), ); @@ -544,12 +544,12 @@ test.serial("Set password", async (t) => { const newPassword = "new-password"; server.use( - rest.post("*/user-api/set-password", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/set-password", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - t.deepEqual(await req.json(), { newPassword }); + t.deepEqual(await request.json(), { newPassword }); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -571,10 +571,10 @@ test.serial("Set password with custom request options", async (t) => { }); server.use( - rest.post("*/user-api/set-password", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/user-api/set-password", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -594,8 +594,8 @@ test.serial("Set password with custom endpoint", async (t) => { const newPassword = "new-password"; server.use( - rest.post("*/custom/set-password", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/set-password", async () => + HttpResponse.json(successResponse) ), ); @@ -612,8 +612,8 @@ test.serial("Set password - deprecated version", async (t) => { const newPassword = "new-password"; server.use( - rest.post("*/custom/set-password", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/set-password", async () => + HttpResponse.json(successResponse) ), ); @@ -627,8 +627,8 @@ test.serial("Handle error while set password", async (t) => { const newPassword = "new-password"; server.use( - rest.post("*/user-api/set-password", async (_req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/set-password", async () => + HttpResponse.text(null, { status: 400 }) ), ); @@ -648,12 +648,12 @@ test.serial("Init unset password", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/user-api/unset-password/init", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/unset-password/init", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - t.deepEqual(await req.json(), { email }); + t.deepEqual(await request.json(), { email }); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -675,10 +675,10 @@ test.serial("Init unset password with custom request options", async (t) => { }); server.use( - rest.post("*/user-api/unset-password/init", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/user-api/unset-password/init", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -698,8 +698,8 @@ test.serial("Init unset password with custom endpoint", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/custom/unset-password/init", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/unset-password/init", async () => + HttpResponse.json(successResponse) ), ); @@ -713,8 +713,8 @@ test.serial("Handle error while init unset password", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/user-api/unset-password/init", async (_req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/unset-password/init", async () => + HttpResponse.text(null, { status: 400 }) ), ); @@ -733,12 +733,12 @@ test.serial("Unset password with verification", async (t) => { const drupalkit = createDrupalkit(); server.use( - rest.post("*/user-api/unset-password", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/unset-password", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - t.deepEqual(await req.json(), {}); + t.deepEqual(await request.json(), {}); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -756,12 +756,12 @@ test.serial("Unset password with currentPassword", async (t) => { const currentPassword = "abc123"; server.use( - rest.post("*/user-api/unset-password", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/unset-password", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - t.deepEqual(await req.json(), { currentPassword }); + t.deepEqual(await request.json(), { currentPassword }); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -782,10 +782,10 @@ test.serial("Unset password with custom request options", async (t) => { }); server.use( - rest.post("*/user-api/unset-password", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/user-api/unset-password", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -804,8 +804,8 @@ test.serial("Unset password with custom endpoint", async (t) => { }); server.use( - rest.post("*/custom/unset-password", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/unset-password", async () => + HttpResponse.json(successResponse) ), ); @@ -819,8 +819,8 @@ test.serial("Handle error while unset password", async (t) => { const newPassword = "new-password"; server.use( - rest.post("*/user-api/unset-password", async (_req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/unset-password", async () => + HttpResponse.text(null, { status: 400 }) ), ); @@ -840,12 +840,12 @@ test.serial("Passwordless login", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/user-api/passwordless-login", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/passwordless-login", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - t.deepEqual(await req.json(), { email }); + t.deepEqual(await request.json(), { email }); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -867,10 +867,10 @@ test.serial("Passwordless login with custom request options", async (t) => { }); server.use( - rest.post("*/user-api/passwordless-login", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/user-api/passwordless-login", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -890,8 +890,8 @@ test.serial("Passwordless login with custom endpoint", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/custom/passwordless-login", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/passwordless-login", async () => + HttpResponse.json(successResponse) ), ); @@ -905,8 +905,8 @@ test.serial("Handle error while passwordless login", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/user-api/passwordless-login", async (_req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/passwordless-login", async () => + HttpResponse.text(null, { status: 400 }) ), ); @@ -926,12 +926,12 @@ test.serial("Init set email", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/user-api/set-email/init", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/set-email/init", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - t.deepEqual(await req.json(), { email }); + t.deepEqual(await request.json(), { email }); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -953,10 +953,10 @@ test.serial("Init set email with custom request options", async (t) => { }); server.use( - rest.post("*/user-api/set-email/init", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/user-api/set-email/init", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -976,8 +976,8 @@ test.serial("Init set email with custom endpoint", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/custom/set-email/init", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/set-email/init", async () => + HttpResponse.json(successResponse) ), ); @@ -994,8 +994,8 @@ test.serial("Init set email - deprecated version", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/custom/set-email/init", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/set-email/init", async () => + HttpResponse.json(successResponse) ), ); @@ -1009,8 +1009,8 @@ test.serial("Handle error while init set email", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/user-api/set-email/init", async (_req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/set-email/init", async () => + HttpResponse.text(null, { status: 400 }) ), ); @@ -1030,12 +1030,12 @@ test.serial("Set email", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/user-api/set-email", async (req, res, ctx) => { - t.is(req.headers.get("content-type"), "application/json"); + http.post("*/user-api/set-email", async ({ request }) => { + t.is(request.headers.get("content-type"), "application/json"); - t.deepEqual(await req.json(), { email }); + t.deepEqual(await request.json(), { email }); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -1057,10 +1057,10 @@ test.serial("Set email with custom request options", async (t) => { }); server.use( - rest.post("*/user-api/set-email", async (req, res, ctx) => { - t.is(req.headers.get("X-Custom"), "1"); + http.post("*/user-api/set-email", async ({ request }) => { + t.is(request.headers.get("X-Custom"), "1"); - return res(ctx.json(successResponse)); + return HttpResponse.json(successResponse) }), ); @@ -1080,8 +1080,8 @@ test.serial("Set email with custom endpoint", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/custom/set-email", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/set-email", async () => + HttpResponse.json(successResponse) ), ); @@ -1098,8 +1098,8 @@ test.serial("Set email - deprecated version", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/custom/set-email", async (_req, res, ctx) => - res(ctx.json(successResponse)), + http.post("*/custom/set-email", async () => + HttpResponse.json(successResponse) ), ); @@ -1113,8 +1113,8 @@ test.serial("Handle error while set email", async (t) => { const email = "JzWZg@example.com"; server.use( - rest.post("*/user-api/set-email", async (_req, res, ctx) => - res(ctx.status(400)), + http.post("*/user-api/set-email", async () => + HttpResponse.text(null, { status: 400 }) ), ); diff --git a/packages/verification/.eslintrc.json b/packages/verification/.eslintrc.json index f3bb65f..e2cbf09 100644 --- a/packages/verification/.eslintrc.json +++ b/packages/verification/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["@drupal-kit/eslint-config"] + "extends": ["@drupal-kit/eslint-config"], + "parserOptions": { + "project": "./tsconfig.json" + } } diff --git a/packages/verification/package.json b/packages/verification/package.json index ab87a8e..90c61cd 100644 --- a/packages/verification/package.json +++ b/packages/verification/package.json @@ -12,14 +12,14 @@ "@drupal-kit/types": "workspace:0.10.0", "@rollup/plugin-typescript": "^11.1.1", "@swc/core": "^1.3.58", - "ava": "^5.2.0", - "esbuild": "^0.17.19", - "msw": "^1.2.1", - "rollup": "^3.22.0", - "rollup-plugin-dts": "^5.3.0", - "rollup-plugin-esbuild": "^5.0.0", + "ava": "^6.0.1", + "esbuild": "^0.19.11", + "msw": "^2.1.2", + "rollup": "^4.9.5", + "rollup-plugin-dts": "^6.1.0", + "rollup-plugin-esbuild": "^6.1.0", "ts-node": "^10.9.1", - "typescript": "5.0.4" + "typescript": "5.3.3" }, "scripts": { "build": "rollup -c", diff --git a/packages/verification/tests/DrupalkitVerification.test.ts b/packages/verification/tests/DrupalkitVerification.test.ts index 9760ffa..2eafeed 100644 --- a/packages/verification/tests/DrupalkitVerification.test.ts +++ b/packages/verification/tests/DrupalkitVerification.test.ts @@ -1,5 +1,5 @@ import test from "ava"; -import { rest } from "msw"; +import { HttpResponse, http } from "msw"; import { setupServer } from "msw/node"; import { Drupalkit, DrupalkitOptions } from "@drupal-kit/core"; @@ -53,15 +53,15 @@ test.serial("Add Hash verification to a request once", async (t) => { const hash = "0123456789abcdef"; server.use( - rest.get("*/", async (req, res, ctx) => { + http.get("*/", async ({ request }) => { if (first) { - t.is(req.headers.get("x-verification-hash"), hash); + t.is(request.headers.get("x-verification-hash"), hash); first = false; } else { - t.not(req.headers.get("x-verification-hash"), hash); + t.not(request.headers.get("x-verification-hash"), hash); } - return res(ctx.status(200)); + return HttpResponse.text() }), ); @@ -89,15 +89,15 @@ test.serial("Add Magic code verification to a request once", async (t) => { const code = "5ZL-KD2"; server.use( - rest.get("*/", async (req, res, ctx) => { + http.get("*/", async ({ request }) => { if (first) { - t.is(req.headers.get("x-verification-magic-code"), code); + t.is(request.headers.get("x-verification-magic-code"), code); first = false; } else { - t.not(req.headers.get("x-verification-magic-code"), code); + t.not(request.headers.get("x-verification-magic-code"), code); } - return res(ctx.status(200)); + return HttpResponse.text() }), ); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f743883..034982d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -14,17 +14,17 @@ importers: .: devDependencies: '@changesets/changelog-github': - specifier: ^0.4.8 - version: 0.4.8 + specifier: ^0.5.0 + version: 0.5.0 '@changesets/cli': - specifier: ^2.26.1 - version: 2.26.1 + specifier: ^2.27.1 + version: 2.27.1 '@commitlint/cli': - specifier: ^17.6.3 - version: 17.6.3 + specifier: ^18.4.4 + version: 18.4.4(@types/node@20.11.5)(typescript@5.3.3) '@commitlint/config-conventional': - specifier: ^17.6.3 - version: 17.6.3 + specifier: ^18.4.4 + version: 18.4.4 '@drupal-kit/config-prettier': specifier: workspace:* version: link:packages/config/prettier @@ -32,53 +32,53 @@ importers: specifier: ^8.0.3 version: 8.0.3 syncpack: - specifier: ^9.8.6 - version: 9.8.6 + specifier: ^12.3.0 + version: 12.3.0(typescript@5.3.3) turbo: - specifier: ^1.9.6 - version: 1.9.6 + specifier: ^1.11.3 + version: 1.11.3 packages/config/eslint: devDependencies: '@typescript-eslint/eslint-plugin': - specifier: ^5.59.6 - version: 5.59.6(@typescript-eslint/parser@5.59.6)(eslint@8.40.0)(typescript@5.0.4) + specifier: ^6.19.0 + version: 6.19.0(@typescript-eslint/parser@6.19.0)(eslint@8.56.0)(typescript@5.3.3) '@typescript-eslint/parser': - specifier: ^5.59.6 - version: 5.59.6(eslint@8.40.0)(typescript@5.0.4) + specifier: ^6.19.0 + version: 6.19.0(eslint@8.56.0)(typescript@5.3.3) '@wunderwerk/eslint-config': - specifier: ^1.0.3 - version: 1.0.3(@typescript-eslint/parser@5.59.6)(eslint-plugin-import@2.27.5)(eslint-plugin-jsdoc@44.2.4)(eslint@8.40.0)(typescript@5.0.4) + specifier: ^1.0.7 + version: 1.0.7(@typescript-eslint/parser@6.19.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsdoc@48.0.2)(eslint@8.56.0)(typescript@5.3.3) eslint: - specifier: ^8.40.0 - version: 8.40.0 + specifier: ^8.56.0 + version: 8.56.0 eslint-plugin-import: - specifier: ^2.26.0 - version: 2.27.5(@typescript-eslint/parser@5.59.6)(eslint@8.40.0) + specifier: ^2.29.1 + version: 2.29.1(@typescript-eslint/parser@6.19.0)(eslint@8.56.0) eslint-plugin-jsdoc: - specifier: ^44.2.4 - version: 44.2.4(eslint@8.40.0) + specifier: ^48.0.2 + version: 48.0.2(eslint@8.56.0) typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages/config/prettier: devDependencies: '@ianvs/prettier-plugin-sort-imports': - specifier: ^3.7.2 - version: 3.7.2(prettier@2.8.8) + specifier: ^4.1.1 + version: 4.1.1(prettier@3.2.4) prettier: - specifier: ^2.8.8 - version: 2.8.8 + specifier: ^3.2.4 + version: 3.2.4 typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages/config/typescript: devDependencies: typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages/consumers: dependencies: @@ -97,40 +97,40 @@ importers: version: link:../types '@rollup/plugin-typescript': specifier: ^11.1.1 - version: 11.1.1(rollup@3.22.0)(typescript@5.0.4) + version: 11.1.6(rollup@4.9.5)(typescript@5.3.3) '@swc/core': specifier: ^1.3.58 - version: 1.3.58 + version: 1.3.104 ava: - specifier: ^5.2.0 - version: 5.2.0 + specifier: ^6.0.1 + version: 6.0.1 esbuild: - specifier: ^0.17.19 - version: 0.17.19 + specifier: ^0.19.11 + version: 0.19.11 msw: - specifier: ^1.2.1 - version: 1.2.1(typescript@5.0.4) + specifier: ^2.1.2 + version: 2.1.2(typescript@5.3.3) rollup: - specifier: ^3.22.0 - version: 3.22.0 + specifier: ^4.9.5 + version: 4.9.5 rollup-plugin-dts: - specifier: ^5.3.0 - version: 5.3.0(rollup@3.22.0)(typescript@5.0.4) + specifier: ^6.1.0 + version: 6.1.0(rollup@4.9.5)(typescript@5.3.3) rollup-plugin-esbuild: - specifier: ^5.0.0 - version: 5.0.0(esbuild@0.17.19)(rollup@3.22.0) + specifier: ^6.1.0 + version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: specifier: ^10.9.1 - version: 10.9.1(@swc/core@1.3.58)(@types/node@20.1.7)(typescript@5.0.4) + version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages/core: dependencies: '@wunderwerk/ts-functional': - specifier: 1.0.0-beta.2 - version: 1.0.0-beta.2 + specifier: 1.0.0-beta.3 + version: 1.0.0-beta.3 before-after-hook: specifier: ^3.0.2 version: 3.0.2 @@ -138,8 +138,8 @@ importers: specifier: ^5.0.0 version: 5.0.0(patch_hash=lray4voikhoiy5hx7wwtwhzd7e) qs: - specifier: ~6.9 - version: 6.9.7 + specifier: ~6.11.2 + version: 6.11.2 devDependencies: '@drupal-kit/config-typescript': specifier: workspace:0.10.0 @@ -152,40 +152,40 @@ importers: version: link:../types '@rollup/plugin-typescript': specifier: ^11.1.1 - version: 11.1.1(rollup@3.22.0)(typescript@5.0.4) + version: 11.1.6(rollup@4.9.5)(typescript@5.3.3) '@swc/core': specifier: ^1.3.58 - version: 1.3.58 + version: 1.3.104 '@types/qs': specifier: ~6.9 - version: 6.9.7 + version: 6.9.11 '@wunderwerk/node-pkg-version-export': specifier: 1.0.0-beta.1 version: 1.0.0-beta.1 ava: - specifier: ^5.2.0 - version: 5.2.0 + specifier: ^6.0.1 + version: 6.0.1 esbuild: - specifier: ^0.17.19 - version: 0.17.19 + specifier: ^0.19.11 + version: 0.19.11 msw: - specifier: ^1.2.1 - version: 1.2.1(typescript@5.0.4) + specifier: ^2.1.2 + version: 2.1.2(typescript@5.3.3) rollup: - specifier: ^3.22.0 - version: 3.22.0 + specifier: ^4.9.5 + version: 4.9.5 rollup-plugin-dts: - specifier: ^5.3.0 - version: 5.3.0(rollup@3.22.0)(typescript@5.0.4) + specifier: ^6.1.0 + version: 6.1.0(rollup@4.9.5)(typescript@5.3.3) rollup-plugin-esbuild: - specifier: ^5.0.0 - version: 5.0.0(esbuild@0.17.19)(rollup@3.22.0) + specifier: ^6.1.0 + version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: - specifier: ^10.9.1 - version: 10.9.1(@swc/core@1.3.58)(@types/node@20.1.7)(typescript@5.0.4) + specifier: ^10.9.2 + version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages/jsonapi: dependencies: @@ -193,14 +193,14 @@ importers: specifier: workspace:0.10.0 version: link:../core '@wunderwerk/ts-functional': - specifier: 1.0.0-beta.2 - version: 1.0.0-beta.2 + specifier: 1.0.0-beta.3 + version: 1.0.0-beta.3 drupal-jsonapi-params: specifier: ^2.2.0 - version: 2.2.0 + version: 2.3.1 jsona: specifier: ^1.11.0 - version: 1.11.0 + version: 1.12.1 ts-json-api: specifier: ^1.2.0 version: 1.2.0 @@ -216,34 +216,34 @@ importers: version: link:../types '@rollup/plugin-typescript': specifier: ^11.1.1 - version: 11.1.1(rollup@3.22.0)(typescript@5.0.4) + version: 11.1.6(rollup@4.9.5)(typescript@5.3.3) '@swc/core': specifier: ^1.3.58 - version: 1.3.58 + version: 1.3.104 ava: - specifier: ^5.2.0 - version: 5.2.0 + specifier: ^6.0.1 + version: 6.0.1 esbuild: - specifier: ^0.17.19 - version: 0.17.19 + specifier: ^0.19.11 + version: 0.19.11 msw: - specifier: ^1.2.1 - version: 1.2.1(typescript@5.0.4) + specifier: ^2.1.2 + version: 2.1.2(typescript@5.3.3) rollup: - specifier: ^3.22.0 - version: 3.22.0 + specifier: ^4.9.5 + version: 4.9.5 rollup-plugin-dts: - specifier: ^5.3.0 - version: 5.3.0(rollup@3.22.0)(typescript@5.0.4) + specifier: ^6.1.0 + version: 6.1.0(rollup@4.9.5)(typescript@5.3.3) rollup-plugin-esbuild: - specifier: ^5.0.0 - version: 5.0.0(esbuild@0.17.19)(rollup@3.22.0) + specifier: ^6.1.0 + version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: specifier: ^10.9.1 - version: 10.9.1(@swc/core@1.3.58)(@types/node@20.1.7)(typescript@5.0.4) + version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages/simple-oauth: dependencies: @@ -251,8 +251,8 @@ importers: specifier: workspace:0.10.0 version: link:../core '@wunderwerk/ts-functional': - specifier: 1.0.0-beta.2 - version: 1.0.0-beta.2 + specifier: 1.0.0-beta.3 + version: 1.0.0-beta.3 devDependencies: '@drupal-kit/config-typescript': specifier: workspace:0.10.0 @@ -265,34 +265,34 @@ importers: version: link:../types '@rollup/plugin-typescript': specifier: ^11.1.1 - version: 11.1.1(rollup@3.22.0)(typescript@5.0.4) + version: 11.1.6(rollup@4.9.5)(typescript@5.3.3) '@swc/core': specifier: ^1.3.58 - version: 1.3.58 + version: 1.3.104 ava: - specifier: ^5.2.0 - version: 5.2.0 + specifier: ^6.0.1 + version: 6.0.1 esbuild: - specifier: ^0.17.19 - version: 0.17.19 + specifier: ^0.19.11 + version: 0.19.11 msw: - specifier: ^1.2.1 - version: 1.2.1(typescript@5.0.4) + specifier: ^2.1.2 + version: 2.1.2(typescript@5.3.3) rollup: - specifier: ^3.22.0 - version: 3.22.0 + specifier: ^4.9.5 + version: 4.9.5 rollup-plugin-dts: - specifier: ^5.3.0 - version: 5.3.0(rollup@3.22.0)(typescript@5.0.4) + specifier: ^6.1.0 + version: 6.1.0(rollup@4.9.5)(typescript@5.3.3) rollup-plugin-esbuild: - specifier: ^5.0.0 - version: 5.0.0(esbuild@0.17.19)(rollup@3.22.0) + specifier: ^6.1.0 + version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: specifier: ^10.9.1 - version: 10.9.1(@swc/core@1.3.58)(@types/node@20.1.7)(typescript@5.0.4) + version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages/simple-oauth-auth-code: dependencies: @@ -300,8 +300,8 @@ importers: specifier: workspace:0.10.0 version: link:../core '@wunderwerk/ts-functional': - specifier: 1.0.0-beta.2 - version: 1.0.0-beta.2 + specifier: 1.0.0-beta.3 + version: 1.0.0-beta.3 devDependencies: '@drupal-kit/config-typescript': specifier: workspace:0.10.0 @@ -314,34 +314,34 @@ importers: version: link:../types '@rollup/plugin-typescript': specifier: ^11.1.1 - version: 11.1.1(rollup@3.22.0)(typescript@5.0.4) + version: 11.1.6(rollup@4.9.5)(typescript@5.3.3) '@swc/core': specifier: ^1.3.58 - version: 1.3.58 + version: 1.3.104 ava: - specifier: ^5.2.0 - version: 5.2.0 + specifier: ^6.0.1 + version: 6.0.1 esbuild: - specifier: ^0.17.19 - version: 0.17.19 + specifier: ^0.19.11 + version: 0.19.11 msw: - specifier: ^1.2.1 - version: 1.2.1(typescript@5.0.4) + specifier: ^2.1.2 + version: 2.1.2(typescript@5.3.3) rollup: - specifier: ^3.22.0 - version: 3.22.0 + specifier: ^4.9.5 + version: 4.9.5 rollup-plugin-dts: - specifier: ^5.3.0 - version: 5.3.0(rollup@3.22.0)(typescript@5.0.4) + specifier: ^6.1.0 + version: 6.1.0(rollup@4.9.5)(typescript@5.3.3) rollup-plugin-esbuild: - specifier: ^5.0.0 - version: 5.0.0(esbuild@0.17.19)(rollup@3.22.0) + specifier: ^6.1.0 + version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: specifier: ^10.9.1 - version: 10.9.1(@swc/core@1.3.58)(@types/node@20.1.7)(typescript@5.0.4) + version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages/types: devDependencies: @@ -352,8 +352,8 @@ importers: specifier: workspace:0.10.0 version: link:../config/eslint typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages/user-api: dependencies: @@ -361,8 +361,8 @@ importers: specifier: workspace:0.10.0 version: link:../core '@wunderwerk/ts-functional': - specifier: 1.0.0-beta.2 - version: 1.0.0-beta.2 + specifier: 1.0.0-beta.3 + version: 1.0.0-beta.3 util-deprecate: specifier: ^1.0.2 version: 1.0.2 @@ -378,37 +378,37 @@ importers: version: link:../types '@rollup/plugin-typescript': specifier: ^11.1.1 - version: 11.1.1(rollup@3.22.0)(typescript@5.0.4) + version: 11.1.6(rollup@4.9.5)(typescript@5.3.3) '@swc/core': specifier: ^1.3.58 - version: 1.3.58 + version: 1.3.104 '@types/util-deprecate': specifier: ^1.0.3 version: 1.0.3 ava: - specifier: ^5.2.0 - version: 5.2.0 + specifier: ^6.0.1 + version: 6.0.1 esbuild: - specifier: ^0.17.19 - version: 0.17.19 + specifier: ^0.19.11 + version: 0.19.11 msw: - specifier: ^1.2.1 - version: 1.2.1(typescript@5.0.4) + specifier: ^2.1.2 + version: 2.1.2(typescript@5.3.3) rollup: - specifier: ^3.22.0 - version: 3.22.0 + specifier: ^4.9.5 + version: 4.9.5 rollup-plugin-dts: - specifier: ^5.3.0 - version: 5.3.0(rollup@3.22.0)(typescript@5.0.4) + specifier: ^6.1.0 + version: 6.1.0(rollup@4.9.5)(typescript@5.3.3) rollup-plugin-esbuild: - specifier: ^5.0.0 - version: 5.0.0(esbuild@0.17.19)(rollup@3.22.0) + specifier: ^6.1.0 + version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: - specifier: ^10.9.1 - version: 10.9.1(@swc/core@1.3.58)(@types/node@20.1.7)(typescript@5.0.4) + specifier: ^10.9.2 + version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages/verification: dependencies: @@ -427,256 +427,274 @@ importers: version: link:../types '@rollup/plugin-typescript': specifier: ^11.1.1 - version: 11.1.1(rollup@3.22.0)(typescript@5.0.4) + version: 11.1.6(rollup@4.9.5)(typescript@5.3.3) '@swc/core': specifier: ^1.3.58 - version: 1.3.58 + version: 1.3.104 ava: - specifier: ^5.2.0 - version: 5.2.0 + specifier: ^6.0.1 + version: 6.0.1 esbuild: - specifier: ^0.17.19 - version: 0.17.19 + specifier: ^0.19.11 + version: 0.19.11 msw: - specifier: ^1.2.1 - version: 1.2.1(typescript@5.0.4) + specifier: ^2.1.2 + version: 2.1.2(typescript@5.3.3) rollup: - specifier: ^3.22.0 - version: 3.22.0 + specifier: ^4.9.5 + version: 4.9.5 rollup-plugin-dts: - specifier: ^5.3.0 - version: 5.3.0(rollup@3.22.0)(typescript@5.0.4) + specifier: ^6.1.0 + version: 6.1.0(rollup@4.9.5)(typescript@5.3.3) rollup-plugin-esbuild: - specifier: ^5.0.0 - version: 5.0.0(esbuild@0.17.19)(rollup@3.22.0) + specifier: ^6.1.0 + version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: specifier: ^10.9.1 - version: 10.9.1(@swc/core@1.3.58)(@types/node@20.1.7)(typescript@5.0.4) + version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: - specifier: 5.0.4 - version: 5.0.4 + specifier: 5.3.3 + version: 5.3.3 packages: + /@aashutoshrathi/word-wrap@1.2.6: + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + dev: true + /@ampproject/remapping@2.2.1: resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.21 dev: true - /@babel/code-frame@7.21.4: - resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} + /@babel/code-frame@7.23.5: + resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} engines: {node: '>=6.9.0'} - requiresBuild: true dependencies: - '@babel/highlight': 7.18.6 + '@babel/highlight': 7.23.4 + chalk: 2.4.2 dev: true - /@babel/compat-data@7.21.4: - resolution: {integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==} + /@babel/compat-data@7.23.5: + resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} engines: {node: '>=6.9.0'} dev: true - /@babel/core@7.21.4: - resolution: {integrity: sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==} + /@babel/core@7.23.7: + resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.21.4 - '@babel/generator': 7.21.4 - '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4) - '@babel/helper-module-transforms': 7.21.2 - '@babel/helpers': 7.21.0 - '@babel/parser': 7.21.4 - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 - '@babel/types': 7.21.4 - convert-source-map: 1.9.0 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helpers': 7.23.8 + '@babel/parser': 7.23.6 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 + convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/generator@7.21.4: - resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==} + /@babel/generator@7.23.6: + resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.23.6 '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.21 jsesc: 2.5.2 dev: true - /@babel/helper-compilation-targets@7.21.4(@babel/core@7.21.4): - resolution: {integrity: sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==} + /@babel/helper-compilation-targets@7.23.6: + resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.21.4 - '@babel/core': 7.21.4 - '@babel/helper-validator-option': 7.21.0 - browserslist: 4.21.5 + '@babel/compat-data': 7.23.5 + '@babel/helper-validator-option': 7.23.5 + browserslist: 4.22.2 lru-cache: 5.1.1 - semver: 6.3.0 + semver: 6.3.1 dev: true - /@babel/helper-environment-visitor@7.18.9: - resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + /@babel/helper-environment-visitor@7.22.20: + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-function-name@7.21.0: - resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} + /@babel/helper-function-name@7.23.0: + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.20.7 - '@babel/types': 7.21.4 + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 dev: true - /@babel/helper-hoist-variables@7.18.6: - resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} + /@babel/helper-hoist-variables@7.22.5: + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.23.6 dev: true - /@babel/helper-module-imports@7.21.4: - resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} + /@babel/helper-module-imports@7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.23.6 dev: true - /@babel/helper-module-transforms@7.21.2: - resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==} + /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-module-imports': 7.21.4 - '@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.20.7 - '@babel/traverse': 7.21.4 - '@babel/types': 7.21.4 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-simple-access@7.20.2: - resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} + /@babel/helper-simple-access@7.22.5: + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.23.6 dev: true - /@babel/helper-split-export-declaration@7.18.6: - resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} + /@babel/helper-split-export-declaration@7.22.6: + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.23.6 dev: true - /@babel/helper-string-parser@7.19.4: - resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} + /@babel/helper-string-parser@7.23.4: + resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-identifier@7.19.1: - resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-option@7.21.0: - resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} + /@babel/helper-validator-option@7.23.5: + resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} engines: {node: '>=6.9.0'} dev: true - /@babel/helpers@7.21.0: - resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} + /@babel/helpers@7.23.8: + resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 - '@babel/types': 7.21.4 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 transitivePeerDependencies: - supports-color dev: true - /@babel/highlight@7.18.6: - resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + /@babel/highlight@7.23.4: + resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.19.1 + '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/parser@7.21.4: - resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==} + /@babel/parser@7.23.6: + resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.21.4 + '@babel/types': 7.23.6 dev: true - /@babel/runtime@7.21.0: - resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} + /@babel/runtime@7.23.8: + resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==} engines: {node: '>=6.9.0'} dependencies: - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.14.1 dev: true - /@babel/template@7.20.7: - resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} + /@babel/template@7.22.15: + resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.21.4 - '@babel/parser': 7.21.4 - '@babel/types': 7.21.4 + '@babel/code-frame': 7.23.5 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 dev: true - /@babel/traverse@7.21.4: - resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==} + /@babel/traverse@7.23.7: + resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.21.4 - '@babel/generator': 7.21.4 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.21.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.21.4 - '@babel/types': 7.21.4 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types@7.21.4: - resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==} + /@babel/types@7.23.6: + resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.19.4 - '@babel/helper-validator-identifier': 7.19.1 + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 dev: true - /@changesets/apply-release-plan@6.1.3: - resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==} + /@bundled-es-modules/cookie@2.0.0: + resolution: {integrity: sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==} + dependencies: + cookie: 0.5.0 + dev: true + + /@bundled-es-modules/js-levenshtein@2.0.1: + resolution: {integrity: sha512-DERMS3yfbAljKsQc0U2wcqGKUWpdFjwqWuoMugEJlqBnKO180/n+4SR/J8MRDt1AN48X1ovgoD9KrdVXcaa3Rg==} + dependencies: + js-levenshtein: 1.1.6 + dev: true + + /@bundled-es-modules/statuses@1.0.1: + resolution: {integrity: sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==} + dependencies: + statuses: 2.0.1 + dev: true + + /@changesets/apply-release-plan@7.0.0: + resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==} dependencies: - '@babel/runtime': 7.21.0 - '@changesets/config': 2.3.0 - '@changesets/get-version-range-type': 0.3.2 - '@changesets/git': 2.0.0 - '@changesets/types': 5.2.1 + '@babel/runtime': 7.23.8 + '@changesets/config': 3.0.0 + '@changesets/get-version-range-type': 0.4.0 + '@changesets/git': 3.0.0 + '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 @@ -684,171 +702,170 @@ packages: outdent: 0.5.0 prettier: 2.8.8 resolve-from: 5.0.0 - semver: 5.7.1 + semver: 7.5.4 dev: true - /@changesets/assemble-release-plan@5.2.3: - resolution: {integrity: sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g==} + /@changesets/assemble-release-plan@6.0.0: + resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==} dependencies: - '@babel/runtime': 7.21.0 - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.5 - '@changesets/types': 5.2.1 + '@babel/runtime': 7.23.8 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.0.0 + '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - semver: 5.7.1 + semver: 7.5.4 dev: true - /@changesets/changelog-git@0.1.14: - resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==} + /@changesets/changelog-git@0.2.0: + resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} dependencies: - '@changesets/types': 5.2.1 + '@changesets/types': 6.0.0 dev: true - /@changesets/changelog-github@0.4.8: - resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} + /@changesets/changelog-github@0.5.0: + resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==} dependencies: - '@changesets/get-github-info': 0.5.2 - '@changesets/types': 5.2.1 + '@changesets/get-github-info': 0.6.0 + '@changesets/types': 6.0.0 dotenv: 8.6.0 transitivePeerDependencies: - encoding dev: true - /@changesets/cli@2.26.1: - resolution: {integrity: sha512-XnTa+b51vt057fyAudvDKGB0Sh72xutQZNAdXkCqPBKO2zvs2yYZx5hFZj1u9cbtpwM6Sxtcr02/FQJfZOzemQ==} + /@changesets/cli@2.27.1: + resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==} hasBin: true dependencies: - '@babel/runtime': 7.21.0 - '@changesets/apply-release-plan': 6.1.3 - '@changesets/assemble-release-plan': 5.2.3 - '@changesets/changelog-git': 0.1.14 - '@changesets/config': 2.3.0 - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.5 - '@changesets/get-release-plan': 3.0.16 - '@changesets/git': 2.0.0 - '@changesets/logger': 0.0.5 - '@changesets/pre': 1.0.14 - '@changesets/read': 0.5.9 - '@changesets/types': 5.2.1 - '@changesets/write': 0.2.3 + '@babel/runtime': 7.23.8 + '@changesets/apply-release-plan': 7.0.0 + '@changesets/assemble-release-plan': 6.0.0 + '@changesets/changelog-git': 0.2.0 + '@changesets/config': 3.0.0 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.0.0 + '@changesets/get-release-plan': 4.0.0 + '@changesets/git': 3.0.0 + '@changesets/logger': 0.1.0 + '@changesets/pre': 2.0.0 + '@changesets/read': 0.6.0 + '@changesets/types': 6.0.0 + '@changesets/write': 0.3.0 '@manypkg/get-packages': 1.1.3 - '@types/is-ci': 3.0.0 - '@types/semver': 6.2.3 + '@types/semver': 7.5.6 ansi-colors: 4.1.3 chalk: 2.4.2 - enquirer: 2.3.6 + ci-info: 3.9.0 + enquirer: 2.4.1 external-editor: 3.1.0 fs-extra: 7.0.1 human-id: 1.0.2 - is-ci: 3.0.1 meow: 6.1.1 outdent: 0.5.0 p-limit: 2.3.0 - preferred-pm: 3.0.3 + preferred-pm: 3.1.2 resolve-from: 5.0.0 - semver: 5.7.1 + semver: 7.5.4 spawndamnit: 2.0.0 term-size: 2.2.1 - tty-table: 4.2.1 + tty-table: 4.2.3 dev: true - /@changesets/config@2.3.0: - resolution: {integrity: sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ==} + /@changesets/config@3.0.0: + resolution: {integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==} dependencies: - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.5 - '@changesets/logger': 0.0.5 - '@changesets/types': 5.2.1 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.0.0 + '@changesets/logger': 0.1.0 + '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.5 dev: true - /@changesets/errors@0.1.4: - resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==} + /@changesets/errors@0.2.0: + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} dependencies: extendable-error: 0.1.7 dev: true - /@changesets/get-dependents-graph@1.3.5: - resolution: {integrity: sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA==} + /@changesets/get-dependents-graph@2.0.0: + resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==} dependencies: - '@changesets/types': 5.2.1 + '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 - semver: 5.7.1 + semver: 7.5.4 dev: true - /@changesets/get-github-info@0.5.2: - resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} + /@changesets/get-github-info@0.6.0: + resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} dependencies: dataloader: 1.4.0 - node-fetch: 2.6.7 + node-fetch: 2.7.0 transitivePeerDependencies: - encoding dev: true - /@changesets/get-release-plan@3.0.16: - resolution: {integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==} + /@changesets/get-release-plan@4.0.0: + resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==} dependencies: - '@babel/runtime': 7.21.0 - '@changesets/assemble-release-plan': 5.2.3 - '@changesets/config': 2.3.0 - '@changesets/pre': 1.0.14 - '@changesets/read': 0.5.9 - '@changesets/types': 5.2.1 + '@babel/runtime': 7.23.8 + '@changesets/assemble-release-plan': 6.0.0 + '@changesets/config': 3.0.0 + '@changesets/pre': 2.0.0 + '@changesets/read': 0.6.0 + '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 dev: true - /@changesets/get-version-range-type@0.3.2: - resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==} + /@changesets/get-version-range-type@0.4.0: + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} dev: true - /@changesets/git@2.0.0: - resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==} + /@changesets/git@3.0.0: + resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} dependencies: - '@babel/runtime': 7.21.0 - '@changesets/errors': 0.1.4 - '@changesets/types': 5.2.1 + '@babel/runtime': 7.23.8 + '@changesets/errors': 0.2.0 + '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.5 spawndamnit: 2.0.0 dev: true - /@changesets/logger@0.0.5: - resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==} + /@changesets/logger@0.1.0: + resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} dependencies: chalk: 2.4.2 dev: true - /@changesets/parse@0.3.16: - resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==} + /@changesets/parse@0.4.0: + resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} dependencies: - '@changesets/types': 5.2.1 + '@changesets/types': 6.0.0 js-yaml: 3.14.1 dev: true - /@changesets/pre@1.0.14: - resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==} + /@changesets/pre@2.0.0: + resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} dependencies: - '@babel/runtime': 7.21.0 - '@changesets/errors': 0.1.4 - '@changesets/types': 5.2.1 + '@babel/runtime': 7.23.8 + '@changesets/errors': 0.2.0 + '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 dev: true - /@changesets/read@0.5.9: - resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==} + /@changesets/read@0.6.0: + resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} dependencies: - '@babel/runtime': 7.21.0 - '@changesets/git': 2.0.0 - '@changesets/logger': 0.0.5 - '@changesets/parse': 0.3.16 - '@changesets/types': 5.2.1 + '@babel/runtime': 7.23.8 + '@changesets/git': 3.0.0 + '@changesets/logger': 0.1.0 + '@changesets/parse': 0.4.0 + '@changesets/types': 6.0.0 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 @@ -858,60 +875,60 @@ packages: resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} dev: true - /@changesets/types@5.2.1: - resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} + /@changesets/types@6.0.0: + resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} dev: true - /@changesets/write@0.2.3: - resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==} + /@changesets/write@0.3.0: + resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==} dependencies: - '@babel/runtime': 7.21.0 - '@changesets/types': 5.2.1 + '@babel/runtime': 7.23.8 + '@changesets/types': 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 dev: true - /@commitlint/cli@17.6.3: - resolution: {integrity: sha512-ItSz2fd4F+CujgIbQOfNNerDF1eFlsBGEfp9QcCb1kxTYMuKTYZzA6Nu1YRRrIaaWwe2E7awUGpIMrPoZkOG3A==} - engines: {node: '>=v14'} + /@commitlint/cli@18.4.4(@types/node@20.11.5)(typescript@5.3.3): + resolution: {integrity: sha512-Ro3wIo//fV3XiV1EkdpHog6huaEyNcUAVrSmtgKqYM5g982wOWmP4FXvEDFwRMVgz878CNBvvCc33dMZ5AQJ/g==} + engines: {node: '>=v18'} hasBin: true dependencies: - '@commitlint/format': 17.4.4 - '@commitlint/lint': 17.6.3 - '@commitlint/load': 17.5.0 - '@commitlint/read': 17.5.1 - '@commitlint/types': 17.4.4 + '@commitlint/format': 18.4.4 + '@commitlint/lint': 18.4.4 + '@commitlint/load': 18.4.4(@types/node@20.11.5)(typescript@5.3.3) + '@commitlint/read': 18.4.4 + '@commitlint/types': 18.4.4 execa: 5.1.1 lodash.isfunction: 3.0.9 resolve-from: 5.0.0 resolve-global: 1.0.0 yargs: 17.7.2 transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' + - '@types/node' + - typescript dev: true - /@commitlint/config-conventional@17.6.3: - resolution: {integrity: sha512-bLyHEjjRWqlLQWIgYFHmUPbEFMOOLXeF3QbUinDIJev/u9e769tkoTH9YPknEywiuIrAgZaVo+OfzAIsJP0fsw==} - engines: {node: '>=v14'} + /@commitlint/config-conventional@18.4.4: + resolution: {integrity: sha512-Bz3sPQSboBN+Et/KyZrR+OJ3z9PrHDw7Bls0/hv94PmuHBtMq1dCGxS9XzTGzxeMNlytCC4kxF083tbhPljl3Q==} + engines: {node: '>=v18'} dependencies: - conventional-changelog-conventionalcommits: 5.0.0 + conventional-changelog-conventionalcommits: 7.0.2 dev: true - /@commitlint/config-validator@17.4.4: - resolution: {integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==} - engines: {node: '>=v14'} + /@commitlint/config-validator@18.4.4: + resolution: {integrity: sha512-/QI8KIg/h7O0Eus36fPcEcO3QPBcdXuGfZeCF5m15k0EB2bcU8s6pHNTNEa6xz9PrAefHCL+yzRJj7w20T6Mow==} + engines: {node: '>=v18'} dependencies: - '@commitlint/types': 17.4.4 + '@commitlint/types': 18.4.4 ajv: 8.12.0 dev: true - /@commitlint/ensure@17.4.4: - resolution: {integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==} - engines: {node: '>=v14'} + /@commitlint/ensure@18.4.4: + resolution: {integrity: sha512-KjD19p6julB5WrQL+Cd8p+AePwpl1XzGAjB0jnuFMKWtji9L7ucCZUKDstGjlkBZGGzH/nvdB8K+bh5K27EVUg==} + engines: {node: '>=v18'} dependencies: - '@commitlint/types': 17.4.4 + '@commitlint/types': 18.4.4 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 @@ -919,123 +936,119 @@ packages: lodash.upperfirst: 4.3.1 dev: true - /@commitlint/execute-rule@17.4.0: - resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==} - engines: {node: '>=v14'} + /@commitlint/execute-rule@18.4.4: + resolution: {integrity: sha512-a37Nd3bDQydtg9PCLLWM9ZC+GO7X5i4zJvrggJv5jBhaHsXeQ9ZWdO6ODYR+f0LxBXXNYK3geYXJrCWUCP8JEg==} + engines: {node: '>=v18'} dev: true - /@commitlint/format@17.4.4: - resolution: {integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==} - engines: {node: '>=v14'} + /@commitlint/format@18.4.4: + resolution: {integrity: sha512-2v3V5hVlv0R3pe7p66IX5F7cjeVvGM5JqITRIbBCFvGHPJ/CG74rjTkAu0RBEiIhlk3eOaLjVGq3d5falPkLBA==} + engines: {node: '>=v18'} dependencies: - '@commitlint/types': 17.4.4 + '@commitlint/types': 18.4.4 chalk: 4.1.2 dev: true - /@commitlint/is-ignored@17.6.3: - resolution: {integrity: sha512-LQbNdnPbxrpbcrVKR5yf51SvquqktpyZJwqXx3lUMF6+nT9PHB8xn3wLy8pi2EQv5Zwba484JnUwDE1ygVYNQA==} - engines: {node: '>=v14'} + /@commitlint/is-ignored@18.4.4: + resolution: {integrity: sha512-rXWes9owKBTjfTr6Od7YlflRg4N+ngkOH+dUZhk0qL/XQb26mHz0EgVgdixMVBac1OsohRwJaLmVHX+5F6vfmg==} + engines: {node: '>=v18'} dependencies: - '@commitlint/types': 17.4.4 - semver: 7.5.0 + '@commitlint/types': 18.4.4 + semver: 7.5.4 dev: true - /@commitlint/lint@17.6.3: - resolution: {integrity: sha512-fBlXwt6SHJFgm3Tz+luuo3DkydAx9HNC5y4eBqcKuDuMVqHd2ugMNr+bQtx6riv9mXFiPoKp7nE4Xn/ls3iVDA==} - engines: {node: '>=v14'} + /@commitlint/lint@18.4.4: + resolution: {integrity: sha512-SoyQstVxMY5Z4GnFRtRzy+NWYb+yVseXgir+7BxnpB59oH05C9XztRrhDw6OnkNeXhjINTpi1HLnuY7So+CaAQ==} + engines: {node: '>=v18'} dependencies: - '@commitlint/is-ignored': 17.6.3 - '@commitlint/parse': 17.4.4 - '@commitlint/rules': 17.6.1 - '@commitlint/types': 17.4.4 + '@commitlint/is-ignored': 18.4.4 + '@commitlint/parse': 18.4.4 + '@commitlint/rules': 18.4.4 + '@commitlint/types': 18.4.4 dev: true - /@commitlint/load@17.5.0: - resolution: {integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==} - engines: {node: '>=v14'} + /@commitlint/load@18.4.4(@types/node@20.11.5)(typescript@5.3.3): + resolution: {integrity: sha512-RaDIa9qwOw2xRJ3Jr2DBXd14rmnHJIX2XdZF4kmoF1rgsg/+7cvrExLSUNAkQUNimyjCn1b/bKX2Omm+GdY0XQ==} + engines: {node: '>=v18'} dependencies: - '@commitlint/config-validator': 17.4.4 - '@commitlint/execute-rule': 17.4.0 - '@commitlint/resolve-extends': 17.4.4 - '@commitlint/types': 17.4.4 - '@types/node': 20.1.7 + '@commitlint/config-validator': 18.4.4 + '@commitlint/execute-rule': 18.4.4 + '@commitlint/resolve-extends': 18.4.4 + '@commitlint/types': 18.4.4 chalk: 4.1.2 - cosmiconfig: 8.1.3 - cosmiconfig-typescript-loader: 4.3.0(@types/node@20.1.7)(cosmiconfig@8.1.3)(ts-node@10.9.1)(typescript@5.0.4) + cosmiconfig: 8.3.6(typescript@5.3.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.5)(cosmiconfig@8.3.6)(typescript@5.3.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 resolve-from: 5.0.0 - ts-node: 10.9.1(@swc/core@1.3.58)(@types/node@20.1.7)(typescript@5.0.4) - typescript: 5.0.4 transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' + - '@types/node' + - typescript dev: true - /@commitlint/message@17.4.2: - resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==} - engines: {node: '>=v14'} + /@commitlint/message@18.4.4: + resolution: {integrity: sha512-lHF95mMDYgAI1LBXveJUyg4eLaMXyOqJccCK3v55ZOEUsMPrDi8upqDjd/NmzWmESYihaOMBTAnxm+6oD1WoDQ==} + engines: {node: '>=v18'} dev: true - /@commitlint/parse@17.4.4: - resolution: {integrity: sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg==} - engines: {node: '>=v14'} + /@commitlint/parse@18.4.4: + resolution: {integrity: sha512-99G7dyn/OoyNWXJni0Ki0K3aJd01pEb/Im/Id6y4X7PN+kGOahjz2z/cXYYHn7xDdooqFVdiVrVLeChfgpWZ2g==} + engines: {node: '>=v18'} dependencies: - '@commitlint/types': 17.4.4 - conventional-changelog-angular: 5.0.13 - conventional-commits-parser: 3.2.4 + '@commitlint/types': 18.4.4 + conventional-changelog-angular: 7.0.0 + conventional-commits-parser: 5.0.0 dev: true - /@commitlint/read@17.5.1: - resolution: {integrity: sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==} - engines: {node: '>=v14'} + /@commitlint/read@18.4.4: + resolution: {integrity: sha512-r58JbWky4gAFPea/CZmvlqP9Ehbs+8gSEUqhIJOojKzTc3xlxFnZUDVPcEnnaqzQEEoV6C69VW7xuzdcBlu/FQ==} + engines: {node: '>=v18'} dependencies: - '@commitlint/top-level': 17.4.0 - '@commitlint/types': 17.4.4 - fs-extra: 11.1.1 + '@commitlint/top-level': 18.4.4 + '@commitlint/types': 18.4.4 git-raw-commits: 2.0.11 minimist: 1.2.8 dev: true - /@commitlint/resolve-extends@17.4.4: - resolution: {integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==} - engines: {node: '>=v14'} + /@commitlint/resolve-extends@18.4.4: + resolution: {integrity: sha512-RRpIHSbRnFvmGifVk21Gqazf1QF/yeP+Kkg/e3PlkegcOKd/FGOXp/Kx9cvSO2K7ucSn4GD/oBvgasFoy+NCAw==} + engines: {node: '>=v18'} dependencies: - '@commitlint/config-validator': 17.4.4 - '@commitlint/types': 17.4.4 + '@commitlint/config-validator': 18.4.4 + '@commitlint/types': 18.4.4 import-fresh: 3.3.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 resolve-global: 1.0.0 dev: true - /@commitlint/rules@17.6.1: - resolution: {integrity: sha512-lUdHw6lYQ1RywExXDdLOKxhpp6857/4c95Dc/1BikrHgdysVUXz26yV0vp1GL7Gv+avx9WqZWTIVB7pNouxlfw==} - engines: {node: '>=v14'} + /@commitlint/rules@18.4.4: + resolution: {integrity: sha512-6Uzlsnl/GljEI+80NWjf4ThOfR8NIsbm18IfXYuCEchlwMHSxiuYG4rHSK5DNmG/+MIo8eR5VdQ0gQyt7kWzAA==} + engines: {node: '>=v18'} dependencies: - '@commitlint/ensure': 17.4.4 - '@commitlint/message': 17.4.2 - '@commitlint/to-lines': 17.4.0 - '@commitlint/types': 17.4.4 + '@commitlint/ensure': 18.4.4 + '@commitlint/message': 18.4.4 + '@commitlint/to-lines': 18.4.4 + '@commitlint/types': 18.4.4 execa: 5.1.1 dev: true - /@commitlint/to-lines@17.4.0: - resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==} - engines: {node: '>=v14'} + /@commitlint/to-lines@18.4.4: + resolution: {integrity: sha512-mwe2Roa59NCz/krniAdCygFabg7+fQCkIhXqBHw00XQ8Y7lw4poZLLxeGI3p3bLpcEOXdqIDrEGLwHmG5lBdwQ==} + engines: {node: '>=v18'} dev: true - /@commitlint/top-level@17.4.0: - resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==} - engines: {node: '>=v14'} + /@commitlint/top-level@18.4.4: + resolution: {integrity: sha512-PBwW1drgeavl9CadB7IPRUk6rkUP/O8jEkxjlC+ofuh3pw0bzJdAT+Kw7M1Yc9KtTb9xTaqUB8uvRtaybHa/tQ==} + engines: {node: '>=v18'} dependencies: find-up: 5.0.0 dev: true - /@commitlint/types@17.4.4: - resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==} - engines: {node: '>=v14'} + /@commitlint/types@18.4.4: + resolution: {integrity: sha512-/FykLtodD8gKs3+VNkAUwofu4LBHankclj+I8fB2jTRvG6PV7k/OUt4P+VbM7ip853qS4F0g7Z6hLNa6JeMcAQ==} + engines: {node: '>=v18'} dependencies: chalk: 4.1.2 dev: true @@ -1047,17 +1060,36 @@ packages: '@jridgewell/trace-mapping': 0.3.9 dev: true - /@es-joy/jsdoccomment@0.39.4: - resolution: {integrity: sha512-Jvw915fjqQct445+yron7Dufix9A+m9j1fCJYlCo1FWlRvTxa3pjJelxdSTdaLWcTwRU6vbL+NYjO4YuNIS5Qg==} + /@effect/schema@0.56.1(effect@2.0.0-next.62)(fast-check@3.15.0): + resolution: {integrity: sha512-cfEyHLXPdzSKzJU/yYrPjFd0iVHPydh+NT0sgTe4bzXbcvOsKZuvQ86cAAwXN7lxY0N5cPes9ACxUxTdkEaNlw==} + peerDependencies: + effect: 2.0.0-next.62 + fast-check: ^3.13.2 + dependencies: + effect: 2.0.0-next.62 + fast-check: 3.15.0 + dev: true + + /@es-joy/jsdoccomment@0.41.0: + resolution: {integrity: sha512-aKUhyn1QI5Ksbqcr3fFJj16p99QdjUxXAEuFst1Z47DRyoiMwivIH9MV/ARcJOCXVjPfjITciej8ZD2O/6qUmw==} engines: {node: '>=16'} dependencies: - comment-parser: 1.3.1 + comment-parser: 1.4.1 esquery: 1.5.0 jsdoc-type-pratt-parser: 4.0.0 dev: true - /@esbuild/android-arm64@0.17.19: - resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} + /@esbuild/aix-ppc64@0.19.11: + resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64@0.19.11: + resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -1065,8 +1097,8 @@ packages: dev: true optional: true - /@esbuild/android-arm@0.17.19: - resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} + /@esbuild/android-arm@0.19.11: + resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -1074,8 +1106,8 @@ packages: dev: true optional: true - /@esbuild/android-x64@0.17.19: - resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} + /@esbuild/android-x64@0.19.11: + resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -1083,8 +1115,8 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64@0.17.19: - resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} + /@esbuild/darwin-arm64@0.19.11: + resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -1092,8 +1124,8 @@ packages: dev: true optional: true - /@esbuild/darwin-x64@0.17.19: - resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} + /@esbuild/darwin-x64@0.19.11: + resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -1101,8 +1133,8 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64@0.17.19: - resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} + /@esbuild/freebsd-arm64@0.19.11: + resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -1110,8 +1142,8 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64@0.17.19: - resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} + /@esbuild/freebsd-x64@0.19.11: + resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -1119,8 +1151,8 @@ packages: dev: true optional: true - /@esbuild/linux-arm64@0.17.19: - resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} + /@esbuild/linux-arm64@0.19.11: + resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -1128,8 +1160,8 @@ packages: dev: true optional: true - /@esbuild/linux-arm@0.17.19: - resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} + /@esbuild/linux-arm@0.19.11: + resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -1137,8 +1169,8 @@ packages: dev: true optional: true - /@esbuild/linux-ia32@0.17.19: - resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} + /@esbuild/linux-ia32@0.19.11: + resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -1146,8 +1178,8 @@ packages: dev: true optional: true - /@esbuild/linux-loong64@0.17.19: - resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} + /@esbuild/linux-loong64@0.19.11: + resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -1155,8 +1187,8 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el@0.17.19: - resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} + /@esbuild/linux-mips64el@0.19.11: + resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -1164,8 +1196,8 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64@0.17.19: - resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} + /@esbuild/linux-ppc64@0.19.11: + resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -1173,8 +1205,8 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64@0.17.19: - resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} + /@esbuild/linux-riscv64@0.19.11: + resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -1182,8 +1214,8 @@ packages: dev: true optional: true - /@esbuild/linux-s390x@0.17.19: - resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} + /@esbuild/linux-s390x@0.19.11: + resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -1191,8 +1223,8 @@ packages: dev: true optional: true - /@esbuild/linux-x64@0.17.19: - resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} + /@esbuild/linux-x64@0.19.11: + resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -1200,8 +1232,8 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64@0.17.19: - resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} + /@esbuild/netbsd-x64@0.19.11: + resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -1209,8 +1241,8 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64@0.17.19: - resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} + /@esbuild/openbsd-x64@0.19.11: + resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -1218,8 +1250,8 @@ packages: dev: true optional: true - /@esbuild/sunos-x64@0.17.19: - resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} + /@esbuild/sunos-x64@0.19.11: + resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -1227,8 +1259,8 @@ packages: dev: true optional: true - /@esbuild/win32-arm64@0.17.19: - resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} + /@esbuild/win32-arm64@0.19.11: + resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -1236,8 +1268,8 @@ packages: dev: true optional: true - /@esbuild/win32-ia32@0.17.19: - resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} + /@esbuild/win32-ia32@0.19.11: + resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -1245,8 +1277,8 @@ packages: dev: true optional: true - /@esbuild/win32-x64@0.17.19: - resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} + /@esbuild/win32-x64@0.19.11: + resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -1254,30 +1286,30 @@ packages: dev: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.40.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.40.0 - eslint-visitor-keys: 3.4.1 + eslint: 8.56.0 + eslint-visitor-keys: 3.4.3 dev: true - /@eslint-community/regexpp@4.5.1: - resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} + /@eslint-community/regexpp@4.10.0: + resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true - /@eslint/eslintrc@2.0.3: - resolution: {integrity: sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==} + /@eslint/eslintrc@2.1.4: + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.5.2 - globals: 13.20.0 - ignore: 5.2.4 + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.0 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -1286,16 +1318,16 @@ packages: - supports-color dev: true - /@eslint/js@8.40.0: - resolution: {integrity: sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA==} + /@eslint/js@8.56.0: + resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@humanwhocodes/config-array@0.11.8: - resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} + /@humanwhocodes/config-array@0.11.14: + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} engines: {node: '>=10.10.0'} dependencies: - '@humanwhocodes/object-schema': 1.2.1 + '@humanwhocodes/object-schema': 2.0.2 debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: @@ -1307,28 +1339,26 @@ packages: engines: {node: '>=12.22'} dev: true - /@humanwhocodes/object-schema@1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + /@humanwhocodes/object-schema@2.0.2: + resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} dev: true - /@ianvs/prettier-plugin-sort-imports@3.7.2(prettier@2.8.8): - resolution: {integrity: sha512-bVckKToJM8XV2wTOG1VpeXrSmfAG49esVrikbxeFbY51RJdNke9AdMANJtGuACB59uo+pGlz0wBdWFrRzWyO1A==} + /@ianvs/prettier-plugin-sort-imports@4.1.1(prettier@3.2.4): + resolution: {integrity: sha512-kJhXq63ngpTQ2dxgf5GasbPJWsJA3LgoOdd7WGhpUSzLgLgI4IsIzYkbJf9kmpOHe7Vdm/o3PcRA3jmizXUuAQ==} peerDependencies: '@vue/compiler-sfc': '>=3.0.0' - prettier: 2.x + prettier: 2 || 3 peerDependenciesMeta: '@vue/compiler-sfc': optional: true dependencies: - '@babel/core': 7.21.4 - '@babel/generator': 7.21.4 - '@babel/parser': 7.21.4 - '@babel/traverse': 7.21.4 - '@babel/types': 7.21.4 - javascript-natural-sort: 0.7.1 - lodash.clone: 4.5.0 - lodash.isequal: 4.5.0 - prettier: 2.8.8 + '@babel/core': 7.23.7 + '@babel/generator': 7.23.6 + '@babel/parser': 7.23.6 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 + prettier: 3.2.4 + semver: 7.5.4 transitivePeerDependencies: - supports-color dev: true @@ -1339,12 +1369,7 @@ packages: dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.18 - dev: true - - /@jridgewell/resolve-uri@3.1.0: - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} - engines: {node: '>=6.0.0'} + '@jridgewell/trace-mapping': 0.3.21 dev: true /@jridgewell/resolve-uri@3.1.1: @@ -1357,19 +1382,15 @@ packages: engines: {node: '>=6.0.0'} dev: true - /@jridgewell/sourcemap-codec@1.4.14: - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - dev: true - /@jridgewell/sourcemap-codec@1.4.15: resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} dev: true - /@jridgewell/trace-mapping@0.3.18: - resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} + /@jridgewell/trace-mapping@0.3.21: + resolution: {integrity: sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==} dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 dev: true /@jridgewell/trace-mapping@0.3.9: @@ -1382,7 +1403,7 @@ packages: /@manypkg/find-root@1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.23.8 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -1391,7 +1412,7 @@ packages: /@manypkg/get-packages@1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.23.8 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -1399,28 +1420,39 @@ packages: read-yaml-file: 1.1.0 dev: true - /@mswjs/cookies@0.2.2: - resolution: {integrity: sha512-mlN83YSrcFgk7Dm1Mys40DLssI1KdJji2CMKN8eOlBqsTADYzj2+jWzsANsUTFbxDMWPD5e9bfA1RGqBpS3O1g==} - engines: {node: '>=14'} + /@mapbox/node-pre-gyp@1.0.11: + resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==} + hasBin: true dependencies: - '@types/set-cookie-parser': 2.4.2 - set-cookie-parser: 2.6.0 + detect-libc: 2.0.2 + https-proxy-agent: 5.0.1 + make-dir: 3.1.0 + node-fetch: 2.7.0 + nopt: 5.0.0 + npmlog: 5.0.1 + rimraf: 3.0.2 + semver: 7.5.4 + tar: 6.2.0 + transitivePeerDependencies: + - encoding + - supports-color dev: true - /@mswjs/interceptors@0.17.9: - resolution: {integrity: sha512-4LVGt03RobMH/7ZrbHqRxQrS9cc2uh+iNKSj8UWr8M26A2i793ju+csaB5zaqYltqJmA2jUq4VeYfKmVqvsXQg==} - engines: {node: '>=14'} + /@mswjs/cookies@1.1.0: + resolution: {integrity: sha512-0ZcCVQxifZmhwNBoQIrystCb+2sWBY2Zw8lpfJBPCHGCA/HWqehITeCRVIv4VMy8MPlaHo2w2pTHFV2pFfqKPw==} + engines: {node: '>=18'} + dev: true + + /@mswjs/interceptors@0.25.14: + resolution: {integrity: sha512-2dnIxl+obqIqjoPXTFldhe6pcdOrqiz+GcLaQQ6hmL02OldAF7nIC+rUgTWm+iF6lvmyCVhFFqbgbapNhR8eag==} + engines: {node: '>=18'} dependencies: - '@open-draft/until': 1.0.3 - '@types/debug': 4.1.7 - '@xmldom/xmldom': 0.8.7 - debug: 4.3.4 - headers-polyfill: 3.1.2 - outvariant: 1.4.0 - strict-event-emitter: 0.2.8 - web-encoding: 1.1.5 - transitivePeerDependencies: - - supports-color + '@open-draft/deferred-promise': 2.2.0 + '@open-draft/logger': 0.3.0 + '@open-draft/until': 2.1.0 + is-node-process: 1.2.0 + outvariant: 1.4.2 + strict-event-emitter: 0.5.1 dev: true /@nodelib/fs.scandir@2.1.5: @@ -1441,18 +1473,29 @@ packages: engines: {node: '>= 8'} dependencies: '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 + fastq: 1.16.0 + dev: true + + /@open-draft/deferred-promise@2.2.0: + resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==} + dev: true + + /@open-draft/logger@0.3.0: + resolution: {integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==} + dependencies: + is-node-process: 1.2.0 + outvariant: 1.4.2 dev: true - /@open-draft/until@1.0.3: - resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==} + /@open-draft/until@2.1.0: + resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==} dev: true - /@rollup/plugin-typescript@11.1.1(rollup@3.22.0)(typescript@5.0.4): - resolution: {integrity: sha512-Ioir+x5Bejv72Lx2Zbz3/qGg7tvGbxQZALCLoJaGrkNXak/19+vKgKYJYM3i/fJxvsb23I9FuFQ8CUBEfsmBRg==} + /@rollup/plugin-typescript@11.1.6(rollup@4.9.5)(typescript@5.3.3): + resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==} engines: {node: '>=14.0.0'} peerDependencies: - rollup: ^2.14.0||^3.0.0 + rollup: ^2.14.0||^3.0.0||^4.0.0 tslib: '*' typescript: '>=3.7.0' peerDependenciesMeta: @@ -1461,29 +1504,146 @@ packages: tslib: optional: true dependencies: - '@rollup/pluginutils': 5.0.2(rollup@3.22.0) - resolve: 1.22.2 - rollup: 3.22.0 - typescript: 5.0.4 + '@rollup/pluginutils': 5.1.0(rollup@4.9.5) + resolve: 1.22.8 + rollup: 4.9.5 + typescript: 5.3.3 + dev: true + + /@rollup/pluginutils@4.2.1: + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.1 dev: true - /@rollup/pluginutils@5.0.2(rollup@3.22.0): - resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} + /@rollup/pluginutils@5.1.0(rollup@4.9.5): + resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} engines: {node: '>=14.0.0'} peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true dependencies: - '@types/estree': 1.0.1 + '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 - rollup: 3.22.0 + rollup: 4.9.5 + dev: true + + /@rollup/rollup-android-arm-eabi@4.9.5: + resolution: {integrity: sha512-idWaG8xeSRCfRq9KpRysDHJ/rEHBEXcHuJ82XY0yYFIWnLMjZv9vF/7DOq8djQ2n3Lk6+3qfSH8AqlmHlmi1MA==} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-android-arm64@4.9.5: + resolution: {integrity: sha512-f14d7uhAMtsCGjAYwZGv6TwuS3IFaM4ZnGMUn3aCBgkcHAYErhV1Ad97WzBvS2o0aaDv4mVz+syiN0ElMyfBPg==} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-darwin-arm64@4.9.5: + resolution: {integrity: sha512-ndoXeLx455FffL68OIUrVr89Xu1WLzAG4n65R8roDlCoYiQcGGg6MALvs2Ap9zs7AHg8mpHtMpwC8jBBjZrT/w==} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-darwin-x64@4.9.5: + resolution: {integrity: sha512-UmElV1OY2m/1KEEqTlIjieKfVwRg0Zwg4PLgNf0s3glAHXBN99KLpw5A5lrSYCa1Kp63czTpVll2MAqbZYIHoA==} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm-gnueabihf@4.9.5: + resolution: {integrity: sha512-Q0LcU61v92tQB6ae+udZvOyZ0wfpGojtAKrrpAaIqmJ7+psq4cMIhT/9lfV6UQIpeItnq/2QDROhNLo00lOD1g==} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm64-gnu@4.9.5: + resolution: {integrity: sha512-dkRscpM+RrR2Ee3eOQmRWFjmV/payHEOrjyq1VZegRUa5OrZJ2MAxBNs05bZuY0YCtpqETDy1Ix4i/hRqX98cA==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm64-musl@4.9.5: + resolution: {integrity: sha512-QaKFVOzzST2xzY4MAmiDmURagWLFh+zZtttuEnuNn19AiZ0T3fhPyjPPGwLNdiDT82ZE91hnfJsUiDwF9DClIQ==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-riscv64-gnu@4.9.5: + resolution: {integrity: sha512-HeGqmRJuyVg6/X6MpE2ur7GbymBPS8Np0S/vQFHDmocfORT+Zt76qu+69NUoxXzGqVP1pzaY6QIi0FJWLC3OPA==} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-gnu@4.9.5: + resolution: {integrity: sha512-Dq1bqBdLaZ1Gb/l2e5/+o3B18+8TI9ANlA1SkejZqDgdU/jK/ThYaMPMJpVMMXy2uRHvGKbkz9vheVGdq3cJfA==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-musl@4.9.5: + resolution: {integrity: sha512-ezyFUOwldYpj7AbkwyW9AJ203peub81CaAIVvckdkyH8EvhEIoKzaMFJj0G4qYJ5sw3BpqhFrsCc30t54HV8vg==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-arm64-msvc@4.9.5: + resolution: {integrity: sha512-aHSsMnUw+0UETB0Hlv7B/ZHOGY5bQdwMKJSzGfDfvyhnpmVxLMGnQPGNE9wgqkLUs3+gbG1Qx02S2LLfJ5GaRQ==} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-ia32-msvc@4.9.5: + resolution: {integrity: sha512-AiqiLkb9KSf7Lj/o1U3SEP9Zn+5NuVKgFdRIZkvd4N0+bYrTOovVd0+LmYCPQGbocT4kvFyK+LXCDiXPBF3fyA==} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-x64-msvc@4.9.5: + resolution: {integrity: sha512-1q+mykKE3Vot1kaFJIDoUFv5TuW+QQVaf2FmTT9krg86pQrGStOSJJ0Zil7CFagyxDuouTepzt5Y5TVzyajOdQ==} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@sindresorhus/merge-streams@1.0.0: + resolution: {integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==} + engines: {node: '>=18'} dev: true - /@swc/core-darwin-arm64@1.3.58: - resolution: {integrity: sha512-NwX9768gcM4HjBEE+2VCMB+h/5bwNDF4DngOTJa9w02l3AwGZXWE66X4ulJQ3Oxv8EAz1nzWb8lbi3XT+WCtmQ==} + /@swc/core-darwin-arm64@1.3.104: + resolution: {integrity: sha512-rCnVj8x3kn6s914Adddu+zROHUn6mUEMkNKUckofs3W9OthNlZXJA3C5bS2MMTRFXCWamJ0Zmh6INFpz+f4Tfg==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] @@ -1491,8 +1651,8 @@ packages: dev: true optional: true - /@swc/core-darwin-x64@1.3.58: - resolution: {integrity: sha512-XUdKXRIu8S7N5kmrtd0Nxf3uPIgZhQbgVHPhkvYH+Qwb+uXsdltKPiRwhvLI9M0yF3fvIrKtGJ8qUJdH5ih4zw==} + /@swc/core-darwin-x64@1.3.104: + resolution: {integrity: sha512-LBCWGTYkn1UjyxrmcLS3vZgtCDVhwxsQMV7jz5duc7Gas8SRWh6ZYqvUkjlXMDX1yx0uvzHrkaRw445+zDRj7Q==} engines: {node: '>=10'} cpu: [x64] os: [darwin] @@ -1500,8 +1660,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm-gnueabihf@1.3.58: - resolution: {integrity: sha512-9M3/5RzjCXnz94a1kxb+0eBzqyZkxzeYTMmvcjIJSy7MVvWNuy0wHuh+x96X/6197g40P9LkzAiZ7q0DvxSPQQ==} + /@swc/core-linux-arm-gnueabihf@1.3.104: + resolution: {integrity: sha512-iFbsWcx0TKHWnFBNCuUstYqRtfkyBx7FKv5To1Hx14EMuvvoCD/qUoJEiNfDQN5n/xU9g5xq4RdbjEWCFLhAbA==} engines: {node: '>=10'} cpu: [arm] os: [linux] @@ -1509,8 +1669,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-gnu@1.3.58: - resolution: {integrity: sha512-hRjJIJdnYUAZlUi9ACCrsfS/hSFP4MmZRaUVOlQOif578Rw4kQlxsxFd1Rh1bhzUCid0KyZOyCvRzHSD/2ONgw==} + /@swc/core-linux-arm64-gnu@1.3.104: + resolution: {integrity: sha512-1BIIp+nUPrRHHaJ35YJqrwXPwYSITp5robqqjyTwoKGw2kq0x+A964kpWul6v0d7A9Ial8fyH4m13eSWBodD2A==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -1518,8 +1678,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-musl@1.3.58: - resolution: {integrity: sha512-3wrqZbRhbTKtxcQebMAMGKtyypL6BQU0OwqzAk4dBIgm9GaH45xu7sH2OekfHMp3vuj4uWuere+tYtr9HU7xcQ==} + /@swc/core-linux-arm64-musl@1.3.104: + resolution: {integrity: sha512-IyDNkzpKwvLqmRwTW+s8f8OsOSSj1N6juZKbvNHpZRfWZkz3T70q3vJlDBWQwy8z8cm7ckd7YUT3eKcSBPPowg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -1527,8 +1687,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-gnu@1.3.58: - resolution: {integrity: sha512-yOI5ucB+8g+gtp4L2AydPBThobZ2I3WR/dU2T+x2DFIE5Qpe/fqt6HPTFb02qmvqvOw36TLT45pRwAe4cY5LAw==} + /@swc/core-linux-x64-gnu@1.3.104: + resolution: {integrity: sha512-MfX/wiRdTjE5uXHTDnaX69xI4UBfxIhcxbVlMj//N+7AX/G2pl2UFityfVMU2HpM12BRckrCxVI8F/Zy3DZkYQ==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -1536,8 +1696,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-musl@1.3.58: - resolution: {integrity: sha512-xPwxgPLxSWXsK9Yf792SsUmLKISdShAI9o/Kk6jjv0r7PRBS25hZ5FyOjAb/rMbAzDcmyGKHevKc3TMUPSMjwg==} + /@swc/core-linux-x64-musl@1.3.104: + resolution: {integrity: sha512-5yeILaxA31gGEmquErO8yxlq1xu0XVt+fz5mbbKXKZMRRILxYxNzAGb5mzV41r0oHz6Vhv4AXX/WMCmeWl+HkQ==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -1545,8 +1705,8 @@ packages: dev: true optional: true - /@swc/core-win32-arm64-msvc@1.3.58: - resolution: {integrity: sha512-HW61trwkYGiaFprc+fJay6IKJ3scdquSdJaXsyumGF+jc/5kokQzNfY+JH6RWpk0/8zHnUWI4e+iNGuMYxYGeA==} + /@swc/core-win32-arm64-msvc@1.3.104: + resolution: {integrity: sha512-rwcImsYnWDWGmeESG0XdGGOql5s3cG5wA8C4hHHKdH76zamPfDKKQFBsjmoNi0f1IsxaI9AJPeOmD4bAhT1ZoQ==} engines: {node: '>=10'} cpu: [arm64] os: [win32] @@ -1554,8 +1714,8 @@ packages: dev: true optional: true - /@swc/core-win32-ia32-msvc@1.3.58: - resolution: {integrity: sha512-nODSJgHCY8GU6qHR9ieoxshaFD5GYGrPen/6VUvQkGwnV/yMI2Yvecgd1vLSUV4v67ZruPhIkP9OJruD+Juwhg==} + /@swc/core-win32-ia32-msvc@1.3.104: + resolution: {integrity: sha512-ICDA+CJLYC7NkePnrbh/MvXwDQfy3rZSFgrVdrqRosv9DKHdFjYDnA9++7ozjrIdFdBrFW2NR7pyUcidlwhNzA==} engines: {node: '>=10'} cpu: [ia32] os: [win32] @@ -1563,8 +1723,8 @@ packages: dev: true optional: true - /@swc/core-win32-x64-msvc@1.3.58: - resolution: {integrity: sha512-If/uQ3MW6Pdtah2FHhfBY2xBdBXBJzOusXpFQAkwNbaxnrJgpqIIxpYphwsJMDQp6ooSS3U90YizW7mJNxb6UA==} + /@swc/core-win32-x64-msvc@1.3.104: + resolution: {integrity: sha512-fZJ1Ju62U4lMZVU+nHxLkFNcu0hG5Y0Yj/5zjrlbuX5N8J5eDndWAFsVnQhxRTZqKhZB53pvWRQs5FItSDqgXg==} engines: {node: '>=10'} cpu: [x64] os: [win32] @@ -1572,8 +1732,8 @@ packages: dev: true optional: true - /@swc/core@1.3.58: - resolution: {integrity: sha512-tSDcHXMBQIo2ohQ/0ryZnUA+0mBrVhe49+cR+QsFru+XEhCok1BLqdE6cZ2a+sgZ1I+Dmw8aTxYm8Ox64PSKPQ==} + /@swc/core@1.3.104: + resolution: {integrity: sha512-9LWH/qzR/Pmyco+XwPiPfz59T1sryI7o5dmqb593MfCkaX5Fzl9KhwQTI47i21/bXYuCdfa9ySZuVkzXMirYxA==} engines: {node: '>=10'} requiresBuild: true peerDependencies: @@ -1581,17 +1741,28 @@ packages: peerDependenciesMeta: '@swc/helpers': optional: true + dependencies: + '@swc/counter': 0.1.2 + '@swc/types': 0.1.5 optionalDependencies: - '@swc/core-darwin-arm64': 1.3.58 - '@swc/core-darwin-x64': 1.3.58 - '@swc/core-linux-arm-gnueabihf': 1.3.58 - '@swc/core-linux-arm64-gnu': 1.3.58 - '@swc/core-linux-arm64-musl': 1.3.58 - '@swc/core-linux-x64-gnu': 1.3.58 - '@swc/core-linux-x64-musl': 1.3.58 - '@swc/core-win32-arm64-msvc': 1.3.58 - '@swc/core-win32-ia32-msvc': 1.3.58 - '@swc/core-win32-x64-msvc': 1.3.58 + '@swc/core-darwin-arm64': 1.3.104 + '@swc/core-darwin-x64': 1.3.104 + '@swc/core-linux-arm-gnueabihf': 1.3.104 + '@swc/core-linux-arm64-gnu': 1.3.104 + '@swc/core-linux-arm64-musl': 1.3.104 + '@swc/core-linux-x64-gnu': 1.3.104 + '@swc/core-linux-x64-musl': 1.3.104 + '@swc/core-win32-arm64-msvc': 1.3.104 + '@swc/core-win32-ia32-msvc': 1.3.104 + '@swc/core-win32-x64-msvc': 1.3.104 + dev: true + + /@swc/counter@0.1.2: + resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==} + dev: true + + /@swc/types@0.1.5: + resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} dev: true /@tsconfig/node10@1.0.9: @@ -1606,229 +1777,236 @@ packages: resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} dev: true - /@tsconfig/node16@1.0.3: - resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} - dev: true - - /@types/cookie@0.4.1: - resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} + /@tsconfig/node16@1.0.4: + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} dev: true - /@types/debug@4.1.7: - resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==} - dependencies: - '@types/ms': 0.7.31 - dev: true - - /@types/estree@1.0.1: - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} + /@types/cookie@0.6.0: + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} dev: true - /@types/is-ci@3.0.0: - resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==} - dependencies: - ci-info: 3.8.0 + /@types/estree@1.0.5: + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} dev: true - /@types/js-levenshtein@1.1.1: - resolution: {integrity: sha512-qC4bCqYGy1y/NP7dDVr7KJarn+PbX1nSpwA7JXdu0HxT3QYjO8MJ+cntENtHFVy2dRAyBV23OZ6MxsW1AM1L8g==} + /@types/js-levenshtein@1.1.3: + resolution: {integrity: sha512-jd+Q+sD20Qfu9e2aEXogiO3vpOC1PYJOUdyN9gvs4Qrvkg4wF43L5OhqrPeokdv8TL0/mXoYfpkcoGZMNN2pkQ==} dev: true - /@types/json-schema@7.0.11: - resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + /@types/json-schema@7.0.15: + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} dev: true /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true - /@types/minimist@1.2.2: - resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} - dev: true - - /@types/ms@0.7.31: - resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} + /@types/minimist@1.2.5: + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} dev: true /@types/node@12.20.55: resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: true - /@types/node@20.1.7: - resolution: {integrity: sha512-WCuw/o4GSwDGMoonES8rcvwsig77dGCMbZDrZr2x4ZZiNW4P/gcoZXe/0twgtobcTkmg9TuKflxYL/DuwDyJzg==} - dev: true - - /@types/normalize-package-data@2.4.1: - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + /@types/node@20.11.5: + resolution: {integrity: sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==} + dependencies: + undici-types: 5.26.5 dev: true - /@types/qs@6.9.7: - resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} + /@types/normalize-package-data@2.4.4: + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} dev: true - /@types/semver@6.2.3: - resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==} + /@types/qs@6.9.11: + resolution: {integrity: sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==} dev: true - /@types/semver@7.5.0: - resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} + /@types/semver@7.5.6: + resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} dev: true - /@types/set-cookie-parser@2.4.2: - resolution: {integrity: sha512-fBZgytwhYAUkj/jC/FAV4RQ5EerRup1YQsXQCh8rZfiHkc4UahC192oH0smGwsXol3cL3A5oETuAHeQHmhXM4w==} - dependencies: - '@types/node': 20.1.7 + /@types/statuses@2.0.4: + resolution: {integrity: sha512-eqNDvZsCNY49OAXB0Firg/Sc2BgoWsntsLUdybGFOhAfCD6QJ2n9HXUIHGqt5qjrxmMv4wS8WLAw43ZkKcJ8Pw==} dev: true /@types/util-deprecate@1.0.3: resolution: {integrity: sha512-tS4Vw2qY1XJnS+ZL4wgzyJprahEFBgg72NlC8lyY7/RWmS9cqz5gnxta9Mv9/Zla/wXBDrcNpiLLMv/4+5hokw==} dev: true - /@typescript-eslint/eslint-plugin@5.59.6(@typescript-eslint/parser@5.59.6)(eslint@8.40.0)(typescript@5.0.4): - resolution: {integrity: sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@typescript-eslint/eslint-plugin@6.19.0(@typescript-eslint/parser@6.19.0)(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-DUCUkQNklCQYnrBSSikjVChdc84/vMPDQSgJTHBZ64G9bA9w0Crc0rd2diujKbTdp6w2J47qkeHQLoi0rpLCdg==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.5.1 - '@typescript-eslint/parser': 5.59.6(eslint@8.40.0)(typescript@5.0.4) - '@typescript-eslint/scope-manager': 5.59.6 - '@typescript-eslint/type-utils': 5.59.6(eslint@8.40.0)(typescript@5.0.4) - '@typescript-eslint/utils': 5.59.6(eslint@8.40.0)(typescript@5.0.4) + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 6.19.0(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/scope-manager': 6.19.0 + '@typescript-eslint/type-utils': 6.19.0(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/utils': 6.19.0(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/visitor-keys': 6.19.0 debug: 4.3.4 - eslint: 8.40.0 - grapheme-splitter: 1.0.4 - ignore: 5.2.4 - natural-compare-lite: 1.4.0 - semver: 7.5.1 - tsutils: 3.21.0(typescript@5.0.4) - typescript: 5.0.4 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.0 + natural-compare: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.0.3(typescript@5.3.3) + typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@5.59.6(eslint@8.40.0)(typescript@5.0.4): - resolution: {integrity: sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@typescript-eslint/parser@6.19.0(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-1DyBLG5SH7PYCd00QlroiW60YJ4rWMuUGa/JBV0iZuqi4l4IK3twKPq5ZkEebmGqRjXWVgsUzfd3+nZveewgow==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.59.6 - '@typescript-eslint/types': 5.59.6 - '@typescript-eslint/typescript-estree': 5.59.6(typescript@5.0.4) + '@typescript-eslint/scope-manager': 6.19.0 + '@typescript-eslint/types': 6.19.0 + '@typescript-eslint/typescript-estree': 6.19.0(typescript@5.3.3) + '@typescript-eslint/visitor-keys': 6.19.0 debug: 4.3.4 - eslint: 8.40.0 - typescript: 5.0.4 + eslint: 8.56.0 + typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager@5.59.6: - resolution: {integrity: sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@typescript-eslint/scope-manager@6.19.0: + resolution: {integrity: sha512-dO1XMhV2ehBI6QN8Ufi7I10wmUovmLU0Oru3n5LVlM2JuzB4M+dVphCPLkVpKvGij2j/pHBWuJ9piuXx+BhzxQ==} + engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 5.59.6 - '@typescript-eslint/visitor-keys': 5.59.6 + '@typescript-eslint/types': 6.19.0 + '@typescript-eslint/visitor-keys': 6.19.0 dev: true - /@typescript-eslint/type-utils@5.59.6(eslint@8.40.0)(typescript@5.0.4): - resolution: {integrity: sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@typescript-eslint/type-utils@6.19.0(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-mcvS6WSWbjiSxKCwBcXtOM5pRkPQ6kcDds/juxcy/727IQr3xMEcwr/YLHW2A2+Fp5ql6khjbKBzOyjuPqGi/w==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - eslint: '*' + eslint: ^7.0.0 || ^8.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.59.6(typescript@5.0.4) - '@typescript-eslint/utils': 5.59.6(eslint@8.40.0)(typescript@5.0.4) + '@typescript-eslint/typescript-estree': 6.19.0(typescript@5.3.3) + '@typescript-eslint/utils': 6.19.0(eslint@8.56.0)(typescript@5.3.3) debug: 4.3.4 - eslint: 8.40.0 - tsutils: 3.21.0(typescript@5.0.4) - typescript: 5.0.4 + eslint: 8.56.0 + ts-api-utils: 1.0.3(typescript@5.3.3) + typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types@5.59.6: - resolution: {integrity: sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@typescript-eslint/types@6.19.0: + resolution: {integrity: sha512-lFviGV/vYhOy3m8BJ/nAKoAyNhInTdXpftonhWle66XHAtT1ouBlkjL496b5H5hb8dWXHwtypTqgtb/DEa+j5A==} + engines: {node: ^16.0.0 || >=18.0.0} dev: true - /@typescript-eslint/typescript-estree@5.59.6(typescript@5.0.4): - resolution: {integrity: sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@typescript-eslint/typescript-estree@6.19.0(typescript@5.3.3): + resolution: {integrity: sha512-o/zefXIbbLBZ8YJ51NlkSAt2BamrK6XOmuxSR3hynMIzzyMY33KuJ9vuMdFSXW+H0tVvdF9qBPTHA91HDb4BIQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.59.6 - '@typescript-eslint/visitor-keys': 5.59.6 + '@typescript-eslint/types': 6.19.0 + '@typescript-eslint/visitor-keys': 6.19.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.1 - tsutils: 3.21.0(typescript@5.0.4) - typescript: 5.0.4 + minimatch: 9.0.3 + semver: 7.5.4 + ts-api-utils: 1.0.3(typescript@5.3.3) + typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@5.59.6(eslint@8.40.0)(typescript@5.0.4): - resolution: {integrity: sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@typescript-eslint/utils@6.19.0(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-QR41YXySiuN++/dC9UArYOg4X86OAYP83OWTewpVx5ct1IZhjjgTLocj7QNxGhWoTqknsgpl7L+hGygCO+sdYw==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.40.0) - '@types/json-schema': 7.0.11 - '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 5.59.6 - '@typescript-eslint/types': 5.59.6 - '@typescript-eslint/typescript-estree': 5.59.6(typescript@5.0.4) - eslint: 8.40.0 - eslint-scope: 5.1.1 - semver: 7.5.1 + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.6 + '@typescript-eslint/scope-manager': 6.19.0 + '@typescript-eslint/types': 6.19.0 + '@typescript-eslint/typescript-estree': 6.19.0(typescript@5.3.3) + eslint: 8.56.0 + semver: 7.5.4 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys@5.59.6: - resolution: {integrity: sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@typescript-eslint/visitor-keys@6.19.0: + resolution: {integrity: sha512-hZaUCORLgubBvtGpp1JEFEazcuEdfxta9j4iUwdSAr7mEsYYAp3EAUyCZk3VEEqGj6W+AV4uWyrDGtrlawAsgQ==} + engines: {node: ^16.0.0 || >=18.0.0} + dependencies: + '@typescript-eslint/types': 6.19.0 + eslint-visitor-keys: 3.4.3 + dev: true + + /@ungap/structured-clone@1.2.0: + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + dev: true + + /@vercel/nft@0.24.4: + resolution: {integrity: sha512-KjYAZty7boH5fi5udp6p+lNu6nawgs++pHW+3koErMgbRkkHuToGX/FwjN5clV1FcaM3udfd4zW/sUapkMgpZw==} + engines: {node: '>=16'} + hasBin: true dependencies: - '@typescript-eslint/types': 5.59.6 - eslint-visitor-keys: 3.4.1 + '@mapbox/node-pre-gyp': 1.0.11 + '@rollup/pluginutils': 4.2.1 + acorn: 8.11.3 + async-sema: 3.1.1 + bindings: 1.5.0 + estree-walker: 2.0.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + node-gyp-build: 4.8.0 + resolve-from: 5.0.0 + transitivePeerDependencies: + - encoding + - supports-color dev: true - /@wunderwerk/eslint-config@1.0.3(@typescript-eslint/parser@5.59.6)(eslint-plugin-import@2.27.5)(eslint-plugin-jsdoc@44.2.4)(eslint@8.40.0)(typescript@5.0.4): - resolution: {integrity: sha512-2WZK1jy54L6px09kJZhEObDQSa44ZpPDV94rd6U2+BQHdvVOFEKW5ViA459L8qq5DcZUIHvZSPJDlVvwqJRgrg==} + /@wunderwerk/eslint-config@1.0.7(@typescript-eslint/parser@6.19.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jsdoc@48.0.2)(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-OWWhPE3uXJClzqchWcKZqSjPL8WM1sYcGi+pfRpRwy41zU5O5Ac/mN38h3DxRgf3NOqQWTMBab/TSuAKRZ+dvQ==} peerDependencies: eslint: '>= 8' eslint-plugin-import: '>= 2' eslint-plugin-jsdoc: '>= 39' dependencies: - eslint: 8.40.0 - eslint-config-prettier: 8.8.0(eslint@8.40.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.6)(eslint@8.40.0) - eslint-plugin-jsdoc: 44.2.4(eslint@8.40.0) + eslint: 8.56.0 + eslint-config-prettier: 8.10.0(eslint@8.56.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.0)(eslint@8.56.0) + eslint-plugin-jsdoc: 48.0.2(eslint@8.56.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 5.59.6(@typescript-eslint/parser@5.59.6)(eslint@8.40.0)(typescript@5.0.4) - eslint-plugin-react: 7.32.2(eslint@8.40.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.40.0) + '@typescript-eslint/eslint-plugin': 6.19.0(@typescript-eslint/parser@6.19.0)(eslint@8.56.0)(typescript@5.3.3) + eslint-plugin-react: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0) transitivePeerDependencies: - '@typescript-eslint/parser' - supports-color @@ -1840,21 +2018,10 @@ packages: hasBin: true dev: true - /@wunderwerk/ts-functional@1.0.0-beta.2: - resolution: {integrity: sha512-8hfcmX1GI8DmCd/p/l13sa81KNf5cIkJnutib7TUIENaelpx5FvXJdma9cpF90b357+NPZ1zW8nm5OgsWZWyXA==} + /@wunderwerk/ts-functional@1.0.0-beta.3: + resolution: {integrity: sha512-B8e5/+4cwjhal5E4/E4K5QxtivKq6Kdxug3RZnxSe4SNJ7ejJnREW7DJifl/zu3e2sX9YhNvxIr7dpSLL3bqcw==} dev: false - /@xmldom/xmldom@0.8.7: - resolution: {integrity: sha512-sI1Ly2cODlWStkINzqGrZ8K6n+MTSbAeQnAipGyL+KZCXuHaRlj2gyyy8B/9MvsFFqN7XHryQnB2QwhzvJXovg==} - engines: {node: '>=10.0.0'} - dev: true - - /@zxing/text-encoding@0.9.0: - resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==} - requiresBuild: true - dev: true - optional: true - /JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true @@ -1863,31 +2030,36 @@ packages: through: 2.3.8 dev: true - /acorn-jsx@5.3.2(acorn@8.8.2): + /abbrev@1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + dev: true + + /acorn-jsx@5.3.2(acorn@8.11.3): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.8.2 + acorn: 8.11.3 dev: true - /acorn-walk@8.2.0: - resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} + /acorn-walk@8.3.2: + resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} engines: {node: '>=0.4.0'} dev: true - /acorn@8.8.2: - resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} + /acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} engines: {node: '>=0.4.0'} hasBin: true dev: true - /aggregate-error@4.0.1: - resolution: {integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==} - engines: {node: '>=12'} + /agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} dependencies: - clean-stack: 4.2.0 - indent-string: 5.0.0 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color dev: true /ajv@6.12.6: @@ -1957,11 +2129,23 @@ packages: picomatch: 2.3.1 dev: true + /aproba@2.0.0: + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + dev: true + /are-docs-informative@0.0.2: resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} engines: {node: '>=14'} dev: true + /are-we-there-yet@2.0.0: + resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} + engines: {node: '>=10'} + dependencies: + delegates: 1.0.0 + readable-stream: 3.6.2 + dev: true + /arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} dev: true @@ -1979,7 +2163,7 @@ packages: /array-buffer-byte-length@1.0.0: resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 is-array-buffer: 3.0.2 dev: true @@ -1992,14 +2176,14 @@ packages: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true - /array-includes@3.1.6: - resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} + /array-includes@3.1.7: + resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.1 - get-intrinsic: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 is-string: 1.0.7 dev: true @@ -2008,38 +2192,61 @@ packages: engines: {node: '>=8'} dev: true - /array.prototype.flat@1.3.1: - resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} + /array.prototype.findlastindex@1.2.3: + resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - es-shim-unscopables: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 dev: true - /array.prototype.flatmap@1.3.1: - resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} + /array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.1 - es-shim-unscopables: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 dev: true - /array.prototype.tosorted@1.1.1: - resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} - requiresBuild: true + /array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.tosorted@1.1.2: + resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - es-shim-unscopables: 1.0.0 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 dev: true optional: true + /arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 + dev: true + /arrgv@1.0.2: resolution: {integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==} engines: {node: '>=8.0.0'} @@ -2055,9 +2262,20 @@ packages: engines: {node: '>=12'} dev: true - /ava@5.2.0: - resolution: {integrity: sha512-W8yxFXJr/P68JP55eMpQIa6AiXhCX3VeuajM8nolyWNExcMDD6rnIWKTjw0B/+GkFHBIaN6Jd0LtcMThcoqVfg==} - engines: {node: '>=14.19 <15 || >=16.15 <17 || >=18'} + /async-sema@3.1.1: + resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} + dev: true + + /asynciterator.prototype@1.0.0: + resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} + dependencies: + has-symbols: 1.0.3 + dev: true + optional: true + + /ava@6.0.1: + resolution: {integrity: sha512-9zR0wOwlcJdOWwHOKnpi0GrPRLTlxDFapGalP4rGD0oQRKxDVoucBBWvxVQ/2cPv10Hx1PkDXLJH5iUzhPn0/g==} + engines: {node: ^18.18 || ^20.8 || ^21} hasBin: true peerDependencies: '@ava/typescript': '*' @@ -2065,52 +2283,48 @@ packages: '@ava/typescript': optional: true dependencies: - acorn: 8.8.2 - acorn-walk: 8.2.0 + '@vercel/nft': 0.24.4 + acorn: 8.11.3 + acorn-walk: 8.3.2 ansi-styles: 6.2.1 arrgv: 1.0.2 arrify: 3.0.0 - callsites: 4.0.0 - cbor: 8.1.0 - chalk: 5.2.0 - chokidar: 3.5.3 + callsites: 4.1.0 + cbor: 9.0.1 + chalk: 5.3.0 chunkd: 2.0.1 - ci-info: 3.8.0 + ci-info: 4.0.0 ci-parallel-vars: 1.0.1 - clean-yaml-object: 0.1.0 - cli-truncate: 3.1.0 + cli-truncate: 4.0.0 code-excerpt: 4.0.0 common-path-prefix: 3.0.0 concordance: 5.0.4 currently-unhandled: 0.4.1 debug: 4.3.4 - del: 7.0.0 emittery: 1.0.1 - figures: 5.0.0 - globby: 13.1.4 + figures: 6.0.1 + globby: 14.0.0 ignore-by-default: 2.1.0 indent-string: 5.0.0 - is-error: 2.2.2 is-plain-object: 5.0.0(patch_hash=lray4voikhoiy5hx7wwtwhzd7e) is-promise: 4.0.0 matcher: 5.0.0 - mem: 9.0.2 + memoize: 10.0.0 ms: 2.1.3 - p-event: 5.0.1 - p-map: 5.5.0 - picomatch: 2.3.1 - pkg-conf: 4.0.0 + p-map: 6.0.0 + package-config: 5.0.0 + picomatch: 3.0.1 plur: 5.1.0 pretty-ms: 8.0.0 resolve-cwd: 3.0.0 - slash: 3.0.0 stack-utils: 2.0.6 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 supertap: 3.0.1 temp-dir: 3.0.0 - write-file-atomic: 5.0.0 - yargs: 17.7.1 + write-file-atomic: 5.0.1 + yargs: 17.7.2 transitivePeerDependencies: + - encoding - supports-color dev: true @@ -2143,6 +2357,12 @@ packages: engines: {node: '>=8'} dev: true + /bindings@1.5.0: + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + dependencies: + file-uri-to-path: 1.0.0 + dev: true + /bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} dependencies: @@ -2175,21 +2395,21 @@ packages: fill-range: 7.0.1 dev: true - /breakword@1.0.5: - resolution: {integrity: sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg==} + /breakword@1.0.6: + resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} dependencies: wcwidth: 1.0.1 dev: true - /browserslist@4.21.5: - resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} + /browserslist@4.22.2: + resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001480 - electron-to-chromium: 1.4.365 - node-releases: 2.0.10 - update-browserslist-db: 1.0.11(browserslist@4.21.5) + caniuse-lite: 1.0.30001579 + electron-to-chromium: 1.4.637 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.22.2) dev: true /buffer@5.7.1: @@ -2199,19 +2419,31 @@ packages: ieee754: 1.2.1 dev: true - /call-bind@1.0.2: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} - dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.2.0 - - /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + /builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} dev: true - /callsites@4.0.0: - resolution: {integrity: sha512-y3jRROutgpKdz5vzEhWM34TidDU8vkJppF8dszITeb1PQmSqV3DTxyV8G/lyO/DNvtE1YTedehmw9MPZsCBHxQ==} + /builtins@5.0.1: + resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} + dependencies: + semver: 7.5.4 + dev: true + + /call-bind@1.0.5: + resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + dependencies: + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.2.0 + + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /callsites@4.1.0: + resolution: {integrity: sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==} engines: {node: '>=12.20'} dev: true @@ -2229,13 +2461,13 @@ packages: engines: {node: '>=6'} dev: true - /caniuse-lite@1.0.30001480: - resolution: {integrity: sha512-q7cpoPPvZYgtyC4VaBSN0Bt+PJ4c4EYRf0DrduInOz2SkFpHD5p3LnvEpqBp7UnJn+8x1Ogl1s38saUxe+ihQQ==} + /caniuse-lite@1.0.30001579: + resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==} dev: true - /cbor@8.1.0: - resolution: {integrity: sha512-DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg==} - engines: {node: '>=12.19'} + /cbor@9.0.1: + resolution: {integrity: sha512-/TQOWyamDxvVIv+DY9cOLNuABkoyz8K/F3QE56539pGVYohx0+MEA1f4lChFTX79dBTBS7R1PF6ovH7G+VtBfQ==} + engines: {node: '>=16'} dependencies: nofilter: 3.1.0 dev: true @@ -2249,14 +2481,6 @@ packages: supports-color: 5.5.0 dev: true - /chalk@4.1.1: - resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} - engines: {node: '>=10'} - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - dev: true - /chalk@4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} @@ -2265,8 +2489,8 @@ packages: supports-color: 7.2.0 dev: true - /chalk@5.2.0: - resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==} + /chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} dev: true @@ -2286,32 +2510,30 @@ packages: normalize-path: 3.0.0 readdirp: 3.6.0 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 + dev: true + + /chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} dev: true /chunkd@2.0.1: resolution: {integrity: sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==} dev: true - /ci-info@3.8.0: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} + /ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} dev: true - /ci-parallel-vars@1.0.1: - resolution: {integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==} - dev: true - - /clean-stack@4.2.0: - resolution: {integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==} - engines: {node: '>=12'} - dependencies: - escape-string-regexp: 5.0.0 + /ci-info@4.0.0: + resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} + engines: {node: '>=8'} dev: true - /clean-yaml-object@0.1.0: - resolution: {integrity: sha512-3yONmlN9CSAkzNwnRCiJQ7Q2xK5mWuEfL3PuTZcAUzhObbXsfsnMptJzXwz93nc5zn9V9TwCVMmV7w4xsm43dw==} - engines: {node: '>=0.10.0'} + /ci-parallel-vars@1.0.1: + resolution: {integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==} dev: true /cli-cursor@3.1.0: @@ -2321,17 +2543,17 @@ packages: restore-cursor: 3.1.0 dev: true - /cli-spinners@2.8.0: - resolution: {integrity: sha512-/eG5sJcvEIwxcdYM86k5tPwn0MUzkX5YY3eImTGpJOZgVe4SdTMY14vQpcxgBzJ0wXwAYrS8E+c3uHeK4JNyzQ==} + /cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} engines: {node: '>=6'} dev: true - /cli-truncate@3.1.0: - resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + /cli-truncate@4.0.0: + resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} + engines: {node: '>=18'} dependencies: slice-ansi: 5.0.0 - string-width: 5.1.2 + string-width: 7.0.0 dev: true /cli-width@3.0.0: @@ -2389,13 +2611,18 @@ packages: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} dev: true - /commander@10.0.1: - resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} - engines: {node: '>=14'} + /color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true + dev: true + + /commander@11.1.0: + resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} + engines: {node: '>=16'} dev: true - /comment-parser@1.3.1: - resolution: {integrity: sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==} + /comment-parser@1.4.1: + resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} engines: {node: '>= 12.0.0'} dev: true @@ -2420,46 +2647,45 @@ packages: dependencies: date-time: 3.1.0 esutils: 2.0.3 - fast-diff: 1.2.0 + fast-diff: 1.3.0 js-string-escape: 1.0.1 lodash: 4.17.21 md5-hex: 3.0.1 - semver: 7.5.1 + semver: 7.5.4 well-known-symbols: 2.0.0 dev: true - /conventional-changelog-angular@5.0.13: - resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} - engines: {node: '>=10'} + /console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + dev: true + + /conventional-changelog-angular@7.0.0: + resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} + engines: {node: '>=16'} dependencies: compare-func: 2.0.0 - q: 1.5.1 dev: true - /conventional-changelog-conventionalcommits@5.0.0: - resolution: {integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==} - engines: {node: '>=10'} + /conventional-changelog-conventionalcommits@7.0.2: + resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} + engines: {node: '>=16'} dependencies: compare-func: 2.0.0 - lodash: 4.17.21 - q: 1.5.1 dev: true - /conventional-commits-parser@3.2.4: - resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} - engines: {node: '>=10'} + /conventional-commits-parser@5.0.0: + resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} + engines: {node: '>=16'} hasBin: true dependencies: JSONStream: 1.3.5 - is-text-path: 1.0.1 - lodash: 4.17.21 - meow: 8.1.2 - split2: 3.2.2 - through2: 4.0.2 + is-text-path: 2.0.0 + meow: 12.1.1 + split2: 4.2.0 dev: true - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + /convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} dev: true /convert-to-spaces@2.0.1: @@ -2467,34 +2693,55 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true - /cookie@0.4.2: - resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + /cookie@0.5.0: + resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} engines: {node: '>= 0.6'} dev: true - /cosmiconfig-typescript-loader@4.3.0(@types/node@20.1.7)(cosmiconfig@8.1.3)(ts-node@10.9.1)(typescript@5.0.4): - resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} - engines: {node: '>=12', npm: '>=6'} + /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.5)(cosmiconfig@8.3.6)(typescript@5.3.3): + resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==} + engines: {node: '>=v16'} peerDependencies: '@types/node': '*' - cosmiconfig: '>=7' - ts-node: '>=10' - typescript: '>=3' + cosmiconfig: '>=8.2' + typescript: '>=4' dependencies: - '@types/node': 20.1.7 - cosmiconfig: 8.1.3 - ts-node: 10.9.1(@swc/core@1.3.58)(@types/node@20.1.7)(typescript@5.0.4) - typescript: 5.0.4 + '@types/node': 20.11.5 + cosmiconfig: 8.3.6(typescript@5.3.3) + jiti: 1.21.0 + typescript: 5.3.3 dev: true - /cosmiconfig@8.1.3: - resolution: {integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==} + /cosmiconfig@8.3.6(typescript@5.3.3): + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 + typescript: 5.3.3 + dev: true + + /cosmiconfig@9.0.0(typescript@5.3.3): + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + typescript: 5.3.3 dev: true /create-require@1.1.1: @@ -2571,7 +2818,7 @@ packages: supports-color: optional: true dependencies: - ms: 2.1.2 + ms: 2.1.3 dev: true /debug@4.3.4: @@ -2609,26 +2856,25 @@ packages: clone: 1.0.4 dev: true - /define-properties@1.2.0: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} + /define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} dependencies: - has-property-descriptors: 1.0.0 + define-data-property: 1.1.1 + has-property-descriptors: 1.0.1 object-keys: 1.1.1 dev: true - /del@7.0.0: - resolution: {integrity: sha512-tQbV/4u5WVB8HMJr08pgw0b6nG4RGt/tj+7Numvq+zqcvUFeMaIWWOUFltiU+6go8BSO2/ogsB4EasDaj0y68Q==} - engines: {node: '>=14.16'} - dependencies: - globby: 13.1.4 - graceful-fs: 4.2.11 - is-glob: 4.0.3 - is-path-cwd: 3.0.0 - is-path-inside: 4.0.0 - p-map: 5.5.0 - rimraf: 3.0.2 - slash: 4.0.0 + /delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} dev: true /detect-indent@6.1.0: @@ -2636,6 +2882,11 @@ packages: engines: {node: '>=8'} dev: true + /detect-libc@2.0.2: + resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} + engines: {node: '>=8'} + dev: true + /diff@4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} @@ -2674,18 +2925,18 @@ packages: engines: {node: '>=10'} dev: true - /drupal-jsonapi-params@2.2.0: - resolution: {integrity: sha512-0IQiKBogl3ZR+XNO7ZTEd3TJaMfUlyUEJ1eotBXmmYs/JRVk8oADNZayULbnySnxfp9A9JHNI3TYwVYiHE0HrQ==} + /drupal-jsonapi-params@2.3.1: + resolution: {integrity: sha512-Isx6dudrFhORCl87OWHHO2LpQIAha5d6n7+/fwngsgcQs4PYeZcmTAA3pKUmvfyyFgCJ0N4fLAJQHyf4jtgiDA==} dependencies: qs: 6.11.2 dev: false - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + /effect@2.0.0-next.62: + resolution: {integrity: sha512-fJhLzf5oouL4WZP314ZJgZz5Bel7OHTY+YFxO06sW1mSvqJz0s28y7jDHr5zhtTNM1YRvzbeLYUYfNaJYKqx1A==} dev: true - /electron-to-chromium@1.4.365: - resolution: {integrity: sha512-FRHZO+1tUNO4TOPXmlxetkoaIY8uwHzd1kKopK/Gx2SKn1L47wJXWD44wxP5CGRyyP98z/c8e1eBzJrgPeiBOg==} + /electron-to-chromium@1.4.637: + resolution: {integrity: sha512-G7j3UCOukFtxVO1vWrPQUoDk3kL70mtvjc/DC/k2o7lE0wAdq+Vwp1ipagOow+BH0uVztFysLWbkM/RTIrbK3w==} dev: true /emittery@1.0.1: @@ -2693,19 +2944,25 @@ packages: engines: {node: '>=14.16'} dev: true - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + /emoji-regex@10.3.0: + resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} dev: true - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} dev: true - /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + /enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.3 + strip-ansi: 6.0.1 + dev: true + + /env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} dev: true /error-ex@1.3.2: @@ -2714,102 +2971,88 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract@1.21.1: - resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==} + /es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} engines: {node: '>= 0.4'} dependencies: + array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.2 available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 - function-bind: 1.1.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.0 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.2 get-symbol-description: 1.0.0 globalthis: 1.0.3 gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 + has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.5 + hasown: 2.0.0 + internal-slot: 1.0.6 is-array-buffer: 3.0.2 is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 is-string: 1.0.7 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.12.3 + object-inspect: 1.13.1 object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.4.3 - safe-regex-test: 1.0.0 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.1.0 + safe-regex-test: 1.0.2 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.9 + which-typed-array: 1.1.13 dev: true - /es-abstract@1.21.2: - resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} - engines: {node: '>= 0.4'} + /es-iterator-helpers@1.0.15: + resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} dependencies: - array-buffer-byte-length: 1.0.0 - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.0 - get-symbol-description: 1.0.0 + asynciterator.prototype: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-set-tostringtag: 2.0.2 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 globalthis: 1.0.3 - gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 + has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.5 - is-array-buffer: 3.0.2 - is-callable: 1.2.7 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.10 - is-weakref: 1.0.2 - object-inspect: 1.12.3 - object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.4.3 - safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.7 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 - typed-array-length: 1.0.4 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.9 + internal-slot: 1.0.6 + iterator.prototype: 1.1.2 + safe-array-concat: 1.1.0 dev: true + optional: true - /es-module-lexer@1.2.0: - resolution: {integrity: sha512-2BMfqBDeVCcOlLaL1ZAfp+D868SczNpKArrTM3dhpd7dK/OVlogzY15qpUngt+LMTq5UC/csb9vVQAgupucSbA==} + /es-module-lexer@1.4.1: + resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==} dev: true - /es-set-tostringtag@2.0.1: - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} + /es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.0 - has: 1.0.3 + get-intrinsic: 1.2.2 has-tostringtag: 1.0.0 + hasown: 2.0.0 dev: true - /es-shim-unscopables@1.0.0: - resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + /es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} dependencies: - has: 1.0.3 + hasown: 2.0.0 dev: true /es-to-primitive@1.2.1: @@ -2821,34 +3064,35 @@ packages: is-symbol: 1.0.4 dev: true - /esbuild@0.17.19: - resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} + /esbuild@0.19.11: + resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.17.19 - '@esbuild/android-arm64': 0.17.19 - '@esbuild/android-x64': 0.17.19 - '@esbuild/darwin-arm64': 0.17.19 - '@esbuild/darwin-x64': 0.17.19 - '@esbuild/freebsd-arm64': 0.17.19 - '@esbuild/freebsd-x64': 0.17.19 - '@esbuild/linux-arm': 0.17.19 - '@esbuild/linux-arm64': 0.17.19 - '@esbuild/linux-ia32': 0.17.19 - '@esbuild/linux-loong64': 0.17.19 - '@esbuild/linux-mips64el': 0.17.19 - '@esbuild/linux-ppc64': 0.17.19 - '@esbuild/linux-riscv64': 0.17.19 - '@esbuild/linux-s390x': 0.17.19 - '@esbuild/linux-x64': 0.17.19 - '@esbuild/netbsd-x64': 0.17.19 - '@esbuild/openbsd-x64': 0.17.19 - '@esbuild/sunos-x64': 0.17.19 - '@esbuild/win32-arm64': 0.17.19 - '@esbuild/win32-ia32': 0.17.19 - '@esbuild/win32-x64': 0.17.19 + '@esbuild/aix-ppc64': 0.19.11 + '@esbuild/android-arm': 0.19.11 + '@esbuild/android-arm64': 0.19.11 + '@esbuild/android-x64': 0.19.11 + '@esbuild/darwin-arm64': 0.19.11 + '@esbuild/darwin-x64': 0.19.11 + '@esbuild/freebsd-arm64': 0.19.11 + '@esbuild/freebsd-x64': 0.19.11 + '@esbuild/linux-arm': 0.19.11 + '@esbuild/linux-arm64': 0.19.11 + '@esbuild/linux-ia32': 0.19.11 + '@esbuild/linux-loong64': 0.19.11 + '@esbuild/linux-mips64el': 0.19.11 + '@esbuild/linux-ppc64': 0.19.11 + '@esbuild/linux-riscv64': 0.19.11 + '@esbuild/linux-s390x': 0.19.11 + '@esbuild/linux-x64': 0.19.11 + '@esbuild/netbsd-x64': 0.19.11 + '@esbuild/openbsd-x64': 0.19.11 + '@esbuild/sunos-x64': 0.19.11 + '@esbuild/win32-arm64': 0.19.11 + '@esbuild/win32-ia32': 0.19.11 + '@esbuild/win32-x64': 0.19.11 dev: true /escalade@3.1.1: @@ -2876,27 +3120,27 @@ packages: engines: {node: '>=12'} dev: true - /eslint-config-prettier@8.8.0(eslint@8.40.0): - resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} + /eslint-config-prettier@8.10.0(eslint@8.56.0): + resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.40.0 + eslint: 8.56.0 dev: true - /eslint-import-resolver-node@0.3.7: - resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} + /eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} dependencies: debug: 3.2.7 - is-core-module: 2.12.0 - resolve: 1.22.3 + is-core-module: 2.13.1 + resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.59.6)(eslint-import-resolver-node@0.3.7)(eslint@8.40.0): - resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} + /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.19.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -2916,16 +3160,16 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.59.6(eslint@8.40.0)(typescript@5.0.4) + '@typescript-eslint/parser': 6.19.0(eslint@8.56.0)(typescript@5.3.3) debug: 3.2.7 - eslint: 8.40.0 - eslint-import-resolver-node: 0.3.7 + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.6)(eslint@8.40.0): - resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.0)(eslint@8.56.0): + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -2934,162 +3178,156 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.59.6(eslint@8.40.0)(typescript@5.0.4) - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - array.prototype.flatmap: 1.3.1 + '@typescript-eslint/parser': 6.19.0(eslint@8.56.0)(typescript@5.3.3) + array-includes: 3.1.7 + array.prototype.findlastindex: 1.2.3 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.40.0 - eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.59.6)(eslint-import-resolver-node@0.3.7)(eslint@8.40.0) - has: 1.0.3 - is-core-module: 2.11.0 + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.19.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) + hasown: 2.0.0 + is-core-module: 2.13.1 is-glob: 4.0.3 minimatch: 3.1.2 - object.values: 1.1.6 - resolve: 1.22.1 - semver: 6.3.0 - tsconfig-paths: 3.14.2 + object.fromentries: 2.0.7 + object.groupby: 1.0.1 + object.values: 1.1.7 + semver: 6.3.1 + tsconfig-paths: 3.15.0 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: true - /eslint-plugin-jsdoc@44.2.4(eslint@8.40.0): - resolution: {integrity: sha512-/EMMxCyRh1SywhCb66gAqoGX4Yv6Xzc4bsSkF1AiY2o2+bQmGMQ05QZ5+JjHbdFTPDZY9pfn+DsSNP0a5yQpIg==} - engines: {node: '>=16'} + /eslint-plugin-jsdoc@48.0.2(eslint@8.56.0): + resolution: {integrity: sha512-CBFl5Jc7+jlV36RwDm+PQ8Uw5r28pn2/uW/OaB+Gw5bFwn4Py/1eYMZ3hGf9S4meUFZ/sRvS+hVif2mRAp6WqQ==} + engines: {node: '>=18'} peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 dependencies: - '@es-joy/jsdoccomment': 0.39.4 + '@es-joy/jsdoccomment': 0.41.0 are-docs-informative: 0.0.2 - comment-parser: 1.3.1 + comment-parser: 1.4.1 debug: 4.3.4 escape-string-regexp: 4.0.0 - eslint: 8.40.0 + eslint: 8.56.0 esquery: 1.5.0 - semver: 7.5.1 - spdx-expression-parse: 3.0.1 + is-builtin-module: 3.2.1 + semver: 7.5.4 + spdx-expression-parse: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-react-hooks@4.6.0(eslint@8.40.0): + /eslint-plugin-react-hooks@4.6.0(eslint@8.56.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} requiresBuild: true peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.40.0 + eslint: 8.56.0 dev: true optional: true - /eslint-plugin-react@7.32.2(eslint@8.40.0): - resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} + /eslint-plugin-react@7.33.2(eslint@8.56.0): + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} engines: {node: '>=4'} requiresBuild: true peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - array.prototype.tosorted: 1.1.1 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 - eslint: 8.40.0 + es-iterator-helpers: 1.0.15 + eslint: 8.56.0 estraverse: 5.3.0 - jsx-ast-utils: 3.3.3 + jsx-ast-utils: 3.3.5 minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.1.7 prop-types: 15.8.1 - resolve: 2.0.0-next.4 - semver: 6.3.0 - string.prototype.matchall: 4.0.8 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.10 dev: true optional: true - /eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} - dependencies: - esrecurse: 4.3.0 - estraverse: 4.3.0 - dev: true - - /eslint-scope@7.2.0: - resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} + /eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 dev: true - /eslint-visitor-keys@3.4.1: - resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} + /eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint@8.40.0: - resolution: {integrity: sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ==} + /eslint@8.56.0: + resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.40.0) - '@eslint-community/regexpp': 4.5.1 - '@eslint/eslintrc': 2.0.3 - '@eslint/js': 8.40.0 - '@humanwhocodes/config-array': 0.11.8 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@eslint-community/regexpp': 4.10.0 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.56.0 + '@humanwhocodes/config-array': 0.11.14 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 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.2.0 - eslint-visitor-keys: 3.4.1 - espree: 9.5.2 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.20.0 - grapheme-splitter: 1.0.4 - ignore: 5.2.4 - import-fresh: 3.3.0 + globals: 13.24.0 + graphemer: 1.4.0 + ignore: 5.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 - js-sdsl: 4.4.0 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 + optionator: 0.9.3 strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 text-table: 0.2.0 transitivePeerDependencies: - supports-color dev: true - /espree@9.5.2: - resolution: {integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==} + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.8.2 - acorn-jsx: 5.3.2(acorn@8.8.2) - eslint-visitor-keys: 3.4.1 + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) + eslint-visitor-keys: 3.4.3 dev: true /esprima@4.0.1: @@ -3112,11 +3350,6 @@ packages: estraverse: 5.3.0 dev: true - /estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} - dev: true - /estraverse@5.3.0: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} @@ -3131,11 +3364,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} - dev: true - /execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} @@ -3164,16 +3392,23 @@ packages: tmp: 0.0.33 dev: true + /fast-check@3.15.0: + resolution: {integrity: sha512-iBz6c+EXL6+nI931x/sbZs1JYTZtLG6Cko0ouS8LRTikhDR7+wZk4TYzdRavlnByBs2G6+nuuJ7NYL9QplNt8Q==} + engines: {node: '>=8.0.0'} + dependencies: + pure-rand: 6.0.4 + dev: true + /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true - /fast-diff@1.2.0: - resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} + /fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} dev: true - /fast-glob@3.2.12: - resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} + /fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 @@ -3191,8 +3426,8 @@ packages: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: true - /fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + /fastq@1.16.0: + resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} dependencies: reusify: 1.0.4 dev: true @@ -3204,19 +3439,22 @@ packages: escape-string-regexp: 1.0.5 dev: true - /figures@5.0.0: - resolution: {integrity: sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==} - engines: {node: '>=14'} + /figures@6.0.1: + resolution: {integrity: sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==} + engines: {node: '>=18'} dependencies: - escape-string-regexp: 5.0.0 - is-unicode-supported: 1.3.0 + is-unicode-supported: 2.0.0 dev: true /file-entry-cache@6.0.1: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flat-cache: 3.0.4 + flat-cache: 3.2.0 + dev: true + + /file-uri-to-path@1.0.0: + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} dev: true /fill-range@7.0.1: @@ -3226,6 +3464,11 @@ packages: to-regex-range: 5.0.1 dev: true + /find-up-simple@1.0.0: + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} + engines: {node: '>=18'} + dev: true + /find-up@4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} @@ -3242,14 +3485,6 @@ packages: path-exists: 4.0.0 dev: true - /find-up@6.3.0: - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - locate-path: 7.2.0 - path-exists: 5.0.0 - dev: true - /find-yarn-workspace-root2@1.2.16: resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} dependencies: @@ -3257,16 +3492,17 @@ packages: pkg-dir: 4.2.0 dev: true - /flat-cache@3.0.4: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + /flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flatted: 3.2.7 + flatted: 3.2.9 + keyv: 4.5.4 rimraf: 3.0.2 dev: true - /flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + /flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} dev: true /for-each@0.3.3: @@ -3275,15 +3511,6 @@ packages: is-callable: 1.2.7 dev: true - /fs-extra@11.1.1: - resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: '>=14.14'} - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.0 - dev: true - /fs-extra@7.0.1: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} engines: {node: '>=6 <7 || >=8'} @@ -3302,28 +3529,35 @@ packages: universalify: 0.1.2 dev: true + /fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + dev: true + /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} dev: true - /fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true dev: true optional: true - /function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - /function.prototype.name@1.1.5: - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + /function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 functions-have-names: 1.2.3 dev: true @@ -3331,6 +3565,21 @@ packages: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true + /gauge@3.0.2: + resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} + engines: {node: '>=10'} + dependencies: + aproba: 2.0.0 + color-support: 1.1.3 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + object-assign: 4.1.1 + signal-exit: 3.0.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + wide-align: 1.1.5 + dev: true + /gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} @@ -3341,20 +3590,18 @@ packages: engines: {node: 6.* || 8.* || >= 10.*} dev: true - /get-intrinsic@1.2.0: - resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} - dependencies: - function-bind: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.3 + /get-east-asian-width@1.2.0: + resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} + engines: {node: '>=18'} + dev: true - /get-intrinsic@1.2.1: - resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} + /get-intrinsic@1.2.2: + resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} dependencies: - function-bind: 1.1.1 - has: 1.0.3 + function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 + hasown: 2.0.0 /get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} @@ -3365,8 +3612,14 @@ packages: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.0 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + dev: true + + /get-tsconfig@4.7.2: + resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} + dependencies: + resolve-pkg-maps: 1.0.0 dev: true /git-raw-commits@2.0.11: @@ -3406,17 +3659,6 @@ packages: path-is-absolute: 1.0.1 dev: true - /glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 5.1.6 - once: 1.4.0 - dev: true - /global-dirs@0.1.1: resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} engines: {node: '>=4'} @@ -3429,8 +3671,8 @@ packages: engines: {node: '>=4'} dev: true - /globals@13.20.0: - resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} + /globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -3440,7 +3682,7 @@ packages: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} dependencies: - define-properties: 1.2.0 + define-properties: 1.2.1 dev: true /globby@11.1.0: @@ -3449,28 +3691,28 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.12 - ignore: 5.2.4 + fast-glob: 3.3.2 + ignore: 5.3.0 merge2: 1.4.1 slash: 3.0.0 dev: true - /globby@13.1.4: - resolution: {integrity: sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + /globby@14.0.0: + resolution: {integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==} + engines: {node: '>=18'} dependencies: - dir-glob: 3.0.1 - fast-glob: 3.2.12 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 4.0.0 + '@sindresorhus/merge-streams': 1.0.0 + fast-glob: 3.3.2 + ignore: 5.3.0 + path-type: 5.0.0 + slash: 5.1.0 + unicorn-magic: 0.1.0 dev: true /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: - get-intrinsic: 1.2.0 - dev: true + get-intrinsic: 1.2.2 /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} @@ -3480,8 +3722,12 @@ packages: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true - /graphql@16.6.0: - resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==} + /graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + dev: true + + /graphql@16.8.1: + resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} dev: true @@ -3504,11 +3750,10 @@ packages: engines: {node: '>=8'} dev: true - /has-property-descriptors@1.0.0: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + /has-property-descriptors@1.0.1: + resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} dependencies: - get-intrinsic: 1.2.0 - dev: true + get-intrinsic: 1.2.2 /has-proto@1.0.1: resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} @@ -3525,14 +3770,18 @@ packages: has-symbols: 1.0.3 dev: true - /has@1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} + /has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + dev: true + + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} dependencies: - function-bind: 1.1.1 + function-bind: 1.1.2 - /headers-polyfill@3.1.2: - resolution: {integrity: sha512-tWCK4biJ6hcLqTviLXVR9DTRfYGQMXEIUj3gwJ2rZ5wO/at3XtkI4g8mCvFdUF9l1KMBNCfmNAdnahm1cgavQA==} + /headers-polyfill@4.0.2: + resolution: {integrity: sha512-EWGTfnTqAO2L/j5HZgoM/3z82L7necsJ0pO9Tp0X1wil3PDLrkypTBRgVO2ExehEEvUycejZD3FuRaXpZZc3kw==} dev: true /hosted-git-info@2.8.9: @@ -3546,6 +3795,23 @@ packages: lru-cache: 6.0.0 dev: true + /hosted-git-info@7.0.1: + resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==} + engines: {node: ^16.14.0 || >=18.0.0} + dependencies: + lru-cache: 10.1.0 + dev: true + + /https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + /human-id@1.0.2: resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} dev: true @@ -3577,8 +3843,8 @@ packages: engines: {node: '>=10 <11 || >=12 <13 || >=14'} dev: true - /ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} + /ignore@5.3.0: + resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} engines: {node: '>= 4'} dev: true @@ -3620,12 +3886,12 @@ packages: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} dev: true - /inquirer@8.2.5: - resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} + /inquirer@8.2.6: + resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 - chalk: 4.1.1 + chalk: 4.1.2 cli-cursor: 3.1.0 cli-width: 3.0.0 external-editor: 3.1.0 @@ -3634,19 +3900,19 @@ packages: mute-stream: 0.0.8 ora: 5.4.1 run-async: 2.4.1 - rxjs: 7.8.0 + rxjs: 7.8.1 string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 - wrap-ansi: 7.0.0 + wrap-ansi: 6.2.0 dev: true - /internal-slot@1.0.5: - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} + /internal-slot@1.0.6: + resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 + hasown: 2.0.0 side-channel: 1.0.4 dev: true @@ -3655,26 +3921,26 @@ packages: engines: {node: '>=8'} dev: true - /is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - dev: true - /is-array-buffer@3.0.2: resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.0 - is-typed-array: 1.1.10 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 dev: true /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: true + /is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + optional: true + /is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: @@ -3692,38 +3958,26 @@ packages: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true - /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - dev: true - - /is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true - dependencies: - ci-info: 3.8.0 - dev: true - - /is-core-module@2.11.0: - resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} + /is-builtin-module@3.2.1: + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} dependencies: - has: 1.0.3 + builtin-modules: 3.3.0 dev: true - /is-core-module@2.12.0: - resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==} - dependencies: - has: 1.0.3 + /is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} dev: true - /is-core-module@2.12.1: - resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} + /is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} dependencies: - has: 1.0.3 + hasown: 2.0.0 dev: true /is-date-object@1.0.5: @@ -3733,15 +3987,18 @@ packages: has-tostringtag: 1.0.0 dev: true - /is-error@2.2.2: - resolution: {integrity: sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==} - dev: true - /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} dev: true + /is-finalizationregistry@1.0.2: + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + dependencies: + call-bind: 1.0.5 + dev: true + optional: true + /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} @@ -3758,6 +4015,7 @@ packages: dependencies: has-tostringtag: 1.0.0 dev: true + optional: true /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} @@ -3771,6 +4029,11 @@ packages: engines: {node: '>=8'} dev: true + /is-map@2.0.2: + resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} + dev: true + optional: true + /is-negative-zero@2.0.2: resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} engines: {node: '>= 0.4'} @@ -3797,21 +4060,11 @@ packages: engines: {node: '>=8'} dev: true - /is-path-cwd@3.0.0: - resolution: {integrity: sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true - /is-path-inside@3.0.3: resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} engines: {node: '>=8'} dev: true - /is-path-inside@4.0.0: - resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==} - engines: {node: '>=12'} - dev: true - /is-plain-obj@1.1.0: resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} engines: {node: '>=0.10.0'} @@ -3830,14 +4083,19 @@ packages: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true + /is-set@2.0.2: + resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} + dev: true + optional: true + /is-shared-array-buffer@1.0.2: resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-stream@2.0.1: @@ -3866,22 +4124,18 @@ packages: has-symbols: 1.0.3 dev: true - /is-text-path@1.0.1: - resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} - engines: {node: '>=0.10.0'} + /is-text-path@2.0.0: + resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} + engines: {node: '>=8'} dependencies: - text-extensions: 1.9.0 + text-extensions: 2.4.0 dev: true - /is-typed-array@1.1.10: - resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} + /is-typed-array@1.1.12: + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} engines: {node: '>= 0.4'} dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 + which-typed-array: 1.1.13 dev: true /is-unicode-supported@0.1.0: @@ -3889,33 +4143,57 @@ packages: engines: {node: '>=10'} dev: true - /is-unicode-supported@1.3.0: - resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} - engines: {node: '>=12'} + /is-unicode-supported@2.0.0: + resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==} + engines: {node: '>=18'} dev: true + /is-weakmap@2.0.1: + resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} + dev: true + optional: true + /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 + dev: true + + /is-weakset@2.0.2: + resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 dev: true + optional: true /is-windows@1.0.2: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} engines: {node: '>=0.10.0'} dev: true + /isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + dev: true + /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} dev: true - /javascript-natural-sort@0.7.1: - resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==} + /iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + dependencies: + define-properties: 1.2.1 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + reflect.getprototypeof: 1.0.4 + set-function-name: 2.0.1 dev: true + optional: true - /joycon@3.1.1: - resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} - engines: {node: '>=10'} + /jiti@1.21.0: + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} + hasBin: true dev: true /js-levenshtein@1.1.6: @@ -3923,10 +4201,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /js-sdsl@4.4.0: - resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==} - dev: true - /js-string-escape@1.0.1: resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} engines: {node: '>= 0.8'} @@ -3962,6 +4236,10 @@ packages: hasBin: true dev: true + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + dev: true + /json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: true @@ -3991,50 +4269,50 @@ packages: hasBin: true dev: true - /jsona@1.11.0: - resolution: {integrity: sha512-jH7f9TG+7aOFQ16BI2pCcoB2FNRz0Rny0icngddZLg8/It5gTDAlgfR6tvVNuor0yB1ZB60i3a/+TqKFgA+PdQ==} + /jsona@1.12.1: + resolution: {integrity: sha512-44WL4ZdsKx//mCDPUFQtbK7mnVdHXcVzbBy7Pzy0LAgXyfpN5+q8Hum7cLUX4wTnRsClHb4eId1hePZYchwczg==} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false - /jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - dev: true - /jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.11 dev: true - /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - dependencies: - universalify: 2.0.0 - optionalDependencies: - graceful-fs: 4.2.11 - dev: true - /jsonparse@1.3.1: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} dev: true - /jsx-ast-utils@3.3.3: - resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} + /jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} engines: {node: '>=4.0'} - requiresBuild: true dependencies: - array-includes: 3.1.6 - object.assign: 4.1.4 + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 + object.assign: 4.1.5 + object.values: 1.1.7 dev: true optional: true + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + dependencies: + json-buffer: 3.0.1 + dev: true + /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} dev: true + /kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + dev: true + /kleur@4.1.5: resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} engines: {node: '>=6'} @@ -4081,25 +4359,10 @@ packages: p-locate: 5.0.0 dev: true - /locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - p-locate: 6.0.0 - dev: true - /lodash.camelcase@4.3.0: resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} dev: true - /lodash.clone@4.5.0: - resolution: {integrity: sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==} - dev: true - - /lodash.isequal@4.5.0: - resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} - dev: true - /lodash.isfunction@3.0.9: resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} dev: true @@ -4144,7 +4407,7 @@ packages: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} dependencies: - chalk: 4.1.1 + chalk: 4.1.2 is-unicode-supported: 0.1.0 dev: true @@ -4157,6 +4420,11 @@ packages: dev: true optional: true + /lru-cache@10.1.0: + resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} + engines: {node: 14 || >=16.14} + dev: true + /lru-cache@4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} dependencies: @@ -4177,22 +4445,22 @@ packages: yallist: 4.0.0 dev: true - /magic-string@0.30.0: - resolution: {integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==} + /magic-string@0.30.5: + resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} engines: {node: '>=12'} dependencies: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + /make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + dependencies: + semver: 6.3.1 dev: true - /map-age-cleaner@0.1.3: - resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} - engines: {node: '>=6'} - dependencies: - p-defer: 1.0.0 + /make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} dev: true /map-obj@1.0.1: @@ -4219,19 +4487,23 @@ packages: blueimp-md5: 2.19.0 dev: true - /mem@9.0.2: - resolution: {integrity: sha512-F2t4YIv9XQUBHt6AOJ0y7lSmP1+cY7Fm1DRh9GClTGzKST7UWLMx6ly9WZdLH/G/ppM5RL4MlQfRT71ri9t19A==} - engines: {node: '>=12.20'} + /memoize@10.0.0: + resolution: {integrity: sha512-H6cBLgsi6vMWOcCpvVCdFFnl3kerEXbrYh9q+lY6VXvQSmM6CkmV08VOwT+WE2tzIEqRPFfAq3fm4v/UIW6mSA==} + engines: {node: '>=18'} dependencies: - map-age-cleaner: 0.1.3 - mimic-fn: 4.0.0 + mimic-function: 5.0.0 + dev: true + + /meow@12.1.1: + resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} + engines: {node: '>=16.10'} dev: true /meow@6.1.1: resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} engines: {node: '>=8'} dependencies: - '@types/minimist': 1.2.2 + '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -4248,7 +4520,7 @@ packages: resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} engines: {node: '>=10'} dependencies: - '@types/minimist': 1.2.2 + '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -4283,9 +4555,9 @@ packages: engines: {node: '>=6'} dev: true - /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} + /mimic-function@5.0.0: + resolution: {integrity: sha512-RBfQ+9X9DpXdEoK7Bu+KeEU6vFhumEIiXKWECPzRBmDserEq4uR2b/VCm0LwpMSosoq2k+Zuxj/GzOr0Fn6h/g==} + engines: {node: '>=18'} dev: true /min-indent@1.0.1: @@ -4299,16 +4571,9 @@ packages: brace-expansion: 1.1.11 dev: true - /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - dependencies: - brace-expansion: 2.0.1 - dev: true - - /minimatch@6.2.0: - resolution: {integrity: sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==} - engines: {node: '>=10'} + /minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 dev: true @@ -4326,11 +4591,37 @@ packages: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} dev: true - /mixme@0.5.9: - resolution: {integrity: sha512-VC5fg6ySUscaWUpI4gxCBTQMH2RdUpNrk+MsbpCYtIvf9SBJdiUey4qE7BXviJsJR4nDQxCZ+3yaYNW3guz/Pw==} + /minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + dependencies: + yallist: 4.0.0 + dev: true + + /minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + dev: true + + /minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + yallist: 4.0.0 + dev: true + + /mixme@0.5.10: + resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} engines: {node: '>= 8.0.0'} dev: true + /mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + dev: true + /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} dev: true @@ -4339,56 +4630,51 @@ packages: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} dev: true - /msw@1.2.1(typescript@5.0.4): - resolution: {integrity: sha512-bF7qWJQSmKn6bwGYVPXOxhexTCGD5oJSZg8yt8IBClxvo3Dx/1W0zqE1nX9BSWmzRsCKWfeGWcB/vpqV6aclpw==} - engines: {node: '>=14'} + /msw@2.1.2(typescript@5.3.3): + resolution: {integrity: sha512-7OKbeZNFQTCPFe++o+zZHMkQRIUi4D/5N1dAD3lOlaV+2Wpv3Srp3VFrFeH+2ftZJbb4jAiC0caZoW1efr80KQ==} + engines: {node: '>=18'} hasBin: true requiresBuild: true peerDependencies: - typescript: '>= 4.4.x <= 5.0.x' + typescript: '>= 4.7.x <= 5.3.x' peerDependenciesMeta: typescript: optional: true dependencies: - '@mswjs/cookies': 0.2.2 - '@mswjs/interceptors': 0.17.9 - '@open-draft/until': 1.0.3 - '@types/cookie': 0.4.1 - '@types/js-levenshtein': 1.1.1 - chalk: 4.1.1 + '@bundled-es-modules/cookie': 2.0.0 + '@bundled-es-modules/js-levenshtein': 2.0.1 + '@bundled-es-modules/statuses': 1.0.1 + '@mswjs/cookies': 1.1.0 + '@mswjs/interceptors': 0.25.14 + '@open-draft/until': 2.1.0 + '@types/cookie': 0.6.0 + '@types/js-levenshtein': 1.1.3 + '@types/statuses': 2.0.4 + chalk: 4.1.2 chokidar: 3.5.3 - cookie: 0.4.2 - graphql: 16.6.0 - headers-polyfill: 3.1.2 - inquirer: 8.2.5 + graphql: 16.8.1 + headers-polyfill: 4.0.2 + inquirer: 8.2.6 is-node-process: 1.2.0 js-levenshtein: 1.1.6 - node-fetch: 2.6.7 - outvariant: 1.4.0 + outvariant: 1.4.2 path-to-regexp: 6.2.1 - strict-event-emitter: 0.4.6 - type-fest: 2.19.0 - typescript: 5.0.4 - yargs: 17.7.1 - transitivePeerDependencies: - - encoding - - supports-color + strict-event-emitter: 0.5.1 + type-fest: 4.9.0 + typescript: 5.3.3 + yargs: 17.7.2 dev: true /mute-stream@0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: true - /natural-compare-lite@1.4.0: - resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} - dev: true - /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true - /node-fetch@2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} + /node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 @@ -4399,8 +4685,13 @@ packages: whatwg-url: 5.0.0 dev: true - /node-releases@2.0.10: - resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} + /node-gyp-build@4.8.0: + resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==} + hasBin: true + dev: true + + /node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} dev: true /nofilter@3.1.0: @@ -4408,12 +4699,20 @@ packages: engines: {node: '>=12.19'} dev: true + /nopt@5.0.0: + resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} + engines: {node: '>=6'} + hasBin: true + dependencies: + abbrev: 1.1.1 + dev: true + /normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.2 - semver: 5.7.1 + resolve: 1.22.8 + semver: 5.7.2 validate-npm-package-license: 3.0.4 dev: true @@ -4422,8 +4721,8 @@ packages: engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.12.1 - semver: 7.5.1 + is-core-module: 2.13.1 + semver: 7.5.4 validate-npm-package-license: 3.0.4 dev: true @@ -4432,6 +4731,16 @@ packages: engines: {node: '>=0.10.0'} dev: true + /npm-package-arg@11.0.1: + resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==} + engines: {node: ^16.14.0 || >=18.0.0} + dependencies: + hosted-git-info: 7.0.1 + proc-log: 3.0.0 + semver: 7.5.4 + validate-npm-package-name: 5.0.0 + dev: true + /npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} @@ -4439,69 +4748,82 @@ packages: path-key: 3.1.1 dev: true + /npmlog@5.0.1: + resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} + dependencies: + are-we-there-yet: 2.0.0 + console-control-strings: 1.1.0 + gauge: 3.0.2 + set-blocking: 2.0.0 + dev: true + /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} requiresBuild: true dev: true - optional: true - /object-inspect@1.12.3: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + /object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} dev: true - /object.assign@4.1.4: - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} + /object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 dev: true - /object.entries@1.1.6: - resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} + /object.entries@1.1.7: + resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} engines: {node: '>= 0.4'} - requiresBuild: true dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true optional: true - /object.fromentries@2.0.6: - resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} + /object.fromentries@2.0.7: + resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} engines: {node: '>= 0.4'} - requiresBuild: true dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - optional: true - /object.hasown@1.1.2: - resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} - requiresBuild: true + /object.groupby@1.0.1: + resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + dev: true + + /object.hasown@1.1.3: + resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} dependencies: - define-properties: 1.2.0 - es-abstract: 1.21.2 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true optional: true - /object.values@1.1.6: - resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} + /object.values@1.1.7: + resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /once@1.4.0: @@ -4517,16 +4839,16 @@ packages: mimic-fn: 2.1.0 dev: true - /optionator@0.9.1: - resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + /optionator@0.9.3: + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} engines: {node: '>= 0.8.0'} dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 - word-wrap: 1.2.3 dev: true /ora@5.4.1: @@ -4534,9 +4856,9 @@ packages: engines: {node: '>=10'} dependencies: bl: 4.1.0 - chalk: 4.1.1 + chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.8.0 + cli-spinners: 2.9.2 is-interactive: 1.0.0 is-unicode-supported: 0.1.0 log-symbols: 4.1.0 @@ -4553,20 +4875,8 @@ packages: resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} dev: true - /outvariant@1.4.0: - resolution: {integrity: sha512-AlWY719RF02ujitly7Kk/0QlV+pXGFDHrHf9O2OKqyqgBieaPOIeuSkL8sRK6j2WK+/ZAURq2kZsY0d8JapUiw==} - dev: true - - /p-defer@1.0.0: - resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} - engines: {node: '>=4'} - dev: true - - /p-event@5.0.1: - resolution: {integrity: sha512-dd589iCQ7m1L0bmC5NLlVYfy3TbBEsMUfWx9PyAgPeIcFZ/E2yaTZ4Rz4MiBmmJShviiftHVXOqfnfzJ6kyMrQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - p-timeout: 5.1.0 + /outvariant@1.4.2: + resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} dev: true /p-filter@2.1.0: @@ -4590,13 +4900,6 @@ packages: yocto-queue: 0.1.0 dev: true - /p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - yocto-queue: 1.0.0 - dev: true - /p-locate@4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} engines: {node: '>=8'} @@ -4611,28 +4914,14 @@ packages: p-limit: 3.1.0 dev: true - /p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - p-limit: 4.0.0 - dev: true - /p-map@2.1.0: resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} engines: {node: '>=6'} dev: true - /p-map@5.5.0: - resolution: {integrity: sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==} - engines: {node: '>=12'} - dependencies: - aggregate-error: 4.0.1 - dev: true - - /p-timeout@5.1.0: - resolution: {integrity: sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==} - engines: {node: '>=12'} + /p-map@6.0.0: + resolution: {integrity: sha512-T8BatKGY+k5rU+Q/GTYgrEf2r4xRMevAN5mtXc2aPc4rS1j3s+vWTaO2Wag94neXuCAUAs8cxBL9EeB5EA6diw==} + engines: {node: '>=16'} dev: true /p-try@2.2.0: @@ -4640,6 +4929,14 @@ packages: engines: {node: '>=6'} dev: true + /package-config@5.0.0: + resolution: {integrity: sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==} + engines: {node: '>=18'} + dependencies: + find-up-simple: 1.0.0 + load-json-file: 7.0.1 + dev: true + /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} @@ -4651,7 +4948,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.23.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -4667,11 +4964,6 @@ packages: engines: {node: '>=8'} dev: true - /path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true - /path-is-absolute@1.0.1: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} @@ -4695,6 +4987,11 @@ packages: engines: {node: '>=8'} dev: true + /path-type@5.0.0: + resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} + engines: {node: '>=12'} + dev: true + /picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} dev: true @@ -4704,19 +5001,16 @@ packages: engines: {node: '>=8.6'} dev: true + /picomatch@3.0.1: + resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==} + engines: {node: '>=10'} + dev: true + /pify@4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} dev: true - /pkg-conf@4.0.0: - resolution: {integrity: sha512-7dmgi4UY4qk+4mj5Cd8v/GExPo0K+SlY+hulOSdfZ/T6jVH6//y7NtzZo5WrfhDBxuQ0jCa7fLZmNaNh7EWL/w==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - find-up: 6.3.0 - load-json-file: 7.0.1 - dev: true - /pkg-dir@4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} @@ -4731,8 +5025,8 @@ packages: irregular-plurals: 3.5.0 dev: true - /preferred-pm@3.0.3: - resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==} + /preferred-pm@3.1.2: + resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==} engines: {node: '>=10'} dependencies: find-up: 5.0.0 @@ -4752,6 +5046,12 @@ packages: hasBin: true dev: true + /prettier@3.2.4: + resolution: {integrity: sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==} + engines: {node: '>=14'} + hasBin: true + dev: true + /pretty-ms@8.0.0: resolution: {integrity: sha512-ASJqOugUF1bbzI35STMBUpZqdfYKlJugy6JBziGi2EE+AL5JPJGSzvpeVXojxrr0ViUYoToUjb5kjSEGf7Y83Q==} engines: {node: '>=14.16'} @@ -4759,6 +5059,19 @@ packages: parse-ms: 3.0.0 dev: true + /proc-log@3.0.0: + resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + dev: true + /prop-types@15.8.1: resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} requiresBuild: true @@ -4773,14 +5086,13 @@ packages: resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} dev: true - /punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} + /punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} dev: true - /q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + /pure-rand@6.0.4: + resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==} dev: true /qs@6.11.2: @@ -4790,11 +5102,6 @@ packages: side-channel: 1.0.4 dev: false - /qs@6.9.7: - resolution: {integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==} - engines: {node: '>=0.6'} - dev: false - /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true @@ -4827,7 +5134,7 @@ packages: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} dependencies: - '@types/normalize-package-data': 2.4.1 + '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 @@ -4875,29 +5182,31 @@ packages: strip-indent: 3.0.0 dev: true - /regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} - dev: true - - /regexp.prototype.flags@1.4.3: - resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} + /reflect.getprototypeof@1.0.4: + resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + which-builtin-type: 1.1.3 dev: true + optional: true - /regexp.prototype.flags@1.5.0: - resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + dev: true + + /regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} engines: {node: '>= 0.4'} - requiresBuild: true dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 dev: true - optional: true /require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} @@ -4937,39 +5246,24 @@ packages: global-dirs: 0.1.1 dev: true - /resolve@1.22.1: - resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} - hasBin: true - dependencies: - is-core-module: 2.12.0 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - dev: true - - /resolve@1.22.2: - resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} - hasBin: true - dependencies: - is-core-module: 2.12.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 + /resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} dev: true - /resolve@1.22.3: - resolution: {integrity: sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==} + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true dependencies: - is-core-module: 2.12.0 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true - /resolve@2.0.0-next.4: - resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} + /resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} hasBin: true - requiresBuild: true dependencies: - is-core-module: 2.12.1 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -4995,44 +5289,58 @@ packages: glob: 7.2.3 dev: true - /rollup-plugin-dts@5.3.0(rollup@3.22.0)(typescript@5.0.4): - resolution: {integrity: sha512-8FXp0ZkyZj1iU5klkIJYLjIq/YZSwBoERu33QBDxm/1yw5UU4txrEtcmMkrq+ZiKu3Q4qvPCNqc3ovX6rjqzbQ==} - engines: {node: '>=v14'} + /rollup-plugin-dts@6.1.0(rollup@4.9.5)(typescript@5.3.3): + resolution: {integrity: sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==} + engines: {node: '>=16'} peerDependencies: - rollup: ^3.0.0 - typescript: ^4.1 || ^5.0 + rollup: ^3.29.4 || ^4 + typescript: ^4.5 || ^5.0 dependencies: - magic-string: 0.30.0 - rollup: 3.22.0 - typescript: 5.0.4 + magic-string: 0.30.5 + rollup: 4.9.5 + typescript: 5.3.3 optionalDependencies: - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.23.5 dev: true - /rollup-plugin-esbuild@5.0.0(esbuild@0.17.19)(rollup@3.22.0): - resolution: {integrity: sha512-1cRIOHAPh8WQgdQQyyvFdeOdxuiyk+zB5zJ5+YOwrZP4cJ0MT3Fs48pQxrZeyZHcn+klFherytILVfE4aYrneg==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} + /rollup-plugin-esbuild@6.1.0(esbuild@0.19.11)(rollup@4.9.5): + resolution: {integrity: sha512-HPpXU65V8bSpW8eSYPahtUJaJHmbxJGybuf/M8B3bz/6i11YaYHlNNJIQ38gSEV0FyohQOgVxJ2YMEEZtEmwvA==} + engines: {node: '>=14.18.0'} peerDependencies: - esbuild: '>=0.10.1' - rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 + esbuild: '>=0.18.0' + rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 dependencies: - '@rollup/pluginutils': 5.0.2(rollup@3.22.0) + '@rollup/pluginutils': 5.1.0(rollup@4.9.5) debug: 4.3.4 - es-module-lexer: 1.2.0 - esbuild: 0.17.19 - joycon: 3.1.1 - jsonc-parser: 3.2.0 - rollup: 3.22.0 + es-module-lexer: 1.4.1 + esbuild: 0.19.11 + get-tsconfig: 4.7.2 + rollup: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /rollup@3.22.0: - resolution: {integrity: sha512-imsigcWor5Y/dC0rz2q0bBt9PabcL3TORry2hAa6O6BuMvY71bqHyfReAz5qyAqiQATD1m70qdntqBfBQjVWpQ==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} + /rollup@4.9.5: + resolution: {integrity: sha512-E4vQW0H/mbNMw2yLSqJyjtkHY9dslf/p0zuT1xehNRqUTBOFMqEjguDvqhXr7N7r/4ttb2jr4T41d3dncmIgbQ==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + dependencies: + '@types/estree': 1.0.5 optionalDependencies: - fsevents: 2.3.2 + '@rollup/rollup-android-arm-eabi': 4.9.5 + '@rollup/rollup-android-arm64': 4.9.5 + '@rollup/rollup-darwin-arm64': 4.9.5 + '@rollup/rollup-darwin-x64': 4.9.5 + '@rollup/rollup-linux-arm-gnueabihf': 4.9.5 + '@rollup/rollup-linux-arm64-gnu': 4.9.5 + '@rollup/rollup-linux-arm64-musl': 4.9.5 + '@rollup/rollup-linux-riscv64-gnu': 4.9.5 + '@rollup/rollup-linux-x64-gnu': 4.9.5 + '@rollup/rollup-linux-x64-musl': 4.9.5 + '@rollup/rollup-win32-arm64-msvc': 4.9.5 + '@rollup/rollup-win32-ia32-msvc': 4.9.5 + '@rollup/rollup-win32-x64-msvc': 4.9.5 + fsevents: 2.3.3 dev: true /run-async@2.4.1: @@ -5046,22 +5354,32 @@ packages: queue-microtask: 1.2.3 dev: true - /rxjs@7.8.0: - resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} - requiresBuild: true + /rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 + dev: true + + /safe-array-concat@1.1.0: + resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} + engines: {node: '>=0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + isarray: 2.0.5 dev: true /safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} dev: true - /safe-regex-test@1.0.0: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + /safe-regex-test@1.0.2: + resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.0 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-regex: 1.1.4 dev: true @@ -5069,26 +5387,18 @@ packages: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true - /semver@5.7.1: - resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + /semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true dev: true - /semver@6.3.0: - resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + /semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true dev: true - /semver@7.5.0: - resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - - /semver@7.5.1: - resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==} + /semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} engines: {node: '>=10'} hasBin: true dependencies: @@ -5106,8 +5416,23 @@ packages: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} dev: true - /set-cookie-parser@2.6.0: - resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} + /set-function-length@1.2.0: + resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + + /set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 dev: true /shebang-command@1.2.0: @@ -5137,22 +5462,31 @@ packages: /side-channel@1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - object-inspect: 1.12.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + object-inspect: 1.13.1 /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} dev: true + /signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + dev: true + + /sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + dev: true + /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} dev: true - /slash@4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} + /slash@5.1.0: + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} dev: true /slice-ansi@5.0.0: @@ -5168,8 +5502,8 @@ packages: engines: {node: '>=6'} hasBin: true dependencies: - array.prototype.flat: 1.3.1 - breakword: 1.0.5 + array.prototype.flat: 1.3.2 + breakword: 1.0.6 grapheme-splitter: 1.0.4 strip-ansi: 6.0.1 wcwidth: 1.0.1 @@ -5187,7 +5521,7 @@ packages: resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.13 + spdx-license-ids: 3.0.16 dev: true /spdx-exceptions@2.3.0: @@ -5198,11 +5532,18 @@ packages: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.13 + spdx-license-ids: 3.0.16 + dev: true + + /spdx-expression-parse@4.0.0: + resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} + dependencies: + spdx-exceptions: 2.3.0 + spdx-license-ids: 3.0.16 dev: true - /spdx-license-ids@3.0.13: - resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} + /spdx-license-ids@3.0.16: + resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} dev: true /split2@3.2.2: @@ -5211,6 +5552,11 @@ packages: readable-stream: 3.6.2 dev: true + /split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} + dev: true + /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} dev: true @@ -5222,20 +5568,19 @@ packages: escape-string-regexp: 2.0.0 dev: true - /stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} - dependencies: - mixme: 0.5.9 + /statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} dev: true - /strict-event-emitter@0.2.8: - resolution: {integrity: sha512-KDf/ujU8Zud3YaLtMCcTI4xkZlZVIYxTLr+XIULexP+77EEVWixeXroLUXQXiVtH4XH2W7jr/3PT1v3zBuvc3A==} + /stream-transform@2.1.3: + resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} dependencies: - events: 3.3.0 + mixme: 0.5.10 dev: true - /strict-event-emitter@0.4.6: - resolution: {integrity: sha512-12KWeb+wixJohmnwNFerbyiBrAlq5qJLwIt38etRtKtmmHyDSoGlIqFE9wx+4IwG0aDjI7GV8tc8ZccjWZZtTg==} + /strict-event-emitter@0.5.1: + resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==} dev: true /string-width@4.2.3: @@ -5247,53 +5592,53 @@ packages: strip-ansi: 6.0.1 dev: true - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + /string-width@7.0.0: + resolution: {integrity: sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==} + engines: {node: '>=18'} dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.0.1 + emoji-regex: 10.3.0 + get-east-asian-width: 1.2.0 + strip-ansi: 7.1.0 dev: true - /string.prototype.matchall@4.0.8: - resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} - requiresBuild: true + /string.prototype.matchall@4.0.10: + resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 - internal-slot: 1.0.5 - regexp.prototype.flags: 1.5.0 + internal-slot: 1.0.6 + regexp.prototype.flags: 1.5.1 + set-function-name: 2.0.1 side-channel: 1.0.4 dev: true optional: true - /string.prototype.trim@1.2.7: - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} + /string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.trimend@1.0.6: - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} + /string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.trimstart@1.0.6: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} + /string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /string_decoder@1.3.0: @@ -5309,8 +5654,8 @@ packages: ansi-regex: 5.0.1 dev: true - /strip-ansi@7.0.1: - resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} + /strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} engines: {node: '>=12'} dependencies: ansi-regex: 6.0.1 @@ -5350,7 +5695,7 @@ packages: indent-string: 5.0.0 js-yaml: 3.14.1 serialize-error: 7.0.1 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 dev: true /supports-color@5.5.0: @@ -5372,21 +5717,41 @@ packages: engines: {node: '>= 0.4'} dev: true - /syncpack@9.8.6: - resolution: {integrity: sha512-4S4cUoKK9WenA/Wdk9GvlekzPR9PxC7sqcsUIsK4ypsa/pIYv8Ju1vxGNvp6Y1yI2S9EdCk0QJsB3/wRB8XYVw==} - engines: {node: '>=14'} + /syncpack@12.3.0(typescript@5.3.3): + resolution: {integrity: sha512-Gz2uGn96OmGfVVlKztvFac1EJYjP+WptQ2ohA6Uf48C6qLkhSayhkdujKQ6q7bGOTy8HSGI0iDfwfCJu6wvRig==} + engines: {node: '>=16'} hasBin: true dependencies: + '@effect/schema': 0.56.1(effect@2.0.0-next.62)(fast-check@3.15.0) chalk: 4.1.2 - commander: 10.0.1 - cosmiconfig: 8.1.3 - fs-extra: 11.1.1 - glob: 8.1.0 - minimatch: 6.2.0 + commander: 11.1.0 + cosmiconfig: 9.0.0(typescript@5.3.3) + effect: 2.0.0-next.62 + enquirer: 2.4.1 + fast-check: 3.15.0 + globby: 11.1.0 + minimatch: 9.0.3 + npm-package-arg: 11.0.1 + ora: 5.4.1 + prompts: 2.4.2 read-yaml-file: 2.1.0 - semver: 7.5.0 + semver: 7.5.4 tightrope: 0.1.0 - zod: 3.21.4 + ts-toolbelt: 9.6.0 + transitivePeerDependencies: + - typescript + dev: true + + /tar@6.2.0: + resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} + engines: {node: '>=10'} + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 5.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 dev: true /temp-dir@3.0.0: @@ -5399,9 +5764,9 @@ packages: engines: {node: '>=8'} dev: true - /text-extensions@1.9.0: - resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} - engines: {node: '>=0.10'} + /text-extensions@2.4.0: + resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} + engines: {node: '>=8'} dev: true /text-table@0.2.0: @@ -5456,14 +5821,23 @@ packages: engines: {node: '>=8'} dev: true + /ts-api-utils@1.0.3(typescript@5.3.3): + resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} + engines: {node: '>=16.13.0'} + peerDependencies: + typescript: '>=4.2.0' + dependencies: + typescript: 5.3.3 + dev: true + /ts-json-api@1.2.0: resolution: {integrity: sha512-hrH/m9KvidS6gHIfZwH3v/9Jb92CVZvJvFYQrpBDyHhBgWcKa2ol9hPAifEn8u4dpjnvuHG6xZoJgxHfGM5ouw==} dependencies: ramda: 0.26.1 dev: false - /ts-node@10.9.1(@swc/core@1.3.58)(@types/node@20.1.7)(typescript@5.0.4): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + /ts-node@10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3): + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -5477,25 +5851,29 @@ packages: optional: true dependencies: '@cspotcode/source-map-support': 0.8.1 - '@swc/core': 1.3.58 + '@swc/core': 1.3.104 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.3 - '@types/node': 20.1.7 - acorn: 8.8.2 - acorn-walk: 8.2.0 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.11.5 + acorn: 8.11.3 + acorn-walk: 8.3.2 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.0.4 + typescript: 5.3.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true - /tsconfig-paths@3.14.2: - resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} + /ts-toolbelt@9.6.0: + resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==} + dev: true + + /tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} dependencies: '@types/json5': 0.0.29 json5: 1.0.2 @@ -5503,25 +5881,11 @@ packages: strip-bom: 3.0.0 dev: true - /tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - dev: true + /tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - /tslib@2.5.0: - resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - - /tsutils@3.21.0(typescript@5.0.4): - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - dependencies: - tslib: 1.14.1 - typescript: 5.0.4 - dev: true - - /tty-table@4.2.1: - resolution: {integrity: sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g==} + /tty-table@4.2.3: + resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} engines: {node: '>=8.0.0'} hasBin: true dependencies: @@ -5534,65 +5898,64 @@ packages: yargs: 17.7.2 dev: true - /turbo-darwin-64@1.9.6: - resolution: {integrity: sha512-9jmxyCAcPrJiPD/EmtK2tObrPGblmyORCgNgtcw1iozcfC7kqungWTfbnHrvTNUfUmVhH0sA3BGzshpuslbQHg==} + /turbo-darwin-64@1.11.3: + resolution: {integrity: sha512-IsOOg2bVbIt3o/X8Ew9fbQp5t1hTHN3fGNQYrPQwMR2W1kIAC6RfbVD4A9OeibPGyEPUpwOH79hZ9ydFH5kifw==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /turbo-darwin-arm64@1.9.6: - resolution: {integrity: sha512-5f8ajEi8mOdAZ0AXavu/TzkHGEUi7tw+paefff7KK+XTUrdeyTlf8ULiTI+r97uH1jsYeTeL4JPu9IsEx+bL6g==} + /turbo-darwin-arm64@1.11.3: + resolution: {integrity: sha512-FsJL7k0SaPbJzI/KCnrf/fi3PgCDCjTliMc/kEFkuWVA6Httc3Q4lxyLIIinz69q6JTx8wzh6yznUMzJRI3+dg==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /turbo-linux-64@1.9.6: - resolution: {integrity: sha512-UrCDMl2Nqd/kxNEJonqvDg8nmZU4UggVQTmqcdYyuOiCA3H98jxggQqZh1VGeF23XDbCWHSQjnbkLeoUvQJWKw==} + /turbo-linux-64@1.11.3: + resolution: {integrity: sha512-SvW7pvTVRGsqtSkII5w+wriZXvxqkluw5FO/MNAdFw0qmoov+PZ237+37/NgArqE3zVn1GX9P6nUx9VO+xcQAg==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /turbo-linux-arm64@1.9.6: - resolution: {integrity: sha512-oOxAT6lNiMpYVZPWzFNsUvC2LQgKYyH4aBnkeoBnjuAUk8BK5AhUWSWl4QlfTcBWW4LnjDPeZQKrbnxvHhPVsw==} + /turbo-linux-arm64@1.11.3: + resolution: {integrity: sha512-YhUfBi1deB3m+3M55X458J6B7RsIS7UtM3P1z13cUIhF+pOt65BgnaSnkHLwETidmhRh8Dl3GelaQGrB3RdCDw==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /turbo-windows-64@1.9.6: - resolution: {integrity: sha512-65UxLL1vb5RItzJYNerO5c+yPMzSnD+GvJxfBZIvAwSnb+4ulhPRHzQOYinVq4PZ2DosBZOorWPRf97POmhvog==} + /turbo-windows-64@1.11.3: + resolution: {integrity: sha512-s+vEnuM2TiZuAUUUpmBHDr6vnNbJgj+5JYfnYmVklYs16kXh+EppafYQOAkcRIMAh7GjV3pLq5/uGqc7seZeHA==} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /turbo-windows-arm64@1.9.6: - resolution: {integrity: sha512-aF9VzYT+vaKNbZGDccN7AYrNhph4gr6yOFN7GtTr777IwS5FGW7evku7RScsua5r2HwVKvBO2WjyadpbXuoOOQ==} + /turbo-windows-arm64@1.11.3: + resolution: {integrity: sha512-ZR5z5Zpc7cASwfdRAV5yNScCZBsgGSbcwiA/u3farCacbPiXsfoWUkz28iyrx21/TRW0bi6dbsB2v17swa8bjw==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /turbo@1.9.6: - resolution: {integrity: sha512-mLbCIAYNbSm60kVhBiAr+YA1BYpPObS/y7rqw1hjh36ZdJDp35lUSeqdBs6oGt0Y4hnmN4ZeIXu8zMVRR03/vw==} + /turbo@1.11.3: + resolution: {integrity: sha512-RCJOUFcFMQNIGKSjC9YmA5yVP1qtDiBA0Lv9VIgrXraI5Da1liVvl3VJPsoDNIR9eFMyA/aagx1iyj6UWem5hA==} hasBin: true - requiresBuild: true optionalDependencies: - turbo-darwin-64: 1.9.6 - turbo-darwin-arm64: 1.9.6 - turbo-linux-64: 1.9.6 - turbo-linux-arm64: 1.9.6 - turbo-windows-64: 1.9.6 - turbo-windows-arm64: 1.9.6 + turbo-darwin-64: 1.11.3 + turbo-darwin-arm64: 1.11.3 + turbo-linux-64: 1.11.3 + turbo-linux-arm64: 1.11.3 + turbo-windows-64: 1.11.3 + turbo-windows-arm64: 1.11.3 dev: true /type-check@0.4.0: @@ -5632,51 +5995,85 @@ packages: engines: {node: '>=8'} dev: true - /type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} + /type-fest@4.9.0: + resolution: {integrity: sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg==} + engines: {node: '>=16'} + dev: true + + /typed-array-buffer@1.0.0: + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-offset@1.0.0: + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 dev: true /typed-array-length@1.0.4: resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 dev: true - /typescript@5.0.4: - resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} - engines: {node: '>=12.20'} + /typescript@5.3.3: + resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} + engines: {node: '>=14.17'} hasBin: true dev: true /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 dev: true + /undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + dev: true + + /unicorn-magic@0.1.0: + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} + dev: true + /universalify@0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} dev: true - /universalify@2.0.0: - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} - engines: {node: '>= 10.0.0'} - dev: true - - /update-browserslist-db@1.0.11(browserslist@4.21.5): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} + /update-browserslist-db@1.0.13(browserslist@4.22.2): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.5 + browserslist: 4.22.2 escalade: 3.1.1 picocolors: 1.0.0 dev: true @@ -5684,22 +6081,12 @@ packages: /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: - punycode: 2.3.0 + punycode: 2.3.1 dev: true /util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - /util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} - dependencies: - inherits: 2.0.4 - is-arguments: 1.1.1 - is-generator-function: 1.0.10 - is-typed-array: 1.1.10 - which-typed-array: 1.1.9 - dev: true - /v8-compile-cache-lib@3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} dev: true @@ -5711,18 +6098,17 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + /validate-npm-package-name@5.0.0: + resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - defaults: 1.0.4 + builtins: 5.0.1 dev: true - /web-encoding@1.1.5: - resolution: {integrity: sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==} + /wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: - util: 0.12.5 - optionalDependencies: - '@zxing/text-encoding': 0.9.0 + defaults: 1.0.4 dev: true /webidl-conversions@3.0.1: @@ -5751,8 +6137,37 @@ packages: is-symbol: 1.0.4 dev: true - /which-module@2.0.0: - resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} + /which-builtin-type@1.1.3: + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + engines: {node: '>= 0.4'} + dependencies: + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.0 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.0.2 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.1 + which-typed-array: 1.1.13 + dev: true + optional: true + + /which-collection@1.0.1: + resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + dependencies: + is-map: 2.0.2 + is-set: 2.0.2 + is-weakmap: 2.0.1 + is-weakset: 2.0.2 + dev: true + optional: true + + /which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} dev: true /which-pm@2.0.0: @@ -5763,16 +6178,15 @@ packages: path-exists: 4.0.0 dev: true - /which-typed-array@1.1.9: - resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} + /which-typed-array@1.1.13: + resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 - is-typed-array: 1.1.10 dev: true /which@1.3.1: @@ -5790,9 +6204,10 @@ packages: isexe: 2.0.0 dev: true - /word-wrap@1.2.3: - resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} - engines: {node: '>=0.10.0'} + /wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + dependencies: + string-width: 4.2.3 dev: true /wrap-ansi@6.2.0: @@ -5817,12 +6232,12 @@ packages: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} dev: true - /write-file-atomic@5.0.0: - resolution: {integrity: sha512-R7NYMnHSlV42K54lwY9lvW6MnSm1HSJqZL3xiSgi9E7//FYaI74r2G0rd+/X6VAMkHEdzxQaU5HUOXWUz5kA/w==} + /write-file-atomic@5.0.1: + resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: imurmurhash: 0.1.4 - signal-exit: 3.0.7 + signal-exit: 4.1.0 dev: true /y18n@4.0.3: @@ -5876,24 +6291,11 @@ packages: require-main-filename: 2.0.0 set-blocking: 2.0.0 string-width: 4.2.3 - which-module: 2.0.0 + which-module: 2.0.1 y18n: 4.0.3 yargs-parser: 18.1.3 dev: true - /yargs@17.7.1: - resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==} - engines: {node: '>=12'} - dependencies: - cliui: 8.0.1 - 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: 21.1.1 - dev: true - /yargs@17.7.2: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} @@ -5916,12 +6318,3 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} dev: true - - /yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} - dev: true - - /zod@3.21.4: - resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} - dev: true From a75a843aefee09456b312a2ea9820931223ba782 Mon Sep 17 00:00:00 2001 From: Christian Foidl Date: Thu, 18 Jan 2024 16:15:37 +0100 Subject: [PATCH 2/5] chore: fix code style --- packages/core/src/types.ts | 6 +- packages/core/tests/requests.test.ts | 36 ++++--- packages/jsonapi/src/DrupalkitJsonApi.ts | 16 +-- packages/jsonapi/src/resources.ts | 65 ++++++----- packages/jsonapi/tests/menu.test.ts | 4 +- packages/jsonapi/tests/resources.test.ts | 40 +++---- .../DrupalkitSimpleOauthAuthCode.test.ts | 4 +- .../tests/DrupalkitSimpleOauth.test.ts | 16 +-- .../user-api/tests/DrupalkitUserApi.test.ts | 102 +++++++++--------- .../tests/DrupalkitVerification.test.ts | 4 +- 10 files changed, 151 insertions(+), 142 deletions(-) diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index fc1fbc6..852eb6f 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -30,9 +30,9 @@ export type ReturnTypeOf = T extends AnyFunction ? ReturnType : T extends AnyFunction[] - ? // exclude `void` from intersection - UnionToIntersection, void>> - : never; + ? // exclude `void` from intersection + UnionToIntersection, void>> + : never; /** * Taken from stack overflow. diff --git a/packages/core/tests/requests.test.ts b/packages/core/tests/requests.test.ts index ccfa057..762b4ac 100644 --- a/packages/core/tests/requests.test.ts +++ b/packages/core/tests/requests.test.ts @@ -203,11 +203,15 @@ test.serial("Add auth header if present", async (t) => { const authHeaderValue = "Bearer 00000"; server.use( - http.get("*/demo-endpoint", ({ request }) => { - t.is(request.headers.get("authorization"), authHeaderValue); + http.get( + "*/demo-endpoint", + ({ request }) => { + t.is(request.headers.get("authorization"), authHeaderValue); - return HttpResponse.text(); - }, { once: true }), + return HttpResponse.text(); + }, + { once: true }, + ), ); const drupalkit = new Drupalkit({ @@ -224,11 +228,15 @@ test.serial("Add auth header if present", async (t) => { server.resetHandlers(); server.use( - http.get("*/demo-endpoint", ({ request }) => { - t.is(request.headers.get("authorization"), null); + http.get( + "*/demo-endpoint", + ({ request }) => { + t.is(request.headers.get("authorization"), null); - return HttpResponse.text(); - }, { once: true }), + return HttpResponse.text(); + }, + { once: true }, + ), ); await drupalkit.request("/demo-endpoint", { @@ -241,11 +249,15 @@ test.serial("Add auth header if present", async (t) => { server.resetHandlers(); server.use( - http.get("*/demo-endpoint", ({ request }) => { - t.is(request.headers.get("authorization"), null); + http.get( + "*/demo-endpoint", + ({ request }) => { + t.is(request.headers.get("authorization"), null); - return HttpResponse.text(); - }, { once: true }), + return HttpResponse.text(); + }, + { once: true }, + ), ); await drupalkit.request("/demo-endpoint", { diff --git a/packages/jsonapi/src/DrupalkitJsonApi.ts b/packages/jsonapi/src/DrupalkitJsonApi.ts index 46127d3..1cdc369 100644 --- a/packages/jsonapi/src/DrupalkitJsonApi.ts +++ b/packages/jsonapi/src/DrupalkitJsonApi.ts @@ -400,14 +400,14 @@ export const DrupalkitJsonApi = ( "readSingle" extends Operation ? Awaited>> : "readMany" extends Operation - ? Awaited>> - : "create" extends Operation - ? Awaited>> - : "update" extends Operation - ? Awaited>> - : "delete" extends Operation - ? Awaited> - : Result + ? Awaited>> + : "create" extends Operation + ? Awaited>> + : "update" extends Operation + ? Awaited>> + : "delete" extends Operation + ? Awaited> + : Result >, >( type: Type, diff --git a/packages/jsonapi/src/resources.ts b/packages/jsonapi/src/resources.ts index e47e5d1..82e0ab9 100644 --- a/packages/jsonapi/src/resources.ts +++ b/packages/jsonapi/src/resources.ts @@ -132,10 +132,10 @@ export interface RelationshipLinkage { type ExtractArrayElementType = T extends Array ? U : never; -type DeriveSimpleJsonApiResourceUnion = - T extends infer U extends JsonApiResource - ? DeriveSimpleJsonApiResource - : never; +type DeriveSimpleJsonApiResourceUnion = T extends infer U extends + JsonApiResource + ? DeriveSimpleJsonApiResource + : never; export type DeriveSimpleJsonApiResource = { id: TResource["id"]; @@ -158,10 +158,10 @@ export type DeriveSimpleJsonApiResource = { [key in keyof TResource["relationships"]]: TResource["relationships"][key] extends JsonApiResource ? DeriveSimpleJsonApiResourceUnion : TResource["relationships"][key] extends JsonApiResource[] - ? DeriveSimpleJsonApiResourceUnion< - ExtractArrayElementType - >[] - : never; + ? DeriveSimpleJsonApiResourceUnion< + ExtractArrayElementType + >[] + : never; }; /** @@ -195,33 +195,32 @@ export type DeriveResourceObject = { [key in keyof TResource["relationships"]]: TResource["relationships"][key] extends JsonApiResource ? Relationship> : TResource["relationships"][key] extends JsonApiResource[] - ? Relationship< - DeriveResourceObjectUnion< - ExtractArrayElementType - >[] - > - : never; + ? Relationship< + DeriveResourceObjectUnion< + ExtractArrayElementType + >[] + > + : never; }; }; type ResourceRelationshipLinkage = T extends JsonApiResource ? RelationshipLinkage : T extends JsonApiResource[] - ? RelationshipLinkage["type"]>[] - : never; + ? RelationshipLinkage["type"]>[] + : never; /** * Creates a simple json api resource from a resource object. * * Supports both single and an array of resource objects. */ -export type SimpleFromResourceObject = T extends DeriveResourceObject< - infer TResource -> - ? DeriveSimpleJsonApiResource - : T extends DeriveResourceObject[] - ? DeriveSimpleJsonApiResource[] - : never; +export type SimpleFromResourceObject = + T extends DeriveResourceObject + ? DeriveSimpleJsonApiResource + : T extends DeriveResourceObject[] + ? DeriveSimpleJsonApiResource[] + : never; /** * Extract the update payload type from a resource object. */ @@ -262,8 +261,8 @@ export type RemoveIndex = { [key in keyof T as string extends key ? never : number extends key - ? never - : key]: T[key]; + ? never + : key]: T[key]; }; /** @@ -302,14 +301,14 @@ export type ToParameters< > = "readSingle" extends Operation ? ReadSingleParameters : "readMany" extends Operation - ? ReadManyParameters - : "create" extends Operation - ? CreateParameters - : "update" extends Operation - ? UpdateParameters - : "delete" extends Operation - ? DeleteParameters - : never; + ? ReadManyParameters + : "create" extends Operation + ? CreateParameters + : "update" extends Operation + ? UpdateParameters + : "delete" extends Operation + ? DeleteParameters + : never; /** * Menu link content. diff --git a/packages/jsonapi/tests/menu.test.ts b/packages/jsonapi/tests/menu.test.ts index 49c7565..1737d69 100644 --- a/packages/jsonapi/tests/menu.test.ts +++ b/packages/jsonapi/tests/menu.test.ts @@ -72,7 +72,7 @@ test.serial("Get menu items with custom request options", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -94,7 +94,7 @@ test.serial("Get menu items for non-existant menu", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }), ), ); diff --git a/packages/jsonapi/tests/resources.test.ts b/packages/jsonapi/tests/resources.test.ts index d27497d..028a491 100644 --- a/packages/jsonapi/tests/resources.test.ts +++ b/packages/jsonapi/tests/resources.test.ts @@ -165,7 +165,7 @@ test.serial("Get JSON:API resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }), ), ); @@ -199,7 +199,7 @@ test.serial("Get JSON:API resource with options", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -228,7 +228,7 @@ test.serial("Simplify single resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }), ), ); @@ -260,7 +260,7 @@ test.serial("Get localized JSON:API resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -297,7 +297,7 @@ test.serial("Get JSON:API resource with query parameters", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -327,7 +327,7 @@ test.serial("Handle error when getting single resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -359,7 +359,7 @@ test.serial("Get many resources", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -391,7 +391,7 @@ test.serial("Get many resources with custom request options", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -418,7 +418,7 @@ test.serial("Simplify many resources", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -445,7 +445,7 @@ test.serial("Handle error when getting many resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); const result = await drupalkit.jsonApi.resource( @@ -498,7 +498,7 @@ test.serial("Create new resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -544,7 +544,7 @@ test.serial("Create resource with custom request options", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -587,7 +587,7 @@ test.serial("Handle error when creating new resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }), ), ); @@ -627,7 +627,7 @@ test.serial("Update resource", async (t) => { server.use( http.patch("*/jsonapi/node/article/" + uuid, async ({ request }) => { - const payload = await request.json() as any; + const payload = (await request.json()) as any; t.is(payload.data.type, "node--article"); t.is(payload.data.id, uuid); @@ -636,7 +636,7 @@ test.serial("Update resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -675,7 +675,7 @@ test.serial("Update resource with custom request options", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -711,7 +711,7 @@ test.serial("Handle error when updating resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }), ), ); @@ -745,7 +745,7 @@ test.serial("Delete resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }), ), ); @@ -776,7 +776,7 @@ test.serial("Delete resource with custom request options", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }); }), ); @@ -806,7 +806,7 @@ test.serial("Handle error when deleting resource", async (t) => { headers: { "Content-Type": "application/vnd.api+json", }, - }) + }), ), ); diff --git a/packages/simple-oauth-auth-code/tests/DrupalkitSimpleOauthAuthCode.test.ts b/packages/simple-oauth-auth-code/tests/DrupalkitSimpleOauthAuthCode.test.ts index f8510bb..abe7e65 100644 --- a/packages/simple-oauth-auth-code/tests/DrupalkitSimpleOauthAuthCode.test.ts +++ b/packages/simple-oauth-auth-code/tests/DrupalkitSimpleOauthAuthCode.test.ts @@ -110,9 +110,7 @@ test.serial("Handle network error", async (t) => { const email = "F3f6Z@example.com"; server.use( - http.post("*/simple-oauth/auth-code", async () => - HttpResponse.error() - ), + http.post("*/simple-oauth/auth-code", async () => HttpResponse.error()), ); const result = await drupalkit.simpleOauth.requestAuthCode(operation, email); diff --git a/packages/simple-oauth/tests/DrupalkitSimpleOauth.test.ts b/packages/simple-oauth/tests/DrupalkitSimpleOauth.test.ts index d7f891d..be8c02c 100644 --- a/packages/simple-oauth/tests/DrupalkitSimpleOauth.test.ts +++ b/packages/simple-oauth/tests/DrupalkitSimpleOauth.test.ts @@ -95,7 +95,7 @@ test.serial("Request token with custom request options", async (t) => { http.post("*/oauth/token", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(TokenResponse) + return HttpResponse.json(TokenResponse); }), ); @@ -161,11 +161,7 @@ test.serial("Handle request errors", async (t) => { test.serial("Handle network errors", async (t) => { const drupalkit = createDrupalkit(); - server.use( - http.post("*/oauth/token", async () => - HttpResponse.error() - ), - ); + server.use(http.post("*/oauth/token", async () => HttpResponse.error())); const result = await drupalkit.simpleOauth.requestToken( "client_credentials", @@ -185,7 +181,9 @@ test.serial( const drupalkit = createDrupalkit(); server.use( - http.post("*/not/oauth/related", async () => HttpResponse.text(null, { status: 400 })), + http.post("*/not/oauth/related", async () => + HttpResponse.text(null, { status: 400 }), + ), ); const result = await drupalkit.request("/not/oauth/related", { @@ -202,7 +200,9 @@ test.serial("Request user info", async (t) => { const drupalkit = createDrupalkit(); server.use( - http.get("*/oauth/userinfo", async () => HttpResponse.json(UserInfoResponse)), + http.get("*/oauth/userinfo", async () => + HttpResponse.json(UserInfoResponse), + ), ); const result = await drupalkit.simpleOauth.getUserInfo(); diff --git a/packages/user-api/tests/DrupalkitUserApi.test.ts b/packages/user-api/tests/DrupalkitUserApi.test.ts index f36f27e..72b0dec 100644 --- a/packages/user-api/tests/DrupalkitUserApi.test.ts +++ b/packages/user-api/tests/DrupalkitUserApi.test.ts @@ -58,7 +58,7 @@ test.serial("Register", async (t) => { t.deepEqual(data, payload); - return HttpResponse.json(UserResponse) + return HttpResponse.json(UserResponse); }), ); @@ -87,7 +87,7 @@ test.serial("Register with custom request options", async (t) => { http.post("*/user-api/register", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(UserResponse) + return HttpResponse.json(UserResponse); }), ); @@ -112,7 +112,7 @@ test.serial("Register with custom endpoint", async (t) => { server.use( http.post("*/custom/register", async ({ request }) => - HttpResponse.json(UserResponse) + HttpResponse.json(UserResponse), ), ); @@ -131,7 +131,7 @@ test.serial("Handle register error", async (t) => { server.use( http.post("*/user-api/register", async () => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); @@ -157,7 +157,7 @@ test.serial("Resend register email", async (t) => { t.deepEqual(await request.json(), { email, operation }); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -183,7 +183,7 @@ test.serial("Resend register email with custom request options", async (t) => { http.post("*/user-api/register/resend-email", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -205,7 +205,7 @@ test.serial("Resend register email with custom endpoint", async (t) => { server.use( http.post("*/custom/register/resend-email", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -224,7 +224,7 @@ test.serial("Resend register email - deprecated version", async (t) => { server.use( http.post("*/custom/register/resend-email", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -243,7 +243,7 @@ test.serial("Handle error while resend register email", async (t) => { server.use( http.post("*/user-api/register/resend-email", async () => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); @@ -265,7 +265,7 @@ test.serial("Init cancel account", async (t) => { http.post("*/user-api/cancel-account/init", async ({ request }) => { t.is(request.headers.get("content-type"), "application/json"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -289,7 +289,7 @@ test.serial("Init cancel account with custom request options", async (t) => { http.post("*/user-api/cancel-account/init", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -309,7 +309,7 @@ test.serial("Init cancel account with custom endpoint", async (t) => { server.use( http.post("*/custom/cancel-account/init", async ({ request }) => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -326,7 +326,7 @@ test.serial("Init cancel account - deprecated version", async (t) => { server.use( http.post("*/custom/cancel-account/init", async ({ request }) => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -340,7 +340,7 @@ test.serial("Handle error while init cancel account", async (t) => { server.use( http.post("*/user-api/cancel-account/init", async ({ request }) => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); @@ -362,7 +362,7 @@ test.serial("Cancel account", async (t) => { http.post("*/user-api/cancel-account", async ({ request }) => { t.is(request.headers.get("content-type"), "application/json"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -386,7 +386,7 @@ test.serial("Cancel account with custom request options", async (t) => { http.post("*/user-api/cancel-account", async ({ request }) => { t.is(request.headers.get("content-type"), "application/json"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -406,7 +406,7 @@ test.serial("Cancel account with custom endpoint", async (t) => { server.use( http.post("*/custom/cancel-account", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -420,7 +420,7 @@ test.serial("Handle error while cancel account", async (t) => { server.use( http.post("*/user-api/cancel-account", async () => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); @@ -445,7 +445,7 @@ test.serial("Init set password", async (t) => { t.deepEqual(await request.json(), { email }); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -470,7 +470,7 @@ test.serial("Init set password with custom request options", async (t) => { http.post("*/user-api/set-password/init", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -491,7 +491,7 @@ test.serial("Init set password with custom endpoint", async (t) => { server.use( http.post("*/custom/set-password/init", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -509,7 +509,7 @@ test.serial("Init set password - deprecated version", async (t) => { server.use( http.post("*/custom/set-password/init", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -524,7 +524,7 @@ test.serial("Handle error while init set password", async (t) => { server.use( http.post("*/user-api/set-password/init", async () => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); @@ -549,7 +549,7 @@ test.serial("Set password", async (t) => { t.deepEqual(await request.json(), { newPassword }); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -574,7 +574,7 @@ test.serial("Set password with custom request options", async (t) => { http.post("*/user-api/set-password", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -595,7 +595,7 @@ test.serial("Set password with custom endpoint", async (t) => { server.use( http.post("*/custom/set-password", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -613,7 +613,7 @@ test.serial("Set password - deprecated version", async (t) => { server.use( http.post("*/custom/set-password", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -628,7 +628,7 @@ test.serial("Handle error while set password", async (t) => { server.use( http.post("*/user-api/set-password", async () => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); @@ -653,7 +653,7 @@ test.serial("Init unset password", async (t) => { t.deepEqual(await request.json(), { email }); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -678,7 +678,7 @@ test.serial("Init unset password with custom request options", async (t) => { http.post("*/user-api/unset-password/init", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -699,7 +699,7 @@ test.serial("Init unset password with custom endpoint", async (t) => { server.use( http.post("*/custom/unset-password/init", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -714,7 +714,7 @@ test.serial("Handle error while init unset password", async (t) => { server.use( http.post("*/user-api/unset-password/init", async () => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); @@ -738,7 +738,7 @@ test.serial("Unset password with verification", async (t) => { t.deepEqual(await request.json(), {}); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -761,7 +761,7 @@ test.serial("Unset password with currentPassword", async (t) => { t.deepEqual(await request.json(), { currentPassword }); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -785,7 +785,7 @@ test.serial("Unset password with custom request options", async (t) => { http.post("*/user-api/unset-password", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -805,7 +805,7 @@ test.serial("Unset password with custom endpoint", async (t) => { server.use( http.post("*/custom/unset-password", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -820,7 +820,7 @@ test.serial("Handle error while unset password", async (t) => { server.use( http.post("*/user-api/unset-password", async () => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); @@ -845,7 +845,7 @@ test.serial("Passwordless login", async (t) => { t.deepEqual(await request.json(), { email }); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -870,7 +870,7 @@ test.serial("Passwordless login with custom request options", async (t) => { http.post("*/user-api/passwordless-login", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -891,7 +891,7 @@ test.serial("Passwordless login with custom endpoint", async (t) => { server.use( http.post("*/custom/passwordless-login", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -906,7 +906,7 @@ test.serial("Handle error while passwordless login", async (t) => { server.use( http.post("*/user-api/passwordless-login", async () => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); @@ -931,7 +931,7 @@ test.serial("Init set email", async (t) => { t.deepEqual(await request.json(), { email }); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -956,7 +956,7 @@ test.serial("Init set email with custom request options", async (t) => { http.post("*/user-api/set-email/init", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -977,7 +977,7 @@ test.serial("Init set email with custom endpoint", async (t) => { server.use( http.post("*/custom/set-email/init", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -995,7 +995,7 @@ test.serial("Init set email - deprecated version", async (t) => { server.use( http.post("*/custom/set-email/init", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -1010,7 +1010,7 @@ test.serial("Handle error while init set email", async (t) => { server.use( http.post("*/user-api/set-email/init", async () => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); @@ -1035,7 +1035,7 @@ test.serial("Set email", async (t) => { t.deepEqual(await request.json(), { email }); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -1060,7 +1060,7 @@ test.serial("Set email with custom request options", async (t) => { http.post("*/user-api/set-email", async ({ request }) => { t.is(request.headers.get("X-Custom"), "1"); - return HttpResponse.json(successResponse) + return HttpResponse.json(successResponse); }), ); @@ -1081,7 +1081,7 @@ test.serial("Set email with custom endpoint", async (t) => { server.use( http.post("*/custom/set-email", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -1099,7 +1099,7 @@ test.serial("Set email - deprecated version", async (t) => { server.use( http.post("*/custom/set-email", async () => - HttpResponse.json(successResponse) + HttpResponse.json(successResponse), ), ); @@ -1114,7 +1114,7 @@ test.serial("Handle error while set email", async (t) => { server.use( http.post("*/user-api/set-email", async () => - HttpResponse.text(null, { status: 400 }) + HttpResponse.text(null, { status: 400 }), ), ); diff --git a/packages/verification/tests/DrupalkitVerification.test.ts b/packages/verification/tests/DrupalkitVerification.test.ts index 2eafeed..55ac656 100644 --- a/packages/verification/tests/DrupalkitVerification.test.ts +++ b/packages/verification/tests/DrupalkitVerification.test.ts @@ -61,7 +61,7 @@ test.serial("Add Hash verification to a request once", async (t) => { t.not(request.headers.get("x-verification-hash"), hash); } - return HttpResponse.text() + return HttpResponse.text(); }), ); @@ -97,7 +97,7 @@ test.serial("Add Magic code verification to a request once", async (t) => { t.not(request.headers.get("x-verification-magic-code"), code); } - return HttpResponse.text() + return HttpResponse.text(); }), ); From 3235d515c0cee951fc989f509c4f22d7bd87856f Mon Sep 17 00:00:00 2001 From: Christian Foidl Date: Thu, 18 Jan 2024 16:27:37 +0100 Subject: [PATCH 3/5] chore: ran syncpack --- .github/workflows/main.yml | 5 +++++ package.json | 1 + packages/consumers/package.json | 2 +- packages/jsonapi/package.json | 2 +- packages/simple-oauth-auth-code/package.json | 2 +- packages/simple-oauth/package.json | 2 +- packages/verification/package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 8 files changed, 16 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 769c3ff..a26e4c9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -54,6 +54,11 @@ jobs: env: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} + - name: Syncpack + run: pnpm syncpack + env: + TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} + - name: Build run: pnpm build env: diff --git a/package.json b/package.json index c41a634..6a0f4d2 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "format:write": "prettier --write 'packages/*/**/*.{ts,tsx}' && syncpack format", "lint": "turbo run lint", "publish-packages": "turbo run test && turbo run export-version && turbo run build lint typecheck && changeset publish", + "syncpack": "syncpack lint", "test": "turbo run test", "test:watch": "turbo run test:watch", "typecheck": "turbo run typecheck", diff --git a/packages/consumers/package.json b/packages/consumers/package.json index 86dd37f..5b405d8 100644 --- a/packages/consumers/package.json +++ b/packages/consumers/package.json @@ -18,7 +18,7 @@ "rollup": "^4.9.5", "rollup-plugin-dts": "^6.1.0", "rollup-plugin-esbuild": "^6.1.0", - "ts-node": "^10.9.1", + "ts-node": "^10.9.2", "typescript": "5.3.3" }, "scripts": { diff --git a/packages/jsonapi/package.json b/packages/jsonapi/package.json index 8d700f0..1f271a1 100644 --- a/packages/jsonapi/package.json +++ b/packages/jsonapi/package.json @@ -22,7 +22,7 @@ "rollup": "^4.9.5", "rollup-plugin-dts": "^6.1.0", "rollup-plugin-esbuild": "^6.1.0", - "ts-node": "^10.9.1", + "ts-node": "^10.9.2", "typescript": "5.3.3" }, "scripts": { diff --git a/packages/simple-oauth-auth-code/package.json b/packages/simple-oauth-auth-code/package.json index 2b562ca..f94900c 100644 --- a/packages/simple-oauth-auth-code/package.json +++ b/packages/simple-oauth-auth-code/package.json @@ -19,7 +19,7 @@ "rollup": "^4.9.5", "rollup-plugin-dts": "^6.1.0", "rollup-plugin-esbuild": "^6.1.0", - "ts-node": "^10.9.1", + "ts-node": "^10.9.2", "typescript": "5.3.3" }, "scripts": { diff --git a/packages/simple-oauth/package.json b/packages/simple-oauth/package.json index 8a8666b..21991c6 100644 --- a/packages/simple-oauth/package.json +++ b/packages/simple-oauth/package.json @@ -19,7 +19,7 @@ "rollup": "^4.9.5", "rollup-plugin-dts": "^6.1.0", "rollup-plugin-esbuild": "^6.1.0", - "ts-node": "^10.9.1", + "ts-node": "^10.9.2", "typescript": "5.3.3" }, "scripts": { diff --git a/packages/verification/package.json b/packages/verification/package.json index 90c61cd..ce750f6 100644 --- a/packages/verification/package.json +++ b/packages/verification/package.json @@ -18,7 +18,7 @@ "rollup": "^4.9.5", "rollup-plugin-dts": "^6.1.0", "rollup-plugin-esbuild": "^6.1.0", - "ts-node": "^10.9.1", + "ts-node": "^10.9.2", "typescript": "5.3.3" }, "scripts": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 034982d..2508f15 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -120,7 +120,7 @@ importers: specifier: ^6.1.0 version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: - specifier: ^10.9.1 + specifier: ^10.9.2 version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: specifier: 5.3.3 @@ -239,7 +239,7 @@ importers: specifier: ^6.1.0 version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: - specifier: ^10.9.1 + specifier: ^10.9.2 version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: specifier: 5.3.3 @@ -288,7 +288,7 @@ importers: specifier: ^6.1.0 version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: - specifier: ^10.9.1 + specifier: ^10.9.2 version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: specifier: 5.3.3 @@ -337,7 +337,7 @@ importers: specifier: ^6.1.0 version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: - specifier: ^10.9.1 + specifier: ^10.9.2 version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: specifier: 5.3.3 @@ -450,7 +450,7 @@ importers: specifier: ^6.1.0 version: 6.1.0(esbuild@0.19.11)(rollup@4.9.5) ts-node: - specifier: ^10.9.1 + specifier: ^10.9.2 version: 10.9.2(@swc/core@1.3.104)(@types/node@20.11.5)(typescript@5.3.3) typescript: specifier: 5.3.3 From d85f708450a17e9e9d47365a12c8d3f47eb441a8 Mon Sep 17 00:00:00 2001 From: Christian Foidl Date: Thu, 18 Jan 2024 16:33:19 +0100 Subject: [PATCH 4/5] chore: update flake inputs; use nodejs 20 --- flake.lock | 51 ++++++++------------------------------------------- flake.nix | 18 ++++++++++-------- 2 files changed, 18 insertions(+), 51 deletions(-) diff --git a/flake.lock b/flake.lock index f70b42d..1c72a4f 100644 --- a/flake.lock +++ b/flake.lock @@ -2,16 +2,16 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1690927903, - "narHash": "sha256-D5gCaCROnjEKDOel//8TO/pOP87pAEtT0uT8X+0Bj/U=", + "lastModified": 1705331948, + "narHash": "sha256-qjQXfvrAT1/RKDFAMdl8Hw3m4tLVvMCc8fMqzJv0pP4=", "owner": "nixos", "repo": "nixpkgs", - "rev": "bd836ac5e5a7358dea73cb74a013ca32864ccb86", + "rev": "b8dd8be3c790215716e7c12b247f45ca525867e2", "type": "github" }, "original": { "owner": "nixos", - "ref": "nixos-23.05", + "ref": "nixos-23.11", "repo": "nixpkgs", "type": "github" } @@ -32,27 +32,10 @@ "type": "github" } }, - "nixpkgs_3": { - "locked": { - "lastModified": 1689605451, - "narHash": "sha256-u2qp2k9V1smCfk6rdUcgMKvBj3G9jVvaPHyeXinjN9E=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "53657afe29748b3e462f1f892287b7e254c26d77", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-23.05", - "repo": "nixpkgs", - "type": "github" - } - }, "root": { "inputs": { "nixpkgs": "nixpkgs", - "ww-node-overlays": "ww-node-overlays", - "ww-utils": "ww-utils" + "ww-node-overlays": "ww-node-overlays" } }, "ww-node-overlays": { @@ -60,11 +43,11 @@ "nixpkgs": "nixpkgs_2" }, "locked": { - "lastModified": 1689694074, - "narHash": "sha256-jnt1aQxF2ff4t+W2dI7mobK4lXmWNW3kZllTxwsGGRo=", + "lastModified": 1705564223, + "narHash": "sha256-/8kGYJgloKWXX4wmX5lTZKX/ZO5y74Kx73Tee9wmXs0=", "owner": "wunderwerkio", "repo": "nix-node-packages-overlays", - "rev": "7e373c49f0cbda4f558ba4c3d67ae83f60a4aa3c", + "rev": "eb10cd160566ea4df1ac414ed0c056a09ed77391", "type": "github" }, "original": { @@ -72,24 +55,6 @@ "repo": "nix-node-packages-overlays", "type": "github" } - }, - "ww-utils": { - "inputs": { - "nixpkgs": "nixpkgs_3" - }, - "locked": { - "lastModified": 1689680157, - "narHash": "sha256-EHuuswdDYzC2KZn/wkicMSNFlPNMNGmr7WERiv6+aIg=", - "owner": "wunderwerkio", - "repo": "nix-ww-utils", - "rev": "707584d9ce59a907621eb02f7bf2e1dc1a0dbb80", - "type": "github" - }, - "original": { - "owner": "wunderwerkio", - "repo": "nix-ww-utils", - "type": "github" - } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 62e27f7..18f4f13 100644 --- a/flake.nix +++ b/flake.nix @@ -1,21 +1,23 @@ { inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11"; ww-node-overlays.url = "github:wunderwerkio/nix-node-packages-overlays"; - ww-utils.url = "github:wunderwerkio/nix-ww-utils"; }; outputs = { self, nixpkgs, ww-node-overlays, - ww-utils, - }: { - devShells = ww-utils.lib.forEachWunderwerkSystem ( + }: let + forEachSystem = nixpkgs.lib.genAttrs [ + "x86_64-linux" "aarch64-linux" + "x86_64-darwin" "aarch64-darwin" + ]; + in { + devShells = forEachSystem ( system: let overlays = with ww-node-overlays.overlays; [ pnpm - vercel ]; pkgs = import nixpkgs { inherit system overlays; @@ -23,7 +25,7 @@ in rec { default = pkgs.mkShell { buildInputs = with pkgs; [ - nodejs-18_x + nodejs_20 nodePackages.pnpm-latest ]; @@ -31,7 +33,7 @@ } ); - formatter = ww-utils.lib.forEachWunderwerkSystem ( + formatter = forEachSystem ( system: nixpkgs.legacyPackages.${system}.alejandra ); From 871157464d8658fba1aff65d1a174612366cec2a Mon Sep 17 00:00:00 2001 From: Christian Foidl Date: Thu, 18 Jan 2024 16:34:19 +0100 Subject: [PATCH 5/5] chore: add changeset --- .changeset/plenty-toes-drum.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .changeset/plenty-toes-drum.md diff --git a/.changeset/plenty-toes-drum.md b/.changeset/plenty-toes-drum.md new file mode 100644 index 0000000..9f64fd3 --- /dev/null +++ b/.changeset/plenty-toes-drum.md @@ -0,0 +1,15 @@ +--- +"@drupal-kit/simple-oauth-auth-code": patch +"@drupal-kit/config-typescript": patch +"@drupal-kit/config-prettier": patch +"@drupal-kit/eslint-config": patch +"@drupal-kit/simple-oauth": patch +"@drupal-kit/verification": patch +"@drupal-kit/consumers": patch +"@drupal-kit/user-api": patch +"@drupal-kit/jsonapi": patch +"@drupal-kit/types": patch +"@drupal-kit/core": patch +--- + +Update all dependencies; Update to nodejs 20 for dev / test / ci environment.