From dc040ba41cd6d66fa63b33ed1adfc80f7e6a6861 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 5 Jan 2022 15:38:43 +0100 Subject: update dependencies to fix rollup issue --- package.json | 8 +- packages/anastasis-core/package.json | 12 +- packages/anastasis-webui/package.json | 8 +- packages/idb-bridge/package.json | 8 +- packages/idb-bridge/src/idbtypes.ts | 5 +- packages/idb-bridge/src/util/validateKeyPath.ts | 2 +- packages/pogen/package.json | 4 +- packages/taler-util/package.json | 10 +- packages/taler-wallet-cli/package.json | 14 +- packages/taler-wallet-cli/src/harness/harness.ts | 6 +- packages/taler-wallet-core/package.json | 35 +- packages/taler-wallet-embedded/package.json | 10 +- packages/taler-wallet-webextension/package.json | 14 +- .../taler-wallet-webextension/src/wxBackend.ts | 4 +- pnpm-lock.yaml | 3762 +++++++++++--------- 15 files changed, 2064 insertions(+), 1838 deletions(-) diff --git a/package.json b/package.json index e00de0c53..d5a5fd848 100644 --- a/package.json +++ b/package.json @@ -8,9 +8,9 @@ "check": "pnpm run --filter '{packages}' --if-present test" }, "devDependencies": { - "@linaria/esbuild": "^3.0.0-beta.13", - "@linaria/shaker": "^3.0.0-beta.13", - "esbuild": "^0.12.29", - "prettier": "^2.4.1" + "@linaria/esbuild": "^3.0.0-beta.15", + "@linaria/shaker": "^3.0.0-beta.15", + "esbuild": "^0.14.10", + "prettier": "^2.5.1" } } diff --git a/packages/anastasis-core/package.json b/packages/anastasis-core/package.json index a828e871b..a7a4e31e0 100644 --- a/packages/anastasis-core/package.json +++ b/packages/anastasis-core/package.json @@ -22,18 +22,18 @@ "@rollup/plugin-node-resolve": "^13.0.6", "ava": "^3.15.0", "rimraf": "^3.0.2", - "rollup": "^2.59.0", + "rollup": "^2.63.0", "rollup-plugin-sourcemaps": "^0.6.3", - "source-map-support": "^0.5.19", - "typescript": "^4.4.4" + "source-map-support": "^0.5.21", + "typescript": "^4.5.4" }, "dependencies": { "@gnu-taler/taler-util": "workspace:*", "fetch-ponyfill": "^7.1.0", - "fflate": "^0.6.0", + "fflate": "^0.7.2", "hash-wasm": "^4.9.0", - "node-fetch": "^3.0.0", - "tslib": "^2.1.0" + "node-fetch": "^3.1.0", + "tslib": "^2.3.1" }, "ava": { "files": [ diff --git a/packages/anastasis-webui/package.json b/packages/anastasis-webui/package.json index b96c0f351..71793550e 100644 --- a/packages/anastasis-webui/package.json +++ b/packages/anastasis-webui/package.json @@ -26,10 +26,10 @@ ] }, "dependencies": { - "@gnu-taler/taler-util": "workspace:*", "@gnu-taler/anastasis-core": "workspace:*", + "@gnu-taler/taler-util": "workspace:*", "base64-inline-loader": "1.1.1", - "date-fns": "2.25.0", + "date-fns": "2.28.0", "jed": "1.1.1", "preact": "^10.5.15", "preact-render-to-string": "^5.1.19", @@ -44,7 +44,7 @@ "@storybook/addon-links": "^6.3.12", "@storybook/preact": "^6.3.12", "@storybook/preset-scss": "^1.0.3", - "@types/enzyme": "^3.10.10", + "@types/enzyme": "^3.10.11", "@typescript-eslint/eslint-plugin": "^5.3.0", "@typescript-eslint/parser": "^5.3.0", "bulma": "^0.9.3", @@ -59,6 +59,6 @@ "sass": "1.32.13", "sass-loader": "^10", "sirv-cli": "^1.0.14", - "typescript": "^4.4.4" + "typescript": "^4.5.4" } } diff --git a/packages/idb-bridge/package.json b/packages/idb-bridge/package.json index 52bc872da..42cdea093 100644 --- a/packages/idb-bridge/package.json +++ b/packages/idb-bridge/package.json @@ -19,16 +19,16 @@ "@rollup/plugin-commonjs": "^17.1.0", "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-node-resolve": "^11.2.0", - "@types/node": "^14.14.22", + "@types/node": "^17.0.8", "ava": "^3.15.0", "esm": "^3.2.25", "prettier": "^2.2.1", "rimraf": "^3.0.2", - "rollup": "^2.37.1", - "typescript": "^4.1.3" + "rollup": "^2.63.0", + "typescript": "^4.5.4" }, "dependencies": { - "tslib": "^2.1.0" + "tslib": "^2.3.1" }, "ava": { "require": [ diff --git a/packages/idb-bridge/src/idbtypes.ts b/packages/idb-bridge/src/idbtypes.ts index fe9003d6d..5fc58e88b 100644 --- a/packages/idb-bridge/src/idbtypes.ts +++ b/packages/idb-bridge/src/idbtypes.ts @@ -267,7 +267,7 @@ export interface IDBCursor { /** * Returns the IDBObjectStore or IDBIndex the cursor was opened from. */ - readonly source: IDBObjectStore | IDBIndex; + readonly source: IDBObjectStore | IDBIndex | IDBCursor; /** * Advances the cursor through the next count records in range. */ @@ -820,7 +820,7 @@ export interface IDBTransaction extends EventTarget { /** * If the transaction was aborted, returns the error (a DOMException) providing the reason. */ - readonly error: DOMException; + readonly error: DOMException | null; /** * Returns the mode the transaction was created with ("readonly" or "readwrite"), or "versionchange" for an upgrade transaction. */ @@ -836,6 +836,7 @@ export interface IDBTransaction extends EventTarget { * Aborts the transaction. All pending requests will fail with a "AbortError" DOMException and all changes made to the database will be reverted. */ abort(): void; + commit(): void; /** * Returns an IDBObjectStore in the transaction's scope. */ diff --git a/packages/idb-bridge/src/util/validateKeyPath.ts b/packages/idb-bridge/src/util/validateKeyPath.ts index 3bbe653b6..8c29c1d57 100644 --- a/packages/idb-bridge/src/util/validateKeyPath.ts +++ b/packages/idb-bridge/src/util/validateKeyPath.ts @@ -46,7 +46,7 @@ export const validateKeyPath = ( if (myKeyPath.length >= 1 && validIdentifierRegex.test(myKeyPath)) { return; } - } catch (err) { + } catch (err: any) { throw new SyntaxError(err.message); } if (myKeyPath.indexOf(" ") >= 0) { diff --git a/packages/pogen/package.json b/packages/pogen/package.json index 3d744f736..34c5e6a38 100644 --- a/packages/pogen/package.json +++ b/packages/pogen/package.json @@ -11,9 +11,9 @@ "compile": "tsc" }, "devDependencies": { - "typescript": "^4.1.3" + "typescript": "^4.5.4" }, "dependencies": { - "@types/node": "^14.14.22" + "@types/node": "^17.0.8" } } diff --git a/packages/taler-util/package.json b/packages/taler-util/package.json index f8918b48d..c61c721d8 100644 --- a/packages/taler-util/package.json +++ b/packages/taler-util/package.json @@ -32,17 +32,17 @@ "pretty": "prettier --write src" }, "devDependencies": { - "@types/node": "^14.14.22", + "@types/node": "^17.0.8", "ava": "^3.15.0", - "esbuild": "^0.9.2", + "esbuild": "^0.14.10", "prettier": "^2.2.1", "rimraf": "^3.0.2", - "typescript": "^4.2.3" + "typescript": "^4.5.4" }, "dependencies": { - "big-integer": "^1.6.48", + "big-integer": "^1.6.51", "jed": "^1.1.1", - "tslib": "^2.1.0" + "tslib": "^2.3.1" }, "ava": { "files": [ diff --git a/packages/taler-wallet-cli/package.json b/packages/taler-wallet-cli/package.json index 4e813fcb7..e38112bb1 100644 --- a/packages/taler-wallet-cli/package.json +++ b/packages/taler-wallet-cli/package.json @@ -34,21 +34,21 @@ "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-node-resolve": "^11.1.0", "@rollup/plugin-replace": "^2.3.4", - "@types/node": "^14.14.22", + "@types/node": "^17.0.8", "prettier": "^2.2.1", "rimraf": "^3.0.2", - "rollup": "^2.37.1", + "rollup": "^2.63.0", "rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-terser": "^7.0.2", - "typedoc": "^0.20.16", - "typescript": "^4.1.3" + "typedoc": "^0.22.10", + "typescript": "^4.5.4" }, "dependencies": { "@gnu-taler/taler-util": "workspace:*", "@gnu-taler/taler-wallet-core": "workspace:*", - "axios": "^0.21.1", + "axios": "^0.24.0", "cancellationtoken": "^2.2.0", - "source-map-support": "^0.5.19", - "tslib": "^2.1.0" + "source-map-support": "^0.5.21", + "tslib": "^2.3.1" } } \ No newline at end of file diff --git a/packages/taler-wallet-cli/src/harness/harness.ts b/packages/taler-wallet-cli/src/harness/harness.ts index 37a192db6..0f2e61a3d 100644 --- a/packages/taler-wallet-cli/src/harness/harness.ts +++ b/packages/taler-wallet-cli/src/harness/harness.ts @@ -1609,7 +1609,7 @@ export namespace MerchantPrivateApi { const baseUrl = merchantService.makeInstanceBaseUrl(instanceName); let url = new URL("private/orders", baseUrl); const resp = await axios.post(url.href, req, { - headers: withAuthorization, + headers: withAuthorization as Record, }); return codecForPostOrderResponse().decode(resp.data); } @@ -1626,7 +1626,9 @@ export namespace MerchantPrivateApi { if (query.sessionId) { reqUrl.searchParams.set("session_id", query.sessionId); } - const resp = await axios.get(reqUrl.href, { headers: withAuthorization }); + const resp = await axios.get(reqUrl.href, { + headers: withAuthorization as Record, + }); return codecForMerchantOrderPrivateStatusResponse().decode(resp.data); } diff --git a/packages/taler-wallet-core/package.json b/packages/taler-wallet-core/package.json index 9f0fafdd5..3598fcc8c 100644 --- a/packages/taler-wallet-core/package.json +++ b/packages/taler-wallet-core/package.json @@ -39,40 +39,39 @@ "devDependencies": { "@ava/typescript": "^1.1.1", "@gnu-taler/pogen": "workspace:*", - "@microsoft/api-extractor": "^7.13.0", "@typescript-eslint/eslint-plugin": "^4.14.0", "@typescript-eslint/parser": "^4.14.0", "ava": "^3.15.0", - "eslint": "^7.18.0", - "eslint-config-airbnb-typescript": "^12.0.0", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-jsx-a11y": "^6.4.1", - "eslint-plugin-react": "^7.22.0", - "eslint-plugin-react-hooks": "^4.2.0", + "eslint": "^8.6.0", + "eslint-config-airbnb-typescript": "^16.1.0", + "eslint-plugin-import": "^2.25.4", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.28.0", + "eslint-plugin-react-hooks": "^4.3.0", "jed": "^1.1.1", "nyc": "^15.1.0", "po2json": "^0.4.5", - "prettier": "^2.2.1", + "prettier": "^2.5.1", "rimraf": "^3.0.2", - "rollup": "^2.38", + "rollup": "^2.63.0", "rollup-plugin-sourcemaps": "^0.6.3", "source-map-resolve": "^0.6.0", - "typedoc": "^0.20.16", - "typescript": "^4.4.4" + "typedoc": "^0.22.10", + "typescript": "^4.5.4" }, "dependencies": { "@gnu-taler/idb-bridge": "workspace:*", "@gnu-taler/taler-util": "workspace:*", - "@types/node": "^14.14.22", - "axios": "^0.21.1", - "big-integer": "^1.6.48", - "fflate": "^0.6.0", - "source-map-support": "^0.5.19", - "tslib": "^2.1.0" + "@types/node": "^17.0.8", + "axios": "^0.24.0", + "big-integer": "^1.6.51", + "fflate": "^0.7.2", + "source-map-support": "^0.5.21", + "tslib": "^2.3.1" }, "ava": { "files": [ "lib/**/*test.*" ] } -} \ No newline at end of file +} diff --git a/packages/taler-wallet-embedded/package.json b/packages/taler-wallet-embedded/package.json index 632e21e5d..aed135912 100644 --- a/packages/taler-wallet-embedded/package.json +++ b/packages/taler-wallet-embedded/package.json @@ -31,17 +31,17 @@ "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-node-resolve": "^11.1.0", "@rollup/plugin-replace": "^2.3.4", - "@types/node": "^14.14.22", + "@types/node": "^17.0.8", "prettier": "^2.2.1", "rimraf": "^3.0.2", - "rollup": "^2.43.0", + "rollup": "^2.63.0", "rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-terser": "^7.0.2", - "typescript": "^4.2.3" + "typescript": "^4.5.4" }, "dependencies": { - "@gnu-taler/taler-wallet-core": "workspace:*", "@gnu-taler/taler-util": "workspace:*", - "tslib": "^2.1.0" + "@gnu-taler/taler-wallet-core": "workspace:*", + "tslib": "^2.3.1" } } diff --git a/packages/taler-wallet-webextension/package.json b/packages/taler-wallet-webextension/package.json index 179cd94db..b0fb3f12d 100644 --- a/packages/taler-wallet-webextension/package.json +++ b/packages/taler-wallet-webextension/package.json @@ -20,12 +20,12 @@ "dependencies": { "@gnu-taler/taler-util": "workspace:*", "@gnu-taler/taler-wallet-core": "workspace:*", - "date-fns": "^2.22.1", + "date-fns": "^2.28.0", "history": "4.10.1", "preact": "^10.5.13", "preact-router": "^3.2.1", "qrcode-generator": "^1.4.4", - "tslib": "^2.1.0" + "tslib": "^2.3.1" }, "devDependencies": { "@babel/core": "7.13.16", @@ -48,10 +48,10 @@ "@storybook/preact": "6.4.9", "@testing-library/preact": "^2.0.1", "@testing-library/preact-hooks": "^1.1.0", - "@types/chrome": "^0.0.128", + "@types/chrome": "^0.0.174", "@types/history": "^4.7.8", "@types/mocha": "^9.0.0", - "@types/node": "^14.14.22", + "@types/node": "^17.0.8", "ava": "3.15.0", "babel-loader": "^8.2.2", "babel-plugin-transform-react-jsx": "^6.24.1", @@ -60,13 +60,13 @@ "preact-cli": "^3.0.5", "preact-render-to-string": "^5.1.19", "rimraf": "^3.0.2", - "rollup": "^2.37.1", + "rollup": "^2.63.0", "rollup-plugin-css-only": "^3.1.0", - "rollup-plugin-ignore": "^1.0.9", + "rollup-plugin-ignore": "^1.0.10", "rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-terser": "^7.0.2", "storybook-dark-mode": "^1.0.8", - "typescript": "^4.1.3" + "typescript": "^4.5.4" }, "nyc": { "include": [ diff --git a/packages/taler-wallet-webextension/src/wxBackend.ts b/packages/taler-wallet-webextension/src/wxBackend.ts index df3115246..79280b927 100644 --- a/packages/taler-wallet-webextension/src/wxBackend.ts +++ b/packages/taler-wallet-webextension/src/wxBackend.ts @@ -239,8 +239,8 @@ function makeSyncWalletRedirect( } export type MessageFromBackend = { - type: NotificationType -} + type: NotificationType; +}; async function reinitWallet(): Promise { if (currentWallet) { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 54d3d18fd..3cb20f020 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,15 +4,15 @@ importers: .: specifiers: - '@linaria/esbuild': ^3.0.0-beta.13 - '@linaria/shaker': ^3.0.0-beta.13 - esbuild: ^0.12.29 - prettier: ^2.4.1 + '@linaria/esbuild': ^3.0.0-beta.15 + '@linaria/shaker': ^3.0.0-beta.15 + esbuild: ^0.14.10 + prettier: ^2.5.1 devDependencies: - '@linaria/esbuild': 3.0.0-beta.13 - '@linaria/shaker': 3.0.0-beta.13 - esbuild: 0.12.29 - prettier: 2.4.1 + '@linaria/esbuild': 3.0.0-beta.15 + '@linaria/shaker': 3.0.0-beta.15 + esbuild: 0.14.10 + prettier: 2.5.1 packages/anastasis-core: specifiers: @@ -22,32 +22,32 @@ importers: '@rollup/plugin-node-resolve': ^13.0.6 ava: ^3.15.0 fetch-ponyfill: ^7.1.0 - fflate: ^0.6.0 + fflate: ^0.7.2 hash-wasm: ^4.9.0 - node-fetch: ^3.0.0 + node-fetch: ^3.1.0 rimraf: ^3.0.2 - rollup: ^2.59.0 + rollup: ^2.63.0 rollup-plugin-sourcemaps: ^0.6.3 - source-map-support: ^0.5.19 - tslib: ^2.1.0 - typescript: ^4.4.4 + source-map-support: ^0.5.21 + tslib: ^2.3.1 + typescript: ^4.5.4 dependencies: '@gnu-taler/taler-util': link:../taler-util fetch-ponyfill: 7.1.0 - fflate: 0.6.0 + fflate: 0.7.2 hash-wasm: 4.9.0 - node-fetch: 3.0.0 + node-fetch: 3.1.0 tslib: 2.3.1 devDependencies: - '@rollup/plugin-commonjs': 21.0.1_rollup@2.59.0 - '@rollup/plugin-json': 4.1.0_rollup@2.59.0 - '@rollup/plugin-node-resolve': 13.0.6_rollup@2.59.0 + '@rollup/plugin-commonjs': 21.0.1_rollup@2.63.0 + '@rollup/plugin-json': 4.1.0_rollup@2.63.0 + '@rollup/plugin-node-resolve': 13.0.6_rollup@2.63.0 ava: 3.15.0 rimraf: 3.0.2 - rollup: 2.59.0 - rollup-plugin-sourcemaps: 0.6.3_rollup@2.59.0 - source-map-support: 0.5.19 - typescript: 4.4.4 + rollup: 2.63.0 + rollup-plugin-sourcemaps: 0.6.3_rollup@2.63.0 + source-map-support: 0.5.21 + typescript: 4.5.4 packages/anastasis-webui: specifiers: @@ -60,14 +60,14 @@ importers: '@storybook/addon-links': ^6.3.12 '@storybook/preact': ^6.3.12 '@storybook/preset-scss': ^1.0.3 - '@types/enzyme': ^3.10.10 + '@types/enzyme': ^3.10.11 '@typescript-eslint/eslint-plugin': ^5.3.0 '@typescript-eslint/parser': ^5.3.0 base64-inline-loader: 1.1.1 bulma: ^0.9.3 bulma-checkbox: ^1.1.1 bulma-radio: ^1.1.1 - date-fns: 2.25.0 + date-fns: 2.28.0 enzyme: ^3.11.0 enzyme-adapter-preact-pure: ^3.2.0 eslint: ^8.1.0 @@ -82,12 +82,12 @@ importers: sass: 1.32.13 sass-loader: ^10 sirv-cli: ^1.0.14 - typescript: ^4.4.4 + typescript: ^4.5.4 dependencies: '@gnu-taler/anastasis-core': link:../anastasis-core '@gnu-taler/taler-util': link:../taler-util base64-inline-loader: 1.1.1 - date-fns: 2.25.0 + date-fns: 2.28.0 jed: 1.1.1 preact: 10.5.15 preact-render-to-string: 5.1.19_preact@10.5.15 @@ -97,85 +97,85 @@ importers: '@creativebulma/bulma-tooltip': 1.2.0 '@storybook/addon-a11y': 6.3.12 '@storybook/addon-actions': 6.3.12 - '@storybook/addon-essentials': 6.3.12_eslint@8.1.0+typescript@4.4.4 + '@storybook/addon-essentials': 6.3.12_eslint@8.1.0+typescript@4.5.4 '@storybook/addon-links': 6.3.12 - '@storybook/preact': 6.3.12_95076c79c13120062fc2121e56d666e8 + '@storybook/preact': 6.3.12_1ac846e50fb89c4b9521a3038bddbbd4 '@storybook/preset-scss': 1.0.3_sass-loader@10.2.0 - '@types/enzyme': 3.10.10 - '@typescript-eslint/eslint-plugin': 5.3.0_f8873316f48f7781ccc3e081fc76e214 - '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.4.4 + '@types/enzyme': 3.10.11 + '@typescript-eslint/eslint-plugin': 5.3.0_87085621a6d65a3070a3ec0bccad048f + '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.5.4 bulma: 0.9.3 bulma-checkbox: 1.1.1 bulma-radio: 1.1.1 enzyme: 3.11.0 enzyme-adapter-preact-pure: 3.2.0_enzyme@3.11.0+preact@10.5.15 eslint: 8.1.0 - eslint-config-preact: 1.2.0_eslint@8.1.0+typescript@4.4.4 + eslint-config-preact: 1.2.0_eslint@8.1.0+typescript@4.5.4 jssha: 3.2.0 preact-cli: 3.3.1_bb0f676d04cdcea3d812adbcf5208138 sass: 1.32.13 sass-loader: 10.2.0_sass@1.32.13 sirv-cli: 1.0.14 - typescript: 4.4.4 + typescript: 4.5.4 packages/idb-bridge: specifiers: '@rollup/plugin-commonjs': ^17.1.0 '@rollup/plugin-json': ^4.1.0 '@rollup/plugin-node-resolve': ^11.2.0 - '@types/node': ^14.14.22 + '@types/node': ^17.0.8 ava: ^3.15.0 esm: ^3.2.25 prettier: ^2.2.1 rimraf: ^3.0.2 - rollup: ^2.37.1 - tslib: ^2.1.0 - typescript: ^4.1.3 + rollup: ^2.63.0 + tslib: ^2.3.1 + typescript: ^4.5.4 dependencies: - tslib: 2.1.0 + tslib: 2.3.1 devDependencies: - '@rollup/plugin-commonjs': 17.1.0_rollup@2.37.1 - '@rollup/plugin-json': 4.1.0_rollup@2.37.1 - '@rollup/plugin-node-resolve': 11.2.0_rollup@2.37.1 - '@types/node': 14.14.22 + '@rollup/plugin-commonjs': 17.1.0_rollup@2.63.0 + '@rollup/plugin-json': 4.1.0_rollup@2.63.0 + '@rollup/plugin-node-resolve': 11.2.0_rollup@2.63.0 + '@types/node': 17.0.8 ava: 3.15.0 esm: 3.2.25 prettier: 2.2.1 rimraf: 3.0.2 - rollup: 2.37.1 - typescript: 4.1.3 + rollup: 2.63.0 + typescript: 4.5.4 packages/pogen: specifiers: - '@types/node': ^14.14.22 - typescript: ^4.1.3 + '@types/node': ^17.0.8 + typescript: ^4.5.4 dependencies: - '@types/node': 14.14.22 + '@types/node': 17.0.8 devDependencies: - typescript: 4.1.3 + typescript: 4.5.4 packages/taler-util: specifiers: - '@types/node': ^14.14.22 + '@types/node': ^17.0.8 ava: ^3.15.0 - big-integer: ^1.6.48 - esbuild: ^0.9.2 + big-integer: ^1.6.51 + esbuild: ^0.14.10 jed: ^1.1.1 prettier: ^2.2.1 rimraf: ^3.0.2 - tslib: ^2.1.0 - typescript: ^4.2.3 + tslib: ^2.3.1 + typescript: ^4.5.4 dependencies: - big-integer: 1.6.48 + big-integer: 1.6.51 jed: 1.1.1 - tslib: 2.1.0 + tslib: 2.3.1 devDependencies: - '@types/node': 14.14.34 + '@types/node': 17.0.8 ava: 3.15.0 - esbuild: 0.9.2 + esbuild: 0.14.10 prettier: 2.2.1 rimraf: 3.0.2 - typescript: 4.2.3 + typescript: 4.5.4 packages/taler-wallet-cli: specifiers: @@ -185,38 +185,38 @@ importers: '@rollup/plugin-json': ^4.1.0 '@rollup/plugin-node-resolve': ^11.1.0 '@rollup/plugin-replace': ^2.3.4 - '@types/node': ^14.14.22 - axios: ^0.21.1 + '@types/node': ^17.0.8 + axios: ^0.24.0 cancellationtoken: ^2.2.0 prettier: ^2.2.1 rimraf: ^3.0.2 - rollup: ^2.37.1 + rollup: ^2.63.0 rollup-plugin-sourcemaps: ^0.6.3 rollup-plugin-terser: ^7.0.2 - source-map-support: ^0.5.19 - tslib: ^2.1.0 - typedoc: ^0.20.16 - typescript: ^4.1.3 + source-map-support: ^0.5.21 + tslib: ^2.3.1 + typedoc: ^0.22.10 + typescript: ^4.5.4 dependencies: '@gnu-taler/taler-util': link:../taler-util '@gnu-taler/taler-wallet-core': link:../taler-wallet-core - axios: 0.21.1 + axios: 0.24.0 cancellationtoken: 2.2.0 - source-map-support: 0.5.19 - tslib: 2.1.0 + source-map-support: 0.5.21 + tslib: 2.3.1 devDependencies: - '@rollup/plugin-commonjs': 17.0.0_rollup@2.37.1 - '@rollup/plugin-json': 4.1.0_rollup@2.37.1 - '@rollup/plugin-node-resolve': 11.1.0_rollup@2.37.1 - '@rollup/plugin-replace': 2.3.4_rollup@2.37.1 - '@types/node': 14.14.22 + '@rollup/plugin-commonjs': 17.0.0_rollup@2.63.0 + '@rollup/plugin-json': 4.1.0_rollup@2.63.0 + '@rollup/plugin-node-resolve': 11.1.0_rollup@2.63.0 + '@rollup/plugin-replace': 2.3.4_rollup@2.63.0 + '@types/node': 17.0.8 prettier: 2.2.1 rimraf: 3.0.2 - rollup: 2.37.1 - rollup-plugin-sourcemaps: 0.6.3_38ff52cc32daa1ae80c428f8a47a4e22 - rollup-plugin-terser: 7.0.2_rollup@2.37.1 - typedoc: 0.20.16_typescript@4.1.3 - typescript: 4.1.3 + rollup: 2.63.0 + rollup-plugin-sourcemaps: 0.6.3_@types+node@17.0.8+rollup@2.63.0 + rollup-plugin-terser: 7.0.2_rollup@2.63.0 + typedoc: 0.22.10_typescript@4.5.4 + typescript: 4.5.4 packages/taler-wallet-core: specifiers: @@ -224,64 +224,62 @@ importers: '@gnu-taler/idb-bridge': workspace:* '@gnu-taler/pogen': workspace:* '@gnu-taler/taler-util': workspace:* - '@microsoft/api-extractor': ^7.13.0 - '@types/node': ^14.14.22 + '@types/node': ^17.0.8 '@typescript-eslint/eslint-plugin': ^4.14.0 '@typescript-eslint/parser': ^4.14.0 ava: ^3.15.0 - axios: ^0.21.1 - big-integer: ^1.6.48 - eslint: ^7.18.0 - eslint-config-airbnb-typescript: ^12.0.0 - eslint-plugin-import: ^2.22.1 - eslint-plugin-jsx-a11y: ^6.4.1 - eslint-plugin-react: ^7.22.0 - eslint-plugin-react-hooks: ^4.2.0 - fflate: ^0.6.0 + axios: ^0.24.0 + big-integer: ^1.6.51 + eslint: ^8.6.0 + eslint-config-airbnb-typescript: ^16.1.0 + eslint-plugin-import: ^2.25.4 + eslint-plugin-jsx-a11y: ^6.5.1 + eslint-plugin-react: ^7.28.0 + eslint-plugin-react-hooks: ^4.3.0 + fflate: ^0.7.2 jed: ^1.1.1 nyc: ^15.1.0 po2json: ^0.4.5 - prettier: ^2.2.1 + prettier: ^2.5.1 rimraf: ^3.0.2 - rollup: ^2.38 + rollup: ^2.63.0 rollup-plugin-sourcemaps: ^0.6.3 source-map-resolve: ^0.6.0 - source-map-support: ^0.5.19 - tslib: ^2.1.0 - typedoc: ^0.20.16 - typescript: ^4.4.4 + source-map-support: ^0.5.21 + tslib: ^2.3.1 + typedoc: ^0.22.10 + typescript: ^4.5.4 dependencies: '@gnu-taler/idb-bridge': link:../idb-bridge '@gnu-taler/taler-util': link:../taler-util - '@types/node': 14.14.22 - axios: 0.21.1 - big-integer: 1.6.48 - fflate: 0.6.0 - source-map-support: 0.5.19 - tslib: 2.1.0 + '@types/node': 17.0.8 + axios: 0.24.0 + big-integer: 1.6.51 + fflate: 0.7.2 + source-map-support: 0.5.21 + tslib: 2.3.1 devDependencies: '@ava/typescript': 1.1.1 '@gnu-taler/pogen': link:../pogen - '@microsoft/api-extractor': 7.13.0 - '@typescript-eslint/eslint-plugin': 4.14.0_4f40ec8f9ae74407a8c29890901bb23f - '@typescript-eslint/parser': 4.14.0_eslint@7.18.0+typescript@4.4.4 + '@typescript-eslint/eslint-plugin': 4.14.0_922de0b5263f311c929bd8e920f3168c + '@typescript-eslint/parser': 4.14.0_eslint@8.6.0+typescript@4.5.4 ava: 3.15.0 - eslint: 7.18.0 - eslint-config-airbnb-typescript: 12.0.0_b55a7168bd2ecdf8767ddb224d20fd7e - eslint-plugin-import: 2.22.1_eslint@7.18.0 - eslint-plugin-jsx-a11y: 6.4.1_eslint@7.18.0 - eslint-plugin-react: 7.22.0_eslint@7.18.0 - eslint-plugin-react-hooks: 4.2.0_eslint@7.18.0 + eslint: 8.6.0 + eslint-config-airbnb-typescript: 16.1.0_cdb8eb15e4ab1b8dac7bce7d26823291 + eslint-plugin-import: 2.25.4_eslint@8.6.0 + eslint-plugin-jsx-a11y: 6.5.1_eslint@8.6.0 + eslint-plugin-react: 7.28.0_eslint@8.6.0 + eslint-plugin-react-hooks: 4.3.0_eslint@8.6.0 jed: 1.1.1 nyc: 15.1.0 po2json: 0.4.5 - prettier: 2.2.1 + prettier: 2.5.1 rimraf: 3.0.2 - rollup: 2.59.0 - rollup-plugin-sourcemaps: 0.6.3_57eeb328ceff0756ae1d32f4d22d60f9 + rollup: 2.63.0 + rollup-plugin-sourcemaps: 0.6.3_@types+node@17.0.8+rollup@2.63.0 source-map-resolve: 0.6.0 - typedoc: 0.20.16_typescript@4.4.4 - typescript: 4.4.4 + typedoc: 0.22.10_typescript@4.5.4 + typescript: 4.5.4 packages/taler-wallet-embedded: specifiers: @@ -291,30 +289,30 @@ importers: '@rollup/plugin-json': ^4.1.0 '@rollup/plugin-node-resolve': ^11.1.0 '@rollup/plugin-replace': ^2.3.4 - '@types/node': ^14.14.22 + '@types/node': ^17.0.8 prettier: ^2.2.1 rimraf: ^3.0.2 - rollup: ^2.43.0 + rollup: ^2.63.0 rollup-plugin-sourcemaps: ^0.6.3 rollup-plugin-terser: ^7.0.2 - tslib: ^2.1.0 - typescript: ^4.2.3 + tslib: ^2.3.1 + typescript: ^4.5.4 dependencies: '@gnu-taler/taler-util': link:../taler-util '@gnu-taler/taler-wallet-core': link:../taler-wallet-core - tslib: 2.2.0 + tslib: 2.3.1 devDependencies: - '@rollup/plugin-commonjs': 17.1.0_rollup@2.43.0 - '@rollup/plugin-json': 4.1.0_rollup@2.43.0 - '@rollup/plugin-node-resolve': 11.2.0_rollup@2.43.0 - '@rollup/plugin-replace': 2.4.2_rollup@2.43.0 - '@types/node': 14.17.1 + '@rollup/plugin-commonjs': 17.1.0_rollup@2.63.0 + '@rollup/plugin-json': 4.1.0_rollup@2.63.0 + '@rollup/plugin-node-resolve': 11.2.0_rollup@2.63.0 + '@rollup/plugin-replace': 2.4.2_rollup@2.63.0 + '@types/node': 17.0.8 prettier: 2.2.1 rimraf: 3.0.2 - rollup: 2.43.0 - rollup-plugin-sourcemaps: 0.6.3_6efbbae6640434994627e0ab519821c6 - rollup-plugin-terser: 7.0.2_rollup@2.43.0 - typescript: 4.2.3 + rollup: 2.63.0 + rollup-plugin-sourcemaps: 0.6.3_@types+node@17.0.8+rollup@2.63.0 + rollup-plugin-terser: 7.0.2_rollup@2.63.0 + typescript: 4.5.4 packages/taler-wallet-webextension: specifiers: @@ -340,14 +338,14 @@ importers: '@storybook/preact': 6.4.9 '@testing-library/preact': ^2.0.1 '@testing-library/preact-hooks': ^1.1.0 - '@types/chrome': ^0.0.128 + '@types/chrome': ^0.0.174 '@types/history': ^4.7.8 '@types/mocha': ^9.0.0 - '@types/node': ^14.14.22 + '@types/node': ^17.0.8 ava: 3.15.0 babel-loader: ^8.2.2 babel-plugin-transform-react-jsx: ^6.24.1 - date-fns: ^2.22.1 + date-fns: ^2.28.0 history: 4.10.1 mocha: ^9.1.3 nyc: ^15.1.0 @@ -357,18 +355,18 @@ importers: preact-router: ^3.2.1 qrcode-generator: ^1.4.4 rimraf: ^3.0.2 - rollup: ^2.37.1 + rollup: ^2.63.0 rollup-plugin-css-only: ^3.1.0 - rollup-plugin-ignore: ^1.0.9 + rollup-plugin-ignore: ^1.0.10 rollup-plugin-sourcemaps: ^0.6.3 rollup-plugin-terser: ^7.0.2 storybook-dark-mode: ^1.0.8 - tslib: ^2.1.0 - typescript: ^4.1.3 + tslib: ^2.3.1 + typescript: ^4.5.4 dependencies: '@gnu-taler/taler-util': link:../taler-util '@gnu-taler/taler-wallet-core': link:../taler-wallet-core - date-fns: 2.23.0 + date-fns: 2.28.0 history: 4.10.1 preact: 10.5.14 preact-router: 3.2.1_preact@10.5.14 @@ -383,22 +381,22 @@ importers: '@linaria/react': 3.0.0-beta.4 '@linaria/rollup': 3.0.0-beta.4_@babel+core@7.13.16 '@linaria/webpack-loader': 3.0.0-beta.4_@babel+core@7.13.16 - '@rollup/plugin-alias': 3.1.5_rollup@2.56.2 - '@rollup/plugin-commonjs': 17.1.0_rollup@2.56.2 - '@rollup/plugin-image': 2.1.0_rollup@2.56.2 - '@rollup/plugin-json': 4.1.0_rollup@2.56.2 - '@rollup/plugin-node-resolve': 11.2.1_rollup@2.56.2 - '@rollup/plugin-replace': 2.4.2_rollup@2.56.2 - '@rollup/plugin-typescript': 8.3.0_5f9d52eb8f5b9c5f8da2582f59355eb7 + '@rollup/plugin-alias': 3.1.5_rollup@2.63.0 + '@rollup/plugin-commonjs': 17.1.0_rollup@2.63.0 + '@rollup/plugin-image': 2.1.0_rollup@2.63.0 + '@rollup/plugin-json': 4.1.0_rollup@2.63.0 + '@rollup/plugin-node-resolve': 11.2.1_rollup@2.63.0 + '@rollup/plugin-replace': 2.4.2_rollup@2.63.0 + '@rollup/plugin-typescript': 8.3.0_cb044fd0a247ab74c5d8bfaf0e00abae '@storybook/addon-a11y': 6.3.7 - '@storybook/addon-essentials': 6.3.7_d95124e751df81c32a1d4f8e491e43a1 - '@storybook/preact': 6.4.9_9cd0ede338ef3d2deb8dbc69bc115c66 + '@storybook/addon-essentials': 6.3.7_d1d966e8238575a0cec6ee91145c5623 + '@storybook/preact': 6.4.9_7ac135b2eab8a45315147b85be8cb430 '@testing-library/preact': 2.0.1_preact@10.5.14 '@testing-library/preact-hooks': 1.1.0_6273b572ba1ed58b8bbb2ee93959f9e4 - '@types/chrome': 0.0.128 + '@types/chrome': 0.0.174 '@types/history': 4.7.9 '@types/mocha': 9.0.0 - '@types/node': 14.17.10 + '@types/node': 17.0.8 ava: 3.15.0 babel-loader: 8.2.2_@babel+core@7.13.16 babel-plugin-transform-react-jsx: 6.24.1 @@ -407,13 +405,13 @@ importers: preact-cli: 3.2.2_517d24bd855b57d7e424aceed04e063b preact-render-to-string: 5.1.19_preact@10.5.14 rimraf: 3.0.2 - rollup: 2.56.2 - rollup-plugin-css-only: 3.1.0_rollup@2.56.2 - rollup-plugin-ignore: 1.0.9 - rollup-plugin-sourcemaps: 0.6.3_87d168520bd21f84b7cb8eb331bc7479 - rollup-plugin-terser: 7.0.2_rollup@2.56.2 + rollup: 2.63.0 + rollup-plugin-css-only: 3.1.0_rollup@2.63.0 + rollup-plugin-ignore: 1.0.10 + rollup-plugin-sourcemaps: 0.6.3_@types+node@17.0.8+rollup@2.63.0 + rollup-plugin-terser: 7.0.2_rollup@2.63.0 storybook-dark-mode: 1.0.8 - typescript: 4.3.5 + typescript: 4.5.4 packages: @@ -474,6 +472,13 @@ packages: '@babel/highlight': 7.16.0 dev: true + /@babel/code-frame/7.16.7: + resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.16.7 + dev: true + /@babel/compat-data/7.15.0: resolution: {integrity: sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==} engines: {node: '>=6.9.0'} @@ -573,7 +578,7 @@ packages: '@babel/traverse': 7.16.3 '@babel/types': 7.16.0 convert-source-map: 1.8.0 - debug: 4.3.2 + debug: 4.3.3 gensync: 1.0.0-beta.2 json5: 2.2.0 semver: 6.3.0 @@ -614,6 +619,15 @@ packages: source-map: 0.5.7 dev: true + /@babel/generator/7.16.7: + resolution: {integrity: sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + jsesc: 2.5.2 + source-map: 0.5.7 + dev: true + /@babel/helper-annotate-as-pure/7.14.5: resolution: {integrity: sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==} engines: {node: '>=6.9.0'} @@ -628,6 +642,13 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-annotate-as-pure/7.16.7: + resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + dev: true + /@babel/helper-builder-binary-assignment-operator-visitor/7.14.5: resolution: {integrity: sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w==} engines: {node: '>=6.9.0'} @@ -644,6 +665,14 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7: + resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-explode-assignable-expression': 7.16.7 + '@babel/types': 7.16.7 + dev: true + /@babel/helper-compilation-targets/7.15.0_@babel+core@7.13.16: resolution: {integrity: sha512-h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A==} engines: {node: '>=6.9.0'} @@ -708,28 +737,41 @@ packages: semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.16.3: + /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0: resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.16.4 + '@babel/core': 7.16.0 '@babel/helper-validator-option': 7.14.5 browserslist: 4.18.1 semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0: - resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==} + /@babel/helper-compilation-targets/7.16.7: + resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.16.4 + '@babel/helper-validator-option': 7.16.7 + browserslist: 4.19.1 + semver: 6.3.0 + dev: true + + /@babel/helper-compilation-targets/7.16.7_@babel+core@7.16.0: + resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.16.4 '@babel/core': 7.16.0 - '@babel/helper-validator-option': 7.14.5 - browserslist: 4.18.1 + '@babel/helper-validator-option': 7.16.7 + browserslist: 4.19.1 semver: 6.3.0 dev: true @@ -800,6 +842,23 @@ packages: - supports-color dev: true + /@babel/helper-create-class-features-plugin/7.16.7: + resolution: {integrity: sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/helper-annotate-as-pure': 7.16.7 + '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-function-name': 7.16.7 + '@babel/helper-member-expression-to-functions': 7.16.7 + '@babel/helper-optimise-call-expression': 7.16.7 + '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-split-export-declaration': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-create-regexp-features-plugin/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==} engines: {node: '>=6.9.0'} @@ -832,6 +891,27 @@ packages: regexpu-core: 4.8.0 dev: true + /@babel/helper-create-regexp-features-plugin/7.16.7: + resolution: {integrity: sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/helper-annotate-as-pure': 7.16.7 + regexpu-core: 4.8.0 + dev: true + + /@babel/helper-create-regexp-features-plugin/7.16.7_@babel+core@7.16.0: + resolution: {integrity: sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.16.0 + '@babel/helper-annotate-as-pure': 7.16.7 + regexpu-core: 4.8.0 + dev: true + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.15.0: resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: @@ -926,13 +1006,13 @@ packages: peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/helper-compilation-targets': 7.16.3 - '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/traverse': 7.16.3 - debug: 4.3.2 + '@babel/helper-compilation-targets': 7.16.7 + '@babel/helper-module-imports': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/traverse': 7.16.7 + debug: 4.3.3 lodash.debounce: 4.0.8 - resolve: 1.20.0 + resolve: 1.21.0 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -944,18 +1024,25 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 - '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/traverse': 7.16.3 - debug: 4.3.2 + '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.16.0 + '@babel/helper-module-imports': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/traverse': 7.16.7 + debug: 4.3.3 lodash.debounce: 4.0.8 - resolve: 1.20.0 + resolve: 1.21.0 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true + /@babel/helper-environment-visitor/7.16.7: + resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + dev: true + /@babel/helper-explode-assignable-expression/7.14.5: resolution: {integrity: sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==} engines: {node: '>=6.9.0'} @@ -970,6 +1057,13 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-explode-assignable-expression/7.16.7: + resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + dev: true + /@babel/helper-function-name/7.14.5: resolution: {integrity: sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==} engines: {node: '>=6.9.0'} @@ -988,6 +1082,15 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-function-name/7.16.7: + resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-get-function-arity': 7.16.7 + '@babel/template': 7.16.7 + '@babel/types': 7.16.7 + dev: true + /@babel/helper-get-function-arity/7.14.5: resolution: {integrity: sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==} engines: {node: '>=6.9.0'} @@ -1002,6 +1105,13 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-get-function-arity/7.16.7: + resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + dev: true + /@babel/helper-hoist-variables/7.14.5: resolution: {integrity: sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==} engines: {node: '>=6.9.0'} @@ -1016,6 +1126,13 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-hoist-variables/7.16.7: + resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + dev: true + /@babel/helper-member-expression-to-functions/7.15.0: resolution: {integrity: sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==} engines: {node: '>=6.9.0'} @@ -1030,6 +1147,13 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-member-expression-to-functions/7.16.7: + resolution: {integrity: sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + dev: true + /@babel/helper-module-imports/7.14.5: resolution: {integrity: sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==} engines: {node: '>=6.9.0'} @@ -1044,6 +1168,13 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-module-imports/7.16.7: + resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + dev: true + /@babel/helper-module-transforms/7.15.0: resolution: {integrity: sha512-RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg==} engines: {node: '>=6.9.0'} @@ -1076,6 +1207,22 @@ packages: - supports-color dev: true + /@babel/helper-module-transforms/7.16.7: + resolution: {integrity: sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-module-imports': 7.16.7 + '@babel/helper-simple-access': 7.16.7 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/helper-validator-identifier': 7.16.7 + '@babel/template': 7.16.7 + '@babel/traverse': 7.16.7 + '@babel/types': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-optimise-call-expression/7.14.5: resolution: {integrity: sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==} engines: {node: '>=6.9.0'} @@ -1090,6 +1237,13 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-optimise-call-expression/7.16.7: + resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + dev: true + /@babel/helper-plugin-utils/7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} dev: true @@ -1099,6 +1253,11 @@ packages: engines: {node: '>=6.9.0'} dev: true + /@babel/helper-plugin-utils/7.16.7: + resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-remap-async-to-generator/7.14.5: resolution: {integrity: sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==} engines: {node: '>=6.9.0'} @@ -1132,6 +1291,17 @@ packages: - supports-color dev: true + /@babel/helper-remap-async-to-generator/7.16.7: + resolution: {integrity: sha512-C3o117GnP/j/N2OWo+oepeWbFEKRfNaay+F1Eo5Mj3A1SRjyx+qaFhm23nlipub7Cjv2azdUUiDH+VlpdwUFRg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-annotate-as-pure': 7.16.7 + '@babel/helper-wrap-function': 7.16.7 + '@babel/types': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-replace-supers/7.15.0: resolution: {integrity: sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==} engines: {node: '>=6.9.0'} @@ -1156,6 +1326,19 @@ packages: - supports-color dev: true + /@babel/helper-replace-supers/7.16.7: + resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-member-expression-to-functions': 7.16.7 + '@babel/helper-optimise-call-expression': 7.16.7 + '@babel/traverse': 7.16.7 + '@babel/types': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-simple-access/7.14.8: resolution: {integrity: sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==} engines: {node: '>=6.9.0'} @@ -1170,6 +1353,13 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-simple-access/7.16.7: + resolution: {integrity: sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + dev: true + /@babel/helper-skip-transparent-expression-wrappers/7.14.5: resolution: {integrity: sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==} engines: {node: '>=6.9.0'} @@ -1181,7 +1371,7 @@ packages: resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.16.0 + '@babel/types': 7.16.7 dev: true /@babel/helper-split-export-declaration/7.14.5: @@ -1198,6 +1388,13 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/helper-split-export-declaration/7.16.7: + resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.16.7 + dev: true + /@babel/helper-validator-identifier/7.14.0: resolution: {integrity: sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==} dev: true @@ -1212,11 +1409,21 @@ packages: engines: {node: '>=6.9.0'} dev: true + /@babel/helper-validator-identifier/7.16.7: + resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-validator-option/7.14.5: resolution: {integrity: sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==} engines: {node: '>=6.9.0'} dev: true + /@babel/helper-validator-option/7.16.7: + resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-wrap-function/7.14.5: resolution: {integrity: sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ==} engines: {node: '>=6.9.0'} @@ -1241,6 +1448,18 @@ packages: - supports-color dev: true + /@babel/helper-wrap-function/7.16.7: + resolution: {integrity: sha512-7a9sABeVwcunnztZZ7WTgSw6jVYLzM1wua0Z4HIXm9S3/HC96WKQTkFgGEaj5W06SHHihPJ6Le6HzS5cGOQMNw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-function-name': 7.16.7 + '@babel/template': 7.16.7 + '@babel/traverse': 7.16.7 + '@babel/types': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helpers/7.15.3: resolution: {integrity: sha512-HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g==} engines: {node: '>=6.9.0'} @@ -1289,6 +1508,15 @@ packages: js-tokens: 4.0.0 dev: true + /@babel/highlight/7.16.7: + resolution: {integrity: sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.16.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + /@babel/parser/7.15.3: resolution: {integrity: sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA==} engines: {node: '>=6.0.0'} @@ -1307,6 +1535,12 @@ packages: hasBin: true dev: true + /@babel/parser/7.16.7: + resolution: {integrity: sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA==} + engines: {node: '>=6.0.0'} + hasBin: true + dev: true + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2: resolution: {integrity: sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==} engines: {node: '>=6.9.0'} @@ -1326,6 +1560,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7: + resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==} engines: {node: '>=6.9.0'} @@ -1361,6 +1604,17 @@ packages: '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0 dev: true + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7: + resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 + '@babel/plugin-proposal-optional-chaining': 7.16.7 + dev: true + /@babel/plugin-proposal-async-generator-functions/7.14.9_@babel+core@7.15.0: resolution: {integrity: sha512-d1lnh+ZnKrFKwtTYdw320+sQWCTwgkB9fmUhNXRADA4akR6wLjaruSGnIEUjpt9HCOwTr4ynFTKu19b7rFRpmw==} engines: {node: '>=6.9.0'} @@ -1402,29 +1656,29 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-async-generator-functions/7.16.4: + /@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.16.0: resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: + '@babel/core': 7.16.0 '@babel/helper-plugin-utils': 7.14.5 '@babel/helper-remap-async-to-generator': 7.16.4 - '@babel/plugin-syntax-async-generators': 7.8.4 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.16.0: - resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==} + /@babel/plugin-proposal-async-generator-functions/7.16.7: + resolution: {integrity: sha512-TTXBT3A5c11eqRzaC6beO6rlFT3Mo9C2e8eB44tTr52ESXSK2CIc2fOp1ynpAwQA8HhBMho+WXhMHWlAe3xkpw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-remap-async-to-generator': 7.16.4 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-remap-async-to-generator': 7.16.7 + '@babel/plugin-syntax-async-generators': 7.8.4 transitivePeerDependencies: - supports-color dev: true @@ -1467,6 +1721,18 @@ packages: - supports-color dev: true + /@babel/plugin-proposal-class-properties/7.16.7: + resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-create-class-features-plugin': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-proposal-class-static-block/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==} engines: {node: '>=6.9.0'} @@ -1508,6 +1774,19 @@ packages: - supports-color dev: true + /@babel/plugin-proposal-class-static-block/7.16.7: + resolution: {integrity: sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/helper-create-class-features-plugin': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-class-static-block': 7.14.5 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-proposal-decorators/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-LYz5nvQcvYeRVjui1Ykn28i+3aUiXwQ/3MGoEy0InTaz1pJo/lAzmIDXX+BQny/oufgHzJ6vnEEiXQ8KZjEVFg==} engines: {node: '>=6.9.0'} @@ -1568,6 +1847,16 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0 dev: true + /@babel/plugin-proposal-dynamic-import/7.16.7: + resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-dynamic-import': 7.8.3 + dev: true + /@babel/plugin-proposal-export-default-from/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg==} engines: {node: '>=6.9.0'} @@ -1622,6 +1911,16 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0 dev: true + /@babel/plugin-proposal-export-namespace-from/7.16.7: + resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-export-namespace-from': 7.8.3 + dev: true + /@babel/plugin-proposal-json-strings/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==} engines: {node: '>=6.9.0'} @@ -1654,6 +1953,16 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 dev: true + /@babel/plugin-proposal-json-strings/7.16.7: + resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-json-strings': 7.8.3 + dev: true + /@babel/plugin-proposal-logical-assignment-operators/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==} engines: {node: '>=6.9.0'} @@ -1686,6 +1995,16 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 dev: true + /@babel/plugin-proposal-logical-assignment-operators/7.16.7: + resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4 + dev: true + /@babel/plugin-proposal-nullish-coalescing-operator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==} engines: {node: '>=6.9.0'} @@ -1718,6 +2037,16 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 dev: true + /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7: + resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 + dev: true + /@babel/plugin-proposal-numeric-separator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==} engines: {node: '>=6.9.0'} @@ -1750,6 +2079,16 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 dev: true + /@babel/plugin-proposal-numeric-separator/7.16.7: + resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-numeric-separator': 7.10.4 + dev: true + /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} peerDependencies: @@ -1802,6 +2141,19 @@ packages: '@babel/plugin-transform-parameters': 7.16.0_@babel+core@7.16.0 dev: true + /@babel/plugin-proposal-object-rest-spread/7.16.7: + resolution: {integrity: sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.16.4 + '@babel/helper-compilation-targets': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3 + '@babel/plugin-transform-parameters': 7.16.7 + dev: true + /@babel/plugin-proposal-optional-catch-binding/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==} engines: {node: '>=6.9.0'} @@ -1834,6 +2186,16 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 dev: true + /@babel/plugin-proposal-optional-catch-binding/7.16.7: + resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3 + dev: true + /@babel/plugin-proposal-optional-chaining/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==} engines: {node: '>=6.9.0'} @@ -1869,6 +2231,17 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 dev: true + /@babel/plugin-proposal-optional-chaining/7.16.7: + resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3 + dev: true + /@babel/plugin-proposal-private-methods/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==} engines: {node: '>=6.9.0'} @@ -1907,6 +2280,18 @@ packages: - supports-color dev: true + /@babel/plugin-proposal-private-methods/7.16.7: + resolution: {integrity: sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-create-class-features-plugin': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-proposal-private-property-in-object/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==} engines: {node: '>=6.9.0'} @@ -1951,6 +2336,20 @@ packages: - supports-color dev: true + /@babel/plugin-proposal-private-property-in-object/7.16.7: + resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-annotate-as-pure': 7.16.7 + '@babel/helper-create-class-features-plugin': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-proposal-unicode-property-regex/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==} engines: {node: '>=4'} @@ -1983,12 +2382,33 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-proposal-unicode-property-regex/7.16.7: + resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==} + engines: {node: '>=4'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-create-regexp-features-plugin': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + dev: true + + /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.16.0: + resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==} + engines: {node: '>=4'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.16.0 + '@babel/helper-create-regexp-features-plugin': 7.16.7_@babel+core@7.16.0 + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-syntax-async-generators/7.8.4: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.15.0: @@ -1997,7 +2417,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.0: @@ -2006,7 +2426,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-class-properties/7.12.13: @@ -2014,7 +2434,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.15.0: @@ -2023,7 +2443,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.0: @@ -2032,7 +2452,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-class-static-block/7.14.5: @@ -2041,7 +2461,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.15.0: @@ -2051,7 +2471,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.0: @@ -2061,7 +2481,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-decorators/7.14.5_@babel+core@7.15.0: @@ -2089,7 +2509,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.13.16: @@ -2098,7 +2518,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.13.16 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.15.0: @@ -2107,7 +2527,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.0: @@ -2116,7 +2536,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-export-default-from/7.14.5_@babel+core@7.15.0: @@ -2144,7 +2564,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.15.0: @@ -2153,7 +2573,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.0: @@ -2162,7 +2582,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-json-strings/7.8.3: @@ -2170,7 +2590,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.15.0: @@ -2179,7 +2599,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.0: @@ -2188,7 +2608,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9: @@ -2244,7 +2664,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.15.0: @@ -2253,7 +2673,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.0: @@ -2262,7 +2682,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3: @@ -2270,7 +2690,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.15.0: @@ -2279,7 +2699,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.0: @@ -2288,7 +2708,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-numeric-separator/7.10.4: @@ -2296,7 +2716,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.15.0: @@ -2305,7 +2725,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.0: @@ -2314,7 +2734,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-object-rest-spread/7.8.3: @@ -2322,7 +2742,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: @@ -2331,7 +2751,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.15.0: @@ -2340,7 +2760,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.0: @@ -2349,7 +2769,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-optional-catch-binding/7.8.3: @@ -2357,7 +2777,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.15.0: @@ -2366,7 +2786,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.0: @@ -2375,7 +2795,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-optional-chaining/7.8.3: @@ -2383,7 +2803,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.15.0: @@ -2392,7 +2812,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.0: @@ -2401,7 +2821,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-private-property-in-object/7.14.5: @@ -2410,7 +2830,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.15.0: @@ -2420,7 +2840,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.0: @@ -2430,7 +2850,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-top-level-await/7.14.5: @@ -2439,7 +2859,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.15.0: @@ -2449,7 +2869,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.15.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.0: @@ -2459,7 +2879,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-syntax-typescript/7.14.5_@babel+core@7.13.16: @@ -2521,6 +2941,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-arrow-functions/7.16.7: + resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-async-to-generator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==} engines: {node: '>=6.9.0'} @@ -2562,6 +2991,19 @@ packages: - supports-color dev: true + /@babel/plugin-transform-async-to-generator/7.16.7: + resolution: {integrity: sha512-pFEfjnK4DfXCfAlA5I98BYdDJD8NltMzx19gt6DAmfE+2lXRfPUoa0/5SUjT4+TDE1W/rcxU/1lgN55vpAjjdg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-module-imports': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-remap-async-to-generator': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-block-scoped-functions/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==} engines: {node: '>=6.9.0'} @@ -2591,6 +3033,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-block-scoped-functions/7.16.7: + resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-block-scoping/7.15.3_@babel+core@7.15.0: resolution: {integrity: sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==} engines: {node: '>=6.9.0'} @@ -2620,6 +3071,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-block-scoping/7.16.7: + resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-classes/7.14.9_@babel+core@7.15.0: resolution: {integrity: sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==} engines: {node: '>=6.9.0'} @@ -2673,6 +3133,24 @@ packages: - supports-color dev: true + /@babel/plugin-transform-classes/7.16.7: + resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-annotate-as-pure': 7.16.7 + '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-function-name': 7.16.7 + '@babel/helper-optimise-call-expression': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-split-export-declaration': 7.16.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-computed-properties/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==} engines: {node: '>=6.9.0'} @@ -2702,6 +3180,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-computed-properties/7.16.7: + resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-destructuring/7.14.7_@babel+core@7.15.0: resolution: {integrity: sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==} engines: {node: '>=6.9.0'} @@ -2731,6 +3218,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-destructuring/7.16.7: + resolution: {integrity: sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-dotall-regex/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==} engines: {node: '>=6.9.0'} @@ -2763,6 +3259,27 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-dotall-regex/7.16.7: + resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-create-regexp-features-plugin': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + dev: true + + /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.16.0: + resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.16.0 + '@babel/helper-create-regexp-features-plugin': 7.16.7_@babel+core@7.16.0 + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-duplicate-keys/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==} engines: {node: '>=6.9.0'} @@ -2792,6 +3309,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-duplicate-keys/7.16.7: + resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-exponentiation-operator/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==} engines: {node: '>=6.9.0'} @@ -2824,6 +3350,16 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-exponentiation-operator/7.16.7: + resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-for-of/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==} engines: {node: '>=6.9.0'} @@ -2853,6 +3389,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-for-of/7.16.7: + resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-function-name/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==} engines: {node: '>=6.9.0'} @@ -2885,6 +3430,17 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-function-name/7.16.7: + resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-compilation-targets': 7.16.7 + '@babel/helper-function-name': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-literals/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==} engines: {node: '>=6.9.0'} @@ -2914,6 +3470,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-literals/7.16.7: + resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-member-expression-literals/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==} engines: {node: '>=6.9.0'} @@ -2943,6 +3508,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-member-expression-literals/7.16.7: + resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-modules-amd/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==} engines: {node: '>=6.9.0'} @@ -2984,6 +3558,19 @@ packages: - supports-color dev: true + /@babel/plugin-transform-modules-amd/7.16.7: + resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-module-transforms': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-commonjs/7.15.0_@babel+core@7.15.0: resolution: {integrity: sha512-3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig==} engines: {node: '>=6.9.0'} @@ -3028,6 +3615,20 @@ packages: - supports-color dev: true + /@babel/plugin-transform-modules-commonjs/7.16.7: + resolution: {integrity: sha512-h2RP2kE7He1ZWKyAlanMZrAbdv+Acw1pA8dQZhE025WJZE2z0xzFADAinXA9fxd5bn7JnM+SdOGcndGx1ARs9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-module-transforms': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-simple-access': 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-systemjs/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==} engines: {node: '>=6.9.0'} @@ -3075,6 +3676,21 @@ packages: - supports-color dev: true + /@babel/plugin-transform-modules-systemjs/7.16.7: + resolution: {integrity: sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-hoist-variables': 7.16.7 + '@babel/helper-module-transforms': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-validator-identifier': 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-umd/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==} engines: {node: '>=6.9.0'} @@ -3113,6 +3729,18 @@ packages: - supports-color dev: true + /@babel/plugin-transform-modules-umd/7.16.7: + resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-module-transforms': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-named-capturing-groups-regex/7.14.9_@babel+core@7.15.0: resolution: {integrity: sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==} engines: {node: '>=6.9.0'} @@ -3142,6 +3770,15 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 dev: true + /@babel/plugin-transform-named-capturing-groups-regex/7.16.7: + resolution: {integrity: sha512-kFy35VwmwIQwCjwrAQhl3+c/kr292i4KdLPKp5lPH03Ltc51qnFlIADoyPxc/6Naz3ok3WdYKg+KK6AH+D4utg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/helper-create-regexp-features-plugin': 7.16.7 + dev: true + /@babel/plugin-transform-new-target/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==} engines: {node: '>=6.9.0'} @@ -3171,6 +3808,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-new-target/7.16.7: + resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-object-assign/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-lvhjk4UN9xJJYB1mI5KC0/o1D5EcJXdbhVe+4fSk08D6ZN+iuAIs7LJC+71h8av9Ew4+uRq9452v9R93SFmQlQ==} engines: {node: '>=6.9.0'} @@ -3229,6 +3875,18 @@ packages: - supports-color dev: true + /@babel/plugin-transform-object-super/7.16.7: + resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-replace-supers': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-parameters/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==} engines: {node: '>=6.9.0'} @@ -3268,23 +3926,23 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-parameters/7.16.3: + /@babel/plugin-transform-parameters/7.16.3_@babel+core@7.16.0: resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: + '@babel/core': 7.16.0 '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-parameters/7.16.3_@babel+core@7.16.0: - resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==} + /@babel/plugin-transform-parameters/7.16.7: + resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 dev: true /@babel/plugin-transform-property-literals/7.14.5_@babel+core@7.15.0: @@ -3316,6 +3974,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-property-literals/7.16.7: + resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-react-display-name/7.15.1_@babel+core@7.15.0: resolution: {integrity: sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==} engines: {node: '>=6.9.0'} @@ -3472,6 +4139,15 @@ packages: regenerator-transform: 0.14.5 dev: true + /@babel/plugin-transform-regenerator/7.16.7: + resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + regenerator-transform: 0.14.5 + dev: true + /@babel/plugin-transform-reserved-words/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==} engines: {node: '>=6.9.0'} @@ -3501,14 +4177,23 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true - /@babel/plugin-transform-runtime/7.16.4: - resolution: {integrity: sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==} + /@babel/plugin-transform-reserved-words/7.16.7: + resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 + '@babel/helper-plugin-utils': 7.16.7 + dev: true + + /@babel/plugin-transform-runtime/7.16.7: + resolution: {integrity: sha512-2FoHiSAWkdq4L06uaDN3rS43i6x28desUVxq+zAFuE6kbWYQeiLPJI5IC7Sg9xKYVcrBKSQkVUfH6aeQYbl9QA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-module-imports': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 babel-plugin-polyfill-corejs2: 0.3.0 babel-plugin-polyfill-corejs3: 0.4.0 babel-plugin-polyfill-regenerator: 0.3.0 @@ -3546,6 +4231,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-shorthand-properties/7.16.7: + resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-spread/7.14.6_@babel+core@7.15.0: resolution: {integrity: sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==} engines: {node: '>=6.9.0'} @@ -3578,6 +4272,16 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 dev: true + /@babel/plugin-transform-spread/7.16.7: + resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 + dev: true + /@babel/plugin-transform-sticky-regex/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==} engines: {node: '>=6.9.0'} @@ -3607,6 +4311,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-sticky-regex/7.16.7: + resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-template-literals/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==} engines: {node: '>=6.9.0'} @@ -3636,6 +4349,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-template-literals/7.16.7: + resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-typeof-symbol/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==} engines: {node: '>=6.9.0'} @@ -3665,6 +4387,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-typeof-symbol/7.16.7: + resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-typescript/7.15.0_@babel+core@7.13.16: resolution: {integrity: sha512-WIIEazmngMEEHDaPTx0IZY48SaAmjVWe3TRSX7cmJXn0bEv9midFzAjxiruOWYIVf5iQ10vFx7ASDpgEO08L5w==} engines: {node: '>=6.9.0'} @@ -3736,6 +4467,15 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-unicode-escapes/7.16.7: + resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/plugin-transform-unicode-regex/7.14.5_@babel+core@7.15.0: resolution: {integrity: sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==} engines: {node: '>=6.9.0'} @@ -3768,6 +4508,16 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: true + /@babel/plugin-transform-unicode-regex/7.16.7: + resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-create-regexp-features-plugin': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + dev: true + /@babel/preset-env/7.15.0_@babel+core@7.15.0: resolution: {integrity: sha512-FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q==} engines: {node: '>=6.9.0'} @@ -4021,90 +4771,6 @@ packages: - supports-color dev: true - /@babel/preset-env/7.16.4: - resolution: {integrity: sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.16.4 - '@babel/helper-compilation-targets': 7.16.3 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-validator-option': 7.14.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0 - '@babel/plugin-proposal-async-generator-functions': 7.16.4 - '@babel/plugin-proposal-class-properties': 7.16.0 - '@babel/plugin-proposal-class-static-block': 7.16.0 - '@babel/plugin-proposal-dynamic-import': 7.16.0 - '@babel/plugin-proposal-export-namespace-from': 7.16.0 - '@babel/plugin-proposal-json-strings': 7.16.0 - '@babel/plugin-proposal-logical-assignment-operators': 7.16.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0 - '@babel/plugin-proposal-numeric-separator': 7.16.0 - '@babel/plugin-proposal-object-rest-spread': 7.16.0 - '@babel/plugin-proposal-optional-catch-binding': 7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.16.0 - '@babel/plugin-proposal-private-methods': 7.16.0 - '@babel/plugin-proposal-private-property-in-object': 7.16.0 - '@babel/plugin-proposal-unicode-property-regex': 7.16.0 - '@babel/plugin-syntax-async-generators': 7.8.4 - '@babel/plugin-syntax-class-properties': 7.12.13 - '@babel/plugin-syntax-class-static-block': 7.14.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3 - '@babel/plugin-syntax-export-namespace-from': 7.8.3 - '@babel/plugin-syntax-json-strings': 7.8.3 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 - '@babel/plugin-syntax-numeric-separator': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3 - '@babel/plugin-syntax-optional-chaining': 7.8.3 - '@babel/plugin-syntax-private-property-in-object': 7.14.5 - '@babel/plugin-syntax-top-level-await': 7.14.5 - '@babel/plugin-transform-arrow-functions': 7.16.0 - '@babel/plugin-transform-async-to-generator': 7.16.0 - '@babel/plugin-transform-block-scoped-functions': 7.16.0 - '@babel/plugin-transform-block-scoping': 7.16.0 - '@babel/plugin-transform-classes': 7.16.0 - '@babel/plugin-transform-computed-properties': 7.16.0 - '@babel/plugin-transform-destructuring': 7.16.0 - '@babel/plugin-transform-dotall-regex': 7.16.0 - '@babel/plugin-transform-duplicate-keys': 7.16.0 - '@babel/plugin-transform-exponentiation-operator': 7.16.0 - '@babel/plugin-transform-for-of': 7.16.0 - '@babel/plugin-transform-function-name': 7.16.0 - '@babel/plugin-transform-literals': 7.16.0 - '@babel/plugin-transform-member-expression-literals': 7.16.0 - '@babel/plugin-transform-modules-amd': 7.16.0 - '@babel/plugin-transform-modules-commonjs': 7.16.0 - '@babel/plugin-transform-modules-systemjs': 7.16.0 - '@babel/plugin-transform-modules-umd': 7.16.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0 - '@babel/plugin-transform-new-target': 7.16.0 - '@babel/plugin-transform-object-super': 7.16.0 - '@babel/plugin-transform-parameters': 7.16.3 - '@babel/plugin-transform-property-literals': 7.16.0 - '@babel/plugin-transform-regenerator': 7.16.0 - '@babel/plugin-transform-reserved-words': 7.16.0 - '@babel/plugin-transform-shorthand-properties': 7.16.0 - '@babel/plugin-transform-spread': 7.16.0 - '@babel/plugin-transform-sticky-regex': 7.16.0 - '@babel/plugin-transform-template-literals': 7.16.0 - '@babel/plugin-transform-typeof-symbol': 7.16.0 - '@babel/plugin-transform-unicode-escapes': 7.16.0 - '@babel/plugin-transform-unicode-regex': 7.16.0 - '@babel/preset-modules': 0.1.5 - '@babel/types': 7.16.0 - babel-plugin-polyfill-corejs2: 0.3.0 - babel-plugin-polyfill-corejs3: 0.4.0 - babel-plugin-polyfill-regenerator: 0.3.0 - core-js-compat: 3.19.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/preset-env/7.16.4_@babel+core@7.16.0: resolution: {integrity: sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==} engines: {node: '>=6.9.0'} @@ -4190,6 +4856,90 @@ packages: - supports-color dev: true + /@babel/preset-env/7.16.7: + resolution: {integrity: sha512-urX3Cee4aOZbRWOSa3mKPk0aqDikfILuo+C7qq7HY0InylGNZ1fekq9jmlr3pLWwZHF4yD7heQooc2Pow2KMyQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.16.4 + '@babel/helper-compilation-targets': 7.16.7 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-validator-option': 7.16.7 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7 + '@babel/plugin-proposal-async-generator-functions': 7.16.7 + '@babel/plugin-proposal-class-properties': 7.16.7 + '@babel/plugin-proposal-class-static-block': 7.16.7 + '@babel/plugin-proposal-dynamic-import': 7.16.7 + '@babel/plugin-proposal-export-namespace-from': 7.16.7 + '@babel/plugin-proposal-json-strings': 7.16.7 + '@babel/plugin-proposal-logical-assignment-operators': 7.16.7 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7 + '@babel/plugin-proposal-numeric-separator': 7.16.7 + '@babel/plugin-proposal-object-rest-spread': 7.16.7 + '@babel/plugin-proposal-optional-catch-binding': 7.16.7 + '@babel/plugin-proposal-optional-chaining': 7.16.7 + '@babel/plugin-proposal-private-methods': 7.16.7 + '@babel/plugin-proposal-private-property-in-object': 7.16.7 + '@babel/plugin-proposal-unicode-property-regex': 7.16.7 + '@babel/plugin-syntax-async-generators': 7.8.4 + '@babel/plugin-syntax-class-properties': 7.12.13 + '@babel/plugin-syntax-class-static-block': 7.14.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3 + '@babel/plugin-syntax-export-namespace-from': 7.8.3 + '@babel/plugin-syntax-json-strings': 7.8.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3 + '@babel/plugin-syntax-private-property-in-object': 7.14.5 + '@babel/plugin-syntax-top-level-await': 7.14.5 + '@babel/plugin-transform-arrow-functions': 7.16.7 + '@babel/plugin-transform-async-to-generator': 7.16.7 + '@babel/plugin-transform-block-scoped-functions': 7.16.7 + '@babel/plugin-transform-block-scoping': 7.16.7 + '@babel/plugin-transform-classes': 7.16.7 + '@babel/plugin-transform-computed-properties': 7.16.7 + '@babel/plugin-transform-destructuring': 7.16.7 + '@babel/plugin-transform-dotall-regex': 7.16.7 + '@babel/plugin-transform-duplicate-keys': 7.16.7 + '@babel/plugin-transform-exponentiation-operator': 7.16.7 + '@babel/plugin-transform-for-of': 7.16.7 + '@babel/plugin-transform-function-name': 7.16.7 + '@babel/plugin-transform-literals': 7.16.7 + '@babel/plugin-transform-member-expression-literals': 7.16.7 + '@babel/plugin-transform-modules-amd': 7.16.7 + '@babel/plugin-transform-modules-commonjs': 7.16.7 + '@babel/plugin-transform-modules-systemjs': 7.16.7 + '@babel/plugin-transform-modules-umd': 7.16.7 + '@babel/plugin-transform-named-capturing-groups-regex': 7.16.7 + '@babel/plugin-transform-new-target': 7.16.7 + '@babel/plugin-transform-object-super': 7.16.7 + '@babel/plugin-transform-parameters': 7.16.7 + '@babel/plugin-transform-property-literals': 7.16.7 + '@babel/plugin-transform-regenerator': 7.16.7 + '@babel/plugin-transform-reserved-words': 7.16.7 + '@babel/plugin-transform-shorthand-properties': 7.16.7 + '@babel/plugin-transform-spread': 7.16.7 + '@babel/plugin-transform-sticky-regex': 7.16.7 + '@babel/plugin-transform-template-literals': 7.16.7 + '@babel/plugin-transform-typeof-symbol': 7.16.7 + '@babel/plugin-transform-unicode-escapes': 7.16.7 + '@babel/plugin-transform-unicode-regex': 7.16.7 + '@babel/preset-modules': 0.1.5 + '@babel/types': 7.16.7 + babel-plugin-polyfill-corejs2: 0.3.0 + babel-plugin-polyfill-corejs3: 0.4.0 + babel-plugin-polyfill-regenerator: 0.3.0 + core-js-compat: 3.20.2 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/preset-modules/0.1.4_@babel+core@7.15.0: resolution: {integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==} peerDependencies: @@ -4208,10 +4958,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-proposal-unicode-property-regex': 7.16.0 - '@babel/plugin-transform-dotall-regex': 7.16.0 - '@babel/types': 7.16.0 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-proposal-unicode-property-regex': 7.16.7 + '@babel/plugin-transform-dotall-regex': 7.16.7 + '@babel/types': 7.16.7 esutils: 2.0.3 dev: true @@ -4221,10 +4971,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0 - '@babel/types': 7.16.0 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.16.0 + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.16.0 + '@babel/types': 7.16.7 esutils: 2.0.3 dev: true @@ -4328,11 +5078,11 @@ packages: source-map-support: 0.5.20 dev: true - /@babel/runtime-corejs3/7.15.3: - resolution: {integrity: sha512-30A3lP+sRL6ml8uhoJSs+8jwpKzbw8CqBvDc1laeptxPm5FahumJxirigcbD2qTs71Sonvj1cyZB0OKGAmxQ+A==} + /@babel/runtime-corejs3/7.16.7: + resolution: {integrity: sha512-MiYR1yk8+TW/CpOD0CyX7ve9ffWTKqLk/L6pk8TPl0R8pNi+1pFY8fH9yET55KlvukQ4PAWfXsGr2YHVjcI4Pw==} engines: {node: '>=6.9.0'} dependencies: - core-js-pure: 3.19.1 + core-js-pure: 3.20.2 regenerator-runtime: 0.13.9 dev: true @@ -4356,6 +5106,13 @@ packages: regenerator-runtime: 0.13.9 dev: true + /@babel/runtime/7.16.7: + resolution: {integrity: sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.9 + dev: true + /@babel/template/7.14.5: resolution: {integrity: sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==} engines: {node: '>=6.9.0'} @@ -4374,6 +5131,15 @@ packages: '@babel/types': 7.16.0 dev: true + /@babel/template/7.16.7: + resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/parser': 7.16.7 + '@babel/types': 7.16.7 + dev: true + /@babel/traverse/7.15.0: resolution: {integrity: sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==} engines: {node: '>=6.9.0'} @@ -4419,7 +5185,25 @@ packages: '@babel/helper-split-export-declaration': 7.16.0 '@babel/parser': 7.16.4 '@babel/types': 7.16.0 - debug: 4.3.2 + debug: 4.3.3 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/traverse/7.16.7: + resolution: {integrity: sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/generator': 7.16.7 + '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-function-name': 7.16.7 + '@babel/helper-hoist-variables': 7.16.7 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/parser': 7.16.7 + '@babel/types': 7.16.7 + debug: 4.3.3 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -4441,6 +5225,14 @@ packages: to-fast-properties: 2.0.0 dev: true + /@babel/types/7.16.7: + resolution: {integrity: sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.16.7 + to-fast-properties: 2.0.0 + dev: true + /@base2/pretty-print-object/1.0.0: resolution: {integrity: sha512-4Th98KlMHr5+JkxfcoDT//6vY8vM+iSPrLNpHhRyLx2CFYi8e2RfqPLdpbnpo0Q5lQC5hNB79yes07zb02fvCw==} dev: true @@ -4539,7 +5331,7 @@ packages: '@emotion/memoize': 0.7.4 '@emotion/unitless': 0.7.5 '@emotion/utils': 0.11.3 - csstype: 2.6.18 + csstype: 2.6.19 dev: true /@emotion/sheet/0.9.4: @@ -4612,35 +5404,34 @@ packages: resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} dev: true - /@eslint/eslintrc/0.3.0: - resolution: {integrity: sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==} - engines: {node: ^10.12.0 || >=12.0.0} + /@eslint/eslintrc/1.0.3: + resolution: {integrity: sha512-DHI1wDPoKCBPoLZA3qDR91+3te/wDSc1YhKg3jR8NxKKRJq2hwHwcWv31cSwSYvIBrmbENoYMWcenW8uproQqg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.2 - espree: 7.3.1 - globals: 12.4.0 + espree: 9.0.0 + globals: 13.12.0 ignore: 4.0.6 import-fresh: 3.3.0 js-yaml: 3.14.1 - lodash: 4.17.21 minimatch: 3.0.4 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color dev: true - /@eslint/eslintrc/1.0.3: - resolution: {integrity: sha512-DHI1wDPoKCBPoLZA3qDR91+3te/wDSc1YhKg3jR8NxKKRJq2hwHwcWv31cSwSYvIBrmbENoYMWcenW8uproQqg==} + /@eslint/eslintrc/1.0.5: + resolution: {integrity: sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.2 - espree: 9.0.0 + debug: 4.3.3 + espree: 9.3.0 globals: 13.12.0 ignore: 4.0.6 import-fresh: 3.3.0 - js-yaml: 3.14.1 + js-yaml: 4.1.0 minimatch: 3.0.4 strip-json-comments: 3.1.1 transitivePeerDependencies: @@ -4662,6 +5453,17 @@ packages: - supports-color dev: true + /@humanwhocodes/config-array/0.9.2: + resolution: {integrity: sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.3 + minimatch: 3.0.4 + transitivePeerDependencies: + - supports-color + dev: true + /@humanwhocodes/object-schema/1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} dev: true @@ -4711,21 +5513,22 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 3.0.1 - '@types/node': 16.11.6 + '@types/node': 17.0.8 '@types/yargs': 15.0.14 chalk: 4.1.2 dev: true - /@linaria/babel-preset/3.0.0-beta.13: - resolution: {integrity: sha512-UeurIwmORp1lG+f69bKquRug7ZFVSrQha6TJWvHmGQIFwFx5qpMCXJLhOp2dUpM4y7/NhbKYXqj58RtG3wi4ZQ==} + /@linaria/babel-preset/3.0.0-beta.15: + resolution: {integrity: sha512-oJIyUn2SCIH4vW1vBxOsN2BTU6Y0mq4ywkqxwQ1py4HgtEnYlvpq4Ca0ba7vXvMWk1pMCgd/V+VpMjbr19uXgQ==} peerDependencies: '@babel/core': '>=7' dependencies: - '@babel/generator': 7.16.0 + '@babel/generator': 7.16.7 '@babel/plugin-syntax-dynamic-import': 7.8.3 - '@babel/template': 7.16.0 - '@linaria/core': 3.0.0-beta.13 - '@linaria/logger': 3.0.0-beta.3 + '@babel/template': 7.16.7 + '@linaria/core': 3.0.0-beta.15 + '@linaria/logger': 3.0.0-beta.15 + '@linaria/utils': 3.0.0-beta.15 cosmiconfig: 5.2.1 source-map: 0.7.3 stylis: 3.5.4 @@ -4769,25 +5572,36 @@ packages: - supports-color dev: true - /@linaria/core/3.0.0-beta.13: - resolution: {integrity: sha512-3zEi5plBCOsEzUneRVuQb+2SAx3qaC1dj0FfFAI6zIJQoDWu0dlSwKijMRack7oO9tUWrchfj3OkKQAd1LBdVg==} + /@linaria/core/3.0.0-beta.15: + resolution: {integrity: sha512-9sqPCcWIlA1zTck45uNGqrjtnWj5HGa7Lxbaw1ZsCcm6K6WcMVyOqW3OQkMBHuf3OzC50Mzb8z7d7d6Rpg8uFw==} + dependencies: + '@linaria/utils': 3.0.0-beta.15 dev: true /@linaria/core/3.0.0-beta.4: resolution: {integrity: sha512-NzxeMDxRt57nR6tLFZ8xIstp5ld9JQPIyp9+TKtQZhoX3oJuUru+S4vXPr1Gach6VaqKKKT5T6fmJgJl9MMprw==} dev: true - /@linaria/esbuild/3.0.0-beta.13: - resolution: {integrity: sha512-sHG2KNSQ8G96YdY0WgR8nmB49GOvlCMHCFOg2qV5vRgRgF5BepKenZn5a0f7O2KY+J/sp8NnhGe5YO0bFUeQaQ==} + /@linaria/esbuild/3.0.0-beta.15: + resolution: {integrity: sha512-fhTLGMRBN2wCmApCzhC/hv+qGcJkmB/yaZCM3Ijj4mR6VgYbZG71HEUBrOMM70/mHzSzDR1C5wb7NRtG0K1Z3g==} peerDependencies: '@babel/core': '>=7' dependencies: - '@linaria/babel-preset': 3.0.0-beta.13 + '@linaria/babel-preset': 3.0.0-beta.15 esbuild: 0.12.29 transitivePeerDependencies: - supports-color dev: true + /@linaria/logger/3.0.0-beta.15: + resolution: {integrity: sha512-tKytEEus47CZ4/7pbgRYD+Por4tH7/5Um2Quof6Qamd7Xj7brhmAPRRoZzYu4pht+S7V9oNL0X4IBSmNIOYRZw==} + dependencies: + debug: 4.3.3 + picocolors: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + /@linaria/logger/3.0.0-beta.3: resolution: {integrity: sha512-Z2k0RJuA4PffcZcwBN1By8FmcCvcFUe9GHc846B6hNP09zDVhHSFLKJN9NfXJCzJ/9PifOxSUKyOjLtpv3EhGA==} dependencies: @@ -4796,12 +5610,12 @@ packages: - supports-color dev: true - /@linaria/preeval/3.0.0-beta.13: - resolution: {integrity: sha512-0tia6DHxJ9h3/9LWWxseZw8z2wuB0OHwakQrDFV138m3ym3LwHnRalk9VUpIESnnFOiATya20+drUSx0GRxq/Q==} + /@linaria/preeval/3.0.0-beta.15: + resolution: {integrity: sha512-621wPHry4L4YFRdMXE0wxVKsocFL2KC+RECSdc6Oy4MVtMMeTyps671pV27+kQldWIRvp1ZsdhknNMEug+rKdg==} peerDependencies: '@babel/core': '>=7' dependencies: - '@linaria/babel-preset': 3.0.0-beta.13 + '@linaria/babel-preset': 3.0.0-beta.15 transitivePeerDependencies: - supports-color dev: true @@ -4827,24 +5641,28 @@ packages: - supports-color dev: true - /@linaria/shaker/3.0.0-beta.13: - resolution: {integrity: sha512-/ejyBA63pY5OnGK4VxrcD7FxYdQ/weRuPZyy8YEWgh0vVkyeXegwrfupfn+Nt7Lodnej+hrMexloKjxe2NTKfA==} + /@linaria/shaker/3.0.0-beta.15: + resolution: {integrity: sha512-+PZRf8hM7fO4RiNpVVYUhIXQPPKYxowXYMaiILq/9zGcy2tQ6onqsKaQ71SCXvVrL+gVo6A/R13njOCJRZRTew==} peerDependencies: '@babel/core': '>=7' dependencies: - '@babel/generator': 7.16.0 - '@babel/plugin-transform-runtime': 7.16.4 - '@babel/plugin-transform-template-literals': 7.16.0 - '@babel/preset-env': 7.16.4 - '@linaria/babel-preset': 3.0.0-beta.13 - '@linaria/logger': 3.0.0-beta.3 - '@linaria/preeval': 3.0.0-beta.13 + '@babel/generator': 7.16.7 + '@babel/plugin-transform-runtime': 7.16.7 + '@babel/plugin-transform-template-literals': 7.16.7 + '@babel/preset-env': 7.16.7 + '@linaria/babel-preset': 3.0.0-beta.15 + '@linaria/logger': 3.0.0-beta.15 + '@linaria/preeval': 3.0.0-beta.15 babel-plugin-transform-react-remove-prop-types: 0.4.24 - ts-invariant: 0.9.3 + ts-invariant: 0.9.4 transitivePeerDependencies: - supports-color dev: true + /@linaria/utils/3.0.0-beta.15: + resolution: {integrity: sha512-CF0T8ueWjHK8zJT0oqdAq8JgL9a40WCyE5/t6q8WPvC7xRdsrfyUKA7Z8qEsQse2LKESVWJ5cvkkn8J80B6c+A==} + dev: true + /@linaria/webpack-loader/3.0.0-beta.4_@babel+core@7.13.16: resolution: {integrity: sha512-v2Z4QgkBwddKwS/M0ISkLKQBPBNfoyw4AGCBFsjFO5ov/icNrmIy8BKUFCi/yqWu8mk/krmvzPyOBSp4DpFsIA==} dependencies: @@ -4944,34 +5762,6 @@ packages: resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} dev: true - /@microsoft/api-extractor-model/7.12.1: - resolution: {integrity: sha512-Hw+kYfUb1gt6xPWGFW8APtLVWeNEWz4JE6PbLkSHw/j+G1hAaStzgxhBx3GOAWM/G0SCDGVJOpd5YheVOyu/KQ==} - dependencies: - '@microsoft/tsdoc': 0.12.24 - '@rushstack/node-core-library': 3.35.2 - dev: true - - /@microsoft/api-extractor/7.13.0: - resolution: {integrity: sha512-T+14VIhB91oJIett5AZ02VWYmz/01VHFWkcAOWiErIQ8AiFhJZoGqTjGxoi8ZpEEBuAj2EGVYojORwLc/+aiDQ==} - hasBin: true - dependencies: - '@microsoft/api-extractor-model': 7.12.1 - '@microsoft/tsdoc': 0.12.24 - '@rushstack/node-core-library': 3.35.2 - '@rushstack/rig-package': 0.2.9 - '@rushstack/ts-command-line': 4.7.8 - colors: 1.2.5 - lodash: 4.17.20 - resolve: 1.17.0 - semver: 7.3.4 - source-map: 0.6.1 - typescript: 4.1.6 - dev: true - - /@microsoft/tsdoc/0.12.24: - resolution: {integrity: sha512-Mfmij13RUTmHEMi9vRUhMXD7rnGR2VvxeNYtaGtaJ4redwwjT4UXYJ+nzmVJF7hhd4pn/Fx5sncDKxMVFJSWPg==} - dev: true - /@mrmlnc/readdir-enhanced/2.2.1: resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} engines: {node: '>=4'} @@ -5158,17 +5948,17 @@ packages: react-lifecycles-compat: 3.0.4 dev: true - /@rollup/plugin-alias/3.1.5_rollup@2.56.2: + /@rollup/plugin-alias/3.1.5_rollup@2.63.0: resolution: {integrity: sha512-yzUaSvCC/LJPbl9rnzX3HN7vy0tq7EzHoEiQl1ofh4n5r2Rd5bj/+zcJgaGA76xbw95/JjWQyvHg9rOJp2y0oQ==} engines: {node: '>=8.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - rollup: 2.56.2 + rollup: 2.63.0 slash: 3.0.0 dev: true - /@rollup/plugin-babel/5.3.0_@babel+core@7.15.0+rollup@2.56.2: + /@rollup/plugin-babel/5.3.0_@babel+core@7.15.0+rollup@2.63.0: resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -5181,8 +5971,8 @@ packages: dependencies: '@babel/core': 7.15.0 '@babel/helper-module-imports': 7.16.0 - '@rollup/pluginutils': 3.1.0_rollup@2.56.2 - rollup: 2.56.2 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 + rollup: 2.63.0 dev: true /@rollup/plugin-babel/5.3.0_@babel+core@7.16.0+rollup@2.59.0: @@ -5202,264 +5992,180 @@ packages: rollup: 2.59.0 dev: true - /@rollup/plugin-commonjs/17.0.0_rollup@2.37.1: + /@rollup/plugin-commonjs/17.0.0_rollup@2.63.0: resolution: {integrity: sha512-/omBIJG1nHQc+bgkYDuLpb/V08QyutP9amOrJRUSlYJZP+b/68gM//D8sxJe3Yry2QnYIr3QjR3x4AlxJEN3GA==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^2.30.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.37.1 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.1.6 is-reference: 1.2.1 magic-string: 0.25.7 resolve: 1.19.0 - rollup: 2.37.1 + rollup: 2.63.0 dev: true - /@rollup/plugin-commonjs/17.1.0_rollup@2.37.1: + /@rollup/plugin-commonjs/17.1.0_rollup@2.63.0: resolution: {integrity: sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^2.30.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.37.1 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.1.6 is-reference: 1.2.1 magic-string: 0.25.7 resolve: 1.20.0 - rollup: 2.37.1 + rollup: 2.63.0 dev: true - /@rollup/plugin-commonjs/17.1.0_rollup@2.43.0: - resolution: {integrity: sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^2.30.0 - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.43.0 - commondir: 1.0.1 - estree-walker: 2.0.2 - glob: 7.1.6 - is-reference: 1.2.1 - magic-string: 0.25.7 - resolve: 1.20.0 - rollup: 2.43.0 - dev: true - - /@rollup/plugin-commonjs/17.1.0_rollup@2.56.2: - resolution: {integrity: sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^2.30.0 - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.56.2 - commondir: 1.0.1 - estree-walker: 2.0.2 - glob: 7.1.6 - is-reference: 1.2.1 - magic-string: 0.25.7 - resolve: 1.20.0 - rollup: 2.56.2 - dev: true - - /@rollup/plugin-commonjs/21.0.1_rollup@2.59.0: + /@rollup/plugin-commonjs/21.0.1_rollup@2.63.0: resolution: {integrity: sha512-EA+g22lbNJ8p5kuZJUYyhhDK7WgJckW5g4pNN7n4mAFUM96VuwUnNT3xr2Db2iCZPI1pJPbGyfT5mS9T1dHfMg==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^2.38.3 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.59.0 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.1.7 is-reference: 1.2.1 magic-string: 0.25.7 resolve: 1.20.0 - rollup: 2.59.0 + rollup: 2.63.0 dev: true - /@rollup/plugin-image/2.1.0_rollup@2.56.2: + /@rollup/plugin-image/2.1.0_rollup@2.63.0: resolution: {integrity: sha512-IiRhjv65A4Rb/9R+gTP2JdIciumkc8c+3xFoUfw3PUkX77SqqzvJ028AfX856E3ZdExMrqY9C9ZVXN46w6rh9A==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.56.2 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 mini-svg-data-uri: 1.3.3 - rollup: 2.56.2 - dev: true - - /@rollup/plugin-json/4.1.0_rollup@2.37.1: - resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.37.1 - rollup: 2.37.1 - dev: true - - /@rollup/plugin-json/4.1.0_rollup@2.43.0: - resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.43.0 - rollup: 2.43.0 + rollup: 2.63.0 dev: true - /@rollup/plugin-json/4.1.0_rollup@2.56.2: + /@rollup/plugin-json/4.1.0_rollup@2.63.0: resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.56.2 - rollup: 2.56.2 - dev: true - - /@rollup/plugin-json/4.1.0_rollup@2.59.0: - resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.59.0 - rollup: 2.59.0 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 + rollup: 2.63.0 dev: true - /@rollup/plugin-node-resolve/11.1.0_rollup@2.37.1: + /@rollup/plugin-node-resolve/11.1.0_rollup@2.63.0: resolution: {integrity: sha512-ouBBppRdWJKCllDXGzJ7ZIkYbaq+5TmyP0smt1vdJCFfoZhLi31vhpmjLhyo8lreHf4RoeSNllaWrvSqHpHRog==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.37.1 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 '@types/resolve': 1.17.1 builtin-modules: 3.2.0 deepmerge: 4.2.2 is-module: 1.0.0 resolve: 1.19.0 - rollup: 2.37.1 + rollup: 2.63.0 dev: true - /@rollup/plugin-node-resolve/11.2.0_rollup@2.37.1: + /@rollup/plugin-node-resolve/11.2.0_rollup@2.63.0: resolution: {integrity: sha512-qHjNIKYt5pCcn+5RUBQxK8krhRvf1HnyVgUCcFFcweDS7fhkOLZeYh0mhHK6Ery8/bb9tvN/ubPzmfF0qjDCTA==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.37.1 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 '@types/resolve': 1.17.1 builtin-modules: 3.2.0 deepmerge: 4.2.2 is-module: 1.0.0 resolve: 1.20.0 - rollup: 2.37.1 + rollup: 2.63.0 dev: true - /@rollup/plugin-node-resolve/11.2.0_rollup@2.43.0: - resolution: {integrity: sha512-qHjNIKYt5pCcn+5RUBQxK8krhRvf1HnyVgUCcFFcweDS7fhkOLZeYh0mhHK6Ery8/bb9tvN/ubPzmfF0qjDCTA==} - engines: {node: '>= 10.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.43.0 - '@types/resolve': 1.17.1 - builtin-modules: 3.2.0 - deepmerge: 4.2.2 - is-module: 1.0.0 - resolve: 1.20.0 - rollup: 2.43.0 - dev: true - - /@rollup/plugin-node-resolve/11.2.1_rollup@2.56.2: + /@rollup/plugin-node-resolve/11.2.1_rollup@2.59.0: resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.56.2 + '@rollup/pluginutils': 3.1.0_rollup@2.59.0 '@types/resolve': 1.17.1 builtin-modules: 3.2.0 deepmerge: 4.2.2 is-module: 1.0.0 resolve: 1.20.0 - rollup: 2.56.2 + rollup: 2.59.0 dev: true - /@rollup/plugin-node-resolve/11.2.1_rollup@2.59.0: + /@rollup/plugin-node-resolve/11.2.1_rollup@2.63.0: resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.59.0 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 '@types/resolve': 1.17.1 builtin-modules: 3.2.0 deepmerge: 4.2.2 is-module: 1.0.0 resolve: 1.20.0 - rollup: 2.59.0 + rollup: 2.63.0 dev: true - /@rollup/plugin-node-resolve/13.0.6_rollup@2.59.0: + /@rollup/plugin-node-resolve/13.0.6_rollup@2.63.0: resolution: {integrity: sha512-sFsPDMPd4gMqnh2gS0uIxELnoRUp5kBl5knxD2EO0778G1oOJv4G1vyT2cpWz75OU2jDVcXhjVUuTAczGyFNKA==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^2.42.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.59.0 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 '@types/resolve': 1.17.1 builtin-modules: 3.2.0 deepmerge: 4.2.2 is-module: 1.0.0 resolve: 1.20.0 - rollup: 2.59.0 + rollup: 2.63.0 dev: true - /@rollup/plugin-replace/2.3.4_rollup@2.37.1: + /@rollup/plugin-replace/2.3.4_rollup@2.63.0: resolution: {integrity: sha512-waBhMzyAtjCL1GwZes2jaE9MjuQ/DQF2BatH3fRivUF3z0JBFrU0U6iBNC/4WR+2rLKhaAhPWDNPYp4mI6RqdQ==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.37.1 - magic-string: 0.25.7 - rollup: 2.37.1 - dev: true - - /@rollup/plugin-replace/2.4.2_rollup@2.43.0: - resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.43.0 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 magic-string: 0.25.7 - rollup: 2.43.0 + rollup: 2.63.0 dev: true - /@rollup/plugin-replace/2.4.2_rollup@2.56.2: + /@rollup/plugin-replace/2.4.2_rollup@2.59.0: resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.56.2 + '@rollup/pluginutils': 3.1.0_rollup@2.59.0 magic-string: 0.25.7 - rollup: 2.56.2 + rollup: 2.59.0 dev: true - /@rollup/plugin-replace/2.4.2_rollup@2.59.0: + /@rollup/plugin-replace/2.4.2_rollup@2.63.0: resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.59.0 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 magic-string: 0.25.7 - rollup: 2.59.0 + rollup: 2.63.0 dev: true - /@rollup/plugin-typescript/8.3.0_5f9d52eb8f5b9c5f8da2582f59355eb7: + /@rollup/plugin-typescript/8.3.0_cb044fd0a247ab74c5d8bfaf0e00abae: resolution: {integrity: sha512-I5FpSvLbtAdwJ+naznv+B4sjXZUcIvLLceYpITAn7wAP8W0wqc5noLdGIp9HGVntNhRWXctwPYrSSFQxtl0FPA==} engines: {node: '>=8.0.0'} peerDependencies: @@ -5467,38 +6173,14 @@ packages: tslib: '*' typescript: '>=3.7.0' dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.56.2 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 resolve: 1.20.0 - rollup: 2.56.2 + rollup: 2.63.0 tslib: 2.3.1 - typescript: 4.3.5 - dev: true - - /@rollup/pluginutils/3.1.0_rollup@2.37.1: - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.2.2 - rollup: 2.37.1 - dev: true - - /@rollup/pluginutils/3.1.0_rollup@2.43.0: - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.2.2 - rollup: 2.43.0 + typescript: 4.5.4 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.56.2: + /@rollup/pluginutils/3.1.0_rollup@2.59.0: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -5507,10 +6189,10 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.2.2 - rollup: 2.56.2 + rollup: 2.59.0 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.59.0: + /@rollup/pluginutils/3.1.0_rollup@2.63.0: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -5519,7 +6201,7 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.2.2 - rollup: 2.59.0 + rollup: 2.63.0 dev: true /@rollup/pluginutils/4.1.1: @@ -5530,37 +6212,6 @@ packages: picomatch: 2.3.0 dev: true - /@rushstack/node-core-library/3.35.2: - resolution: {integrity: sha512-SPd0uG7mwsf3E30np9afCUhtaM1SBpibrbxOXPz82KWV6SQiPUtXeQfhXq9mSnGxOb3WLWoSDe7AFxQNex3+kQ==} - dependencies: - '@types/node': 10.17.13 - colors: 1.2.5 - fs-extra: 7.0.1 - import-lazy: 4.0.0 - jju: 1.4.0 - resolve: 1.17.0 - semver: 7.3.4 - timsort: 0.3.0 - z-schema: 3.18.4 - dev: true - - /@rushstack/rig-package/0.2.9: - resolution: {integrity: sha512-4tqsZ/m+BjeNAGeAJYzPF53CT96TsAYeZ3Pq3T4tb1pGGM3d3TWfkmALZdKNhpRlAeShKUrb/o/f/0sAuK/1VQ==} - dependencies: - '@types/node': 10.17.13 - resolve: 1.17.0 - strip-json-comments: 3.1.1 - dev: true - - /@rushstack/ts-command-line/4.7.8: - resolution: {integrity: sha512-8ghIWhkph7NnLCMDJtthpsb7TMOsVGXVDvmxjE/CeklTqjbbUFBjGXizJfpbEkRQTELuZQ2+vGn7sGwIWKN2uA==} - dependencies: - '@types/argparse': 1.0.38 - argparse: 1.0.10 - colors: 1.2.5 - string-argv: 0.3.1 - dev: true - /@sindresorhus/is/0.14.0: resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} engines: {node: '>=6'} @@ -5792,7 +6443,7 @@ packages: - '@types/react' dev: true - /@storybook/addon-docs/6.3.12_eslint@8.1.0+typescript@4.4.4: + /@storybook/addon-docs/6.3.12_eslint@8.1.0+typescript@4.5.4: resolution: {integrity: sha512-iUrqJBMTOn2PgN8AWNQkfxfIPkh8pEg27t8UndMgfOpeGK/VWGw2UEifnA82flvntcilT4McxmVbRHkeBY9K5A==} peerDependencies: '@storybook/angular': 6.3.12 @@ -5844,11 +6495,11 @@ packages: '@mdx-js/react': 1.6.22 '@storybook/addons': 6.3.12 '@storybook/api': 6.3.12 - '@storybook/builder-webpack4': 6.3.12_eslint@8.1.0+typescript@4.4.4 + '@storybook/builder-webpack4': 6.3.12_eslint@8.1.0+typescript@4.5.4 '@storybook/client-api': 6.3.12 '@storybook/client-logger': 6.3.12 '@storybook/components': 6.3.12 - '@storybook/core': 6.3.12_7f5de251797ed618e165bdd143385062 + '@storybook/core': 6.3.12_addf72c0806c959dfedda128b9098e6b '@storybook/core-events': 6.3.12 '@storybook/csf': 0.0.1 '@storybook/csf-tools': 6.3.12_@babel+core@7.16.0 @@ -5889,7 +6540,7 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.3.7_typescript@4.3.5: + /@storybook/addon-docs/6.3.7_typescript@4.5.4: resolution: {integrity: sha512-cyuyoLuB5ELhbrXgnZneDCHqNq1wSdWZ4dzdHy1E5WwLPEhLlD6INfEsm8gnDIb4IncYuzMhK3XYBDd7d3ijOg==} peerDependencies: '@storybook/angular': 6.3.7 @@ -5941,11 +6592,11 @@ packages: '@mdx-js/react': 1.6.22 '@storybook/addons': 6.3.7 '@storybook/api': 6.3.7 - '@storybook/builder-webpack4': 6.3.7_typescript@4.3.5 + '@storybook/builder-webpack4': 6.3.7_typescript@4.5.4 '@storybook/client-api': 6.3.7 '@storybook/client-logger': 6.3.7 '@storybook/components': 6.3.7 - '@storybook/core': 6.3.7_f0b419a7e119055c71dcaf6063a7ba7a + '@storybook/core': 6.3.7_be87d59e50dbadec1379bf90c00a77f4 '@storybook/core-events': 6.3.7 '@storybook/csf': 0.0.1 '@storybook/csf-tools': 6.3.7_@babel+core@7.15.0 @@ -5984,7 +6635,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.3.12_eslint@8.1.0+typescript@4.4.4: + /@storybook/addon-essentials/6.3.12_eslint@8.1.0+typescript@4.5.4: resolution: {integrity: sha512-PK0pPE0xkq00kcbBcFwu/5JGHQTu4GvLIHfwwlEGx6GWNQ05l6Q+1Z4nE7xJGv2PSseSx3CKcjn8qykNLe6O6g==} peerDependencies: '@babel/core': ^7.9.6 @@ -6012,7 +6663,7 @@ packages: '@storybook/addon-actions': 6.3.12 '@storybook/addon-backgrounds': 6.3.12 '@storybook/addon-controls': 6.3.12 - '@storybook/addon-docs': 6.3.12_eslint@8.1.0+typescript@4.4.4 + '@storybook/addon-docs': 6.3.12_eslint@8.1.0+typescript@4.5.4 '@storybook/addon-measure': 2.0.0_82d9b0872a2218920e65ea68c1250a0f '@storybook/addon-toolbars': 6.3.12 '@storybook/addon-viewport': 6.3.12 @@ -6044,7 +6695,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.3.7_d95124e751df81c32a1d4f8e491e43a1: + /@storybook/addon-essentials/6.3.7_d1d966e8238575a0cec6ee91145c5623: resolution: {integrity: sha512-ZWAW3qMFrrpfSekmCZibp/ivnohFLJdJweiIA0CLnuCNuuK9kQdpFahWdvyBy5NlCj3UJwB7epTZYZyHqYW7UQ==} peerDependencies: '@babel/core': ^7.9.6 @@ -6073,7 +6724,7 @@ packages: '@storybook/addon-actions': 6.3.7 '@storybook/addon-backgrounds': 6.3.7 '@storybook/addon-controls': 6.3.7 - '@storybook/addon-docs': 6.3.7_typescript@4.3.5 + '@storybook/addon-docs': 6.3.7_typescript@4.5.4 '@storybook/addon-measure': 2.0.0_a4b77c99d63b159b69a1438c89904ed9 '@storybook/addon-toolbars': 6.3.7 '@storybook/addon-viewport': 6.3.7 @@ -6452,7 +7103,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.3.12_e909896d3b3be82f296f6253d3893b12: + /@storybook/builder-webpack4/6.3.12_4a8808b3ff2f62405321a5b11939527b: resolution: {integrity: sha512-Dlm5Fc1svqpFDnVPZdAaEBiM/IDZHMV3RfEGbUTY/ZC0q8b/Ug1czzp/w0aTIjOFRuBDcG6IcplikaqHL8CJLg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -6490,14 +7141,14 @@ packages: '@storybook/client-api': 6.3.12_react-dom@16.14.0+react@16.14.0 '@storybook/client-logger': 6.3.12 '@storybook/components': 6.3.12_react-dom@16.14.0+react@16.14.0 - '@storybook/core-common': 6.3.12_e909896d3b3be82f296f6253d3893b12 + '@storybook/core-common': 6.3.12_4a8808b3ff2f62405321a5b11939527b '@storybook/core-events': 6.3.12 '@storybook/node-logger': 6.3.12 '@storybook/router': 6.3.12_react-dom@16.14.0+react@16.14.0 '@storybook/semver': 7.3.2 '@storybook/theming': 6.3.12_react-dom@16.14.0+react@16.14.0 '@storybook/ui': 6.3.12_react-dom@16.14.0+react@16.14.0 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/webpack': 4.41.31 autoprefixer: 9.8.8 babel-loader: 8.2.3_1bd60a6cd0f7024f034efd75ae733a3f @@ -6515,7 +7166,7 @@ packages: glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.4.4 + pnp-webpack-plugin: 1.6.4_typescript@4.5.4 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_postcss@7.0.39+webpack@4.46.0 @@ -6527,7 +7178,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -6544,7 +7195,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.3.12_eslint@8.1.0+typescript@4.4.4: + /@storybook/builder-webpack4/6.3.12_eslint@8.1.0+typescript@4.5.4: resolution: {integrity: sha512-Dlm5Fc1svqpFDnVPZdAaEBiM/IDZHMV3RfEGbUTY/ZC0q8b/Ug1czzp/w0aTIjOFRuBDcG6IcplikaqHL8CJLg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -6582,14 +7233,14 @@ packages: '@storybook/client-api': 6.3.12 '@storybook/client-logger': 6.3.12 '@storybook/components': 6.3.12 - '@storybook/core-common': 6.3.12_eslint@8.1.0+typescript@4.4.4 + '@storybook/core-common': 6.3.12_eslint@8.1.0+typescript@4.5.4 '@storybook/core-events': 6.3.12 '@storybook/node-logger': 6.3.12 '@storybook/router': 6.3.12 '@storybook/semver': 7.3.2 '@storybook/theming': 6.3.12 '@storybook/ui': 6.3.12 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/webpack': 4.41.31 autoprefixer: 9.8.8 babel-loader: 8.2.3_1bd60a6cd0f7024f034efd75ae733a3f @@ -6607,7 +7258,7 @@ packages: glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.4.4 + pnp-webpack-plugin: 1.6.4_typescript@4.5.4 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_postcss@7.0.39+webpack@4.46.0 @@ -6617,7 +7268,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -6634,7 +7285,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.3.7_typescript@4.3.5: + /@storybook/builder-webpack4/6.3.7_typescript@4.5.4: resolution: {integrity: sha512-M5envblMzAUrNqP1+ouKiL8iSIW/90+kBRU2QeWlZoZl1ib+fiFoKk06cgbaC70Bx1lU8nOnI/VBvB5pLhXLaw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -6672,14 +7323,14 @@ packages: '@storybook/client-api': 6.3.7 '@storybook/client-logger': 6.3.7 '@storybook/components': 6.3.7 - '@storybook/core-common': 6.3.7_typescript@4.3.5 + '@storybook/core-common': 6.3.7_typescript@4.5.4 '@storybook/core-events': 6.3.7 '@storybook/node-logger': 6.3.7 '@storybook/router': 6.3.7 '@storybook/semver': 7.3.2 '@storybook/theming': 6.3.7 '@storybook/ui': 6.3.7 - '@types/node': 14.17.10 + '@types/node': 14.18.5 '@types/webpack': 4.41.30 autoprefixer: 9.8.6 babel-loader: 8.2.2_be352a5a80662835a7707f972edfcfde @@ -6697,7 +7348,7 @@ packages: glob-promise: 3.4.0_glob@7.1.7 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.3.5 + pnp-webpack-plugin: 1.6.4_typescript@4.5.4 postcss: 7.0.36 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_postcss@7.0.36+webpack@4.46.0 @@ -6707,7 +7358,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -6722,7 +7373,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.4.9_8073bd74a106ff14517e8eecceb690e6: + /@storybook/builder-webpack4/6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2: resolution: {integrity: sha512-nDbXDd3A8dvalCiuBZuUT6/GQP14+fuxTj5g+AppCgV1gLO45lXWtX75Hc0IbZrIQte6tDg5xeFQamZSLPMcGg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -6760,7 +7411,7 @@ packages: '@storybook/client-api': 6.4.9_react-dom@16.14.0+react@16.14.0 '@storybook/client-logger': 6.4.9 '@storybook/components': 6.4.9_react-dom@16.14.0+react@16.14.0 - '@storybook/core-common': 6.4.9_8073bd74a106ff14517e8eecceb690e6 + '@storybook/core-common': 6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2 '@storybook/core-events': 6.4.9 '@storybook/node-logger': 6.4.9 '@storybook/preview-web': 6.4.9_react-dom@16.14.0+react@16.14.0 @@ -6769,7 +7420,7 @@ packages: '@storybook/store': 6.4.9_react-dom@16.14.0+react@16.14.0 '@storybook/theming': 6.4.9_react-dom@16.14.0+react@16.14.0 '@storybook/ui': 6.4.9_react-dom@16.14.0+react@16.14.0 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/webpack': 4.41.31 autoprefixer: 9.8.8 babel-loader: 8.2.3_1bd60a6cd0f7024f034efd75ae733a3f @@ -6785,7 +7436,7 @@ packages: glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.3.5 + pnp-webpack-plugin: 1.6.4_typescript@4.5.4 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_postcss@7.0.39+webpack@4.46.0 @@ -6797,7 +7448,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -7155,7 +7806,7 @@ packages: - '@types/react' dev: true - /@storybook/core-client/6.3.12_98e8b17cafa08f66f5b84f6b58d34f3e: + /@storybook/core-client/6.3.12_03e75e593061959a70128391f59da1bf: resolution: {integrity: sha512-8Smd9BgZHJpAdevLKQYinwtjSyCZAuBMoetP4P5hnn53mWl0NFbrHFaAdT+yNchDLZQUbf7Y18VmIqEH+RCR5w==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7183,14 +7834,15 @@ packages: react-dom: 16.14.0_react@16.14.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 unfetch: 4.2.0 util-deprecate: 1.0.2 + webpack: 4.46.0 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/core-client/6.3.12_f0cf51d5cae459eb9eaddb66e491ac01: + /@storybook/core-client/6.3.12_4ee8d703ca7e4280a59c2eaec5efafb2: resolution: {integrity: sha512-8Smd9BgZHJpAdevLKQYinwtjSyCZAuBMoetP4P5hnn53mWl0NFbrHFaAdT+yNchDLZQUbf7Y18VmIqEH+RCR5w==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7218,15 +7870,14 @@ packages: react-dom: 16.14.0_react@16.14.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 4.46.0 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/core-client/6.3.12_typescript@4.4.4: + /@storybook/core-client/6.3.12_typescript@4.5.4: resolution: {integrity: sha512-8Smd9BgZHJpAdevLKQYinwtjSyCZAuBMoetP4P5hnn53mWl0NFbrHFaAdT+yNchDLZQUbf7Y18VmIqEH+RCR5w==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7252,14 +7903,14 @@ packages: qs: 6.10.1 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 unfetch: 4.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/core-client/6.3.12_typescript@4.4.4+webpack@4.46.0: + /@storybook/core-client/6.3.12_typescript@4.5.4+webpack@4.46.0: resolution: {integrity: sha512-8Smd9BgZHJpAdevLKQYinwtjSyCZAuBMoetP4P5hnn53mWl0NFbrHFaAdT+yNchDLZQUbf7Y18VmIqEH+RCR5w==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7285,7 +7936,7 @@ packages: qs: 6.10.1 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -7293,7 +7944,7 @@ packages: - '@types/react' dev: true - /@storybook/core-client/6.3.7_typescript@4.3.5: + /@storybook/core-client/6.3.7_typescript@4.5.4: resolution: {integrity: sha512-M/4A65yV+Y4lsCQXX4BtQO/i3BcMPrU5FkDG8qJd3dkcx2fUlFvGWqQPkcTZE+MPVvMEGl/AsEZSADzah9+dAg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7319,14 +7970,14 @@ packages: qs: 6.10.1 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 unfetch: 4.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/core-client/6.3.7_typescript@4.3.5+webpack@4.46.0: + /@storybook/core-client/6.3.7_typescript@4.5.4+webpack@4.46.0: resolution: {integrity: sha512-M/4A65yV+Y4lsCQXX4BtQO/i3BcMPrU5FkDG8qJd3dkcx2fUlFvGWqQPkcTZE+MPVvMEGl/AsEZSADzah9+dAg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7352,7 +8003,7 @@ packages: qs: 6.10.1 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -7360,7 +8011,7 @@ packages: - '@types/react' dev: true - /@storybook/core-client/6.4.9_70d39b49be06a92d1ddadaf2d0a6de02: + /@storybook/core-client/6.4.9_03e75e593061959a70128391f59da1bf: resolution: {integrity: sha512-LZSpTtvBlpcn+Ifh0jQXlm/8wva2zZ2v13yxYIxX6tAwQvmB54U0N4VdGVmtkiszEp7TQUAzA8Pcyp4GWE+UMA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7391,7 +8042,7 @@ packages: react-dom: 16.14.0_react@16.14.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -7399,7 +8050,7 @@ packages: - '@types/react' dev: true - /@storybook/core-client/6.4.9_8073bd74a106ff14517e8eecceb690e6: + /@storybook/core-client/6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2: resolution: {integrity: sha512-LZSpTtvBlpcn+Ifh0jQXlm/8wva2zZ2v13yxYIxX6tAwQvmB54U0N4VdGVmtkiszEp7TQUAzA8Pcyp4GWE+UMA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7430,14 +8081,14 @@ packages: react-dom: 16.14.0_react@16.14.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 unfetch: 4.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/core-common/6.3.12_e909896d3b3be82f296f6253d3893b12: + /@storybook/core-common/6.3.12_4a8808b3ff2f62405321a5b11939527b: resolution: {integrity: sha512-xlHs2QXELq/moB4MuXjYOczaxU64BIseHsnFBLyboJYN6Yso3qihW5RB7cuJlGohkjb4JwY74dvfT4Ww66rkBA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7472,7 +8123,7 @@ packages: '@storybook/semver': 7.3.2 '@types/glob-base': 0.3.0 '@types/micromatch': 4.0.2 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/pretty-hrtime': 1.0.1 babel-loader: 8.2.3_1bd60a6cd0f7024f034efd75ae733a3f babel-plugin-macros: 3.1.0 @@ -7482,7 +8133,7 @@ packages: express: 4.17.1 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.4.0_831eeee51b9dc6506e4e2983e1c7fb45 + fork-ts-checker-webpack-plugin: 6.4.0_1dcb2aa0504550ceac614868205eb239 glob: 7.2.0 glob-base: 0.3.0 interpret: 2.2.0 @@ -7495,7 +8146,7 @@ packages: react-dom: 16.14.0_react@16.14.0 resolve-from: 5.0.0 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -7506,7 +8157,7 @@ packages: - webpack-command dev: true - /@storybook/core-common/6.3.12_eslint@8.1.0+typescript@4.4.4: + /@storybook/core-common/6.3.12_eslint@8.1.0+typescript@4.5.4: resolution: {integrity: sha512-xlHs2QXELq/moB4MuXjYOczaxU64BIseHsnFBLyboJYN6Yso3qihW5RB7cuJlGohkjb4JwY74dvfT4Ww66rkBA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7541,7 +8192,7 @@ packages: '@storybook/semver': 7.3.2 '@types/glob-base': 0.3.0 '@types/micromatch': 4.0.2 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/pretty-hrtime': 1.0.1 babel-loader: 8.2.3_1bd60a6cd0f7024f034efd75ae733a3f babel-plugin-macros: 3.1.0 @@ -7551,7 +8202,7 @@ packages: express: 4.17.1 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.4.0_831eeee51b9dc6506e4e2983e1c7fb45 + fork-ts-checker-webpack-plugin: 6.4.0_1dcb2aa0504550ceac614868205eb239 glob: 7.2.0 glob-base: 0.3.0 interpret: 2.2.0 @@ -7562,7 +8213,7 @@ packages: pretty-hrtime: 1.0.3 resolve-from: 5.0.0 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -7573,7 +8224,7 @@ packages: - webpack-command dev: true - /@storybook/core-common/6.3.7_typescript@4.3.5: + /@storybook/core-common/6.3.7_typescript@4.5.4: resolution: {integrity: sha512-exLoqRPPsAefwyjbsQBLNFrlPCcv69Q/pclqmIm7FqAPR7f3CKP1rqsHY0PnemizTL/+cLX5S7mY90gI6wpNug==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7608,7 +8259,7 @@ packages: '@storybook/semver': 7.3.2 '@types/glob-base': 0.3.0 '@types/micromatch': 4.0.2 - '@types/node': 14.17.10 + '@types/node': 14.18.5 '@types/pretty-hrtime': 1.0.1 babel-loader: 8.2.2_be352a5a80662835a7707f972edfcfde babel-plugin-macros: 3.1.0 @@ -7629,7 +8280,7 @@ packages: pretty-hrtime: 1.0.3 resolve-from: 5.0.0 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -7638,7 +8289,7 @@ packages: - webpack-command dev: true - /@storybook/core-common/6.4.9_8073bd74a106ff14517e8eecceb690e6: + /@storybook/core-common/6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2: resolution: {integrity: sha512-wVHRfUGnj/Tv8nGjv128NDQ5Zp6c63rSXd1lYLzfZPTJmGOz4rpPPez2IZSnnDwbAWeqUSMekFVZPj4v6yuujQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -7671,7 +8322,7 @@ packages: '@babel/register': 7.16.0_@babel+core@7.16.0 '@storybook/node-logger': 6.4.9 '@storybook/semver': 7.3.2 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/pretty-hrtime': 1.0.1 babel-loader: 8.2.3_1bd60a6cd0f7024f034efd75ae733a3f babel-plugin-macros: 3.1.0 @@ -7681,7 +8332,7 @@ packages: express: 4.17.1 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.4.0_typescript@4.3.5+webpack@4.46.0 + fork-ts-checker-webpack-plugin: 6.4.0_typescript@4.5.4+webpack@4.46.0 fs-extra: 9.1.0 glob: 7.2.0 handlebars: 4.7.7 @@ -7697,7 +8348,7 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -7726,7 +8377,7 @@ packages: core-js: 3.19.1 dev: true - /@storybook/core-server/6.3.12_7f5de251797ed618e165bdd143385062: + /@storybook/core-server/6.3.12_4a8808b3ff2f62405321a5b11939527b: resolution: {integrity: sha512-T/Mdyi1FVkUycdyOnhXvoo3d9nYXLQFkmaJkltxBFLzAePAJUSgAsPL9odNC3+p8Nr2/UDsDzvu/Ow0IF0mzLQ==} peerDependencies: '@storybook/builder-webpack5': 6.3.12 @@ -7743,14 +8394,14 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.5 - '@storybook/builder-webpack4': 6.3.12_eslint@8.1.0+typescript@4.4.4 - '@storybook/core-client': 6.3.12_typescript@4.4.4+webpack@4.46.0 - '@storybook/core-common': 6.3.12_eslint@8.1.0+typescript@4.4.4 - '@storybook/csf-tools': 6.3.12_@babel+core@7.16.0 - '@storybook/manager-webpack4': 6.3.12_eslint@8.1.0+typescript@4.4.4 + '@storybook/builder-webpack4': 6.3.12_4a8808b3ff2f62405321a5b11939527b + '@storybook/core-client': 6.3.12_03e75e593061959a70128391f59da1bf + '@storybook/core-common': 6.3.12_4a8808b3ff2f62405321a5b11939527b + '@storybook/csf-tools': 6.3.12 + '@storybook/manager-webpack4': 6.3.12_4a8808b3ff2f62405321a5b11939527b '@storybook/node-logger': 6.3.12 '@storybook/semver': 7.3.2 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/node-fetch': 2.5.12 '@types/pretty-hrtime': 1.0.1 '@types/webpack': 4.41.31 @@ -7771,10 +8422,12 @@ packages: node-fetch: 2.6.6 pretty-hrtime: 1.0.3 prompts: 2.4.2 + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -7787,7 +8440,7 @@ packages: - webpack-command dev: true - /@storybook/core-server/6.3.12_e909896d3b3be82f296f6253d3893b12: + /@storybook/core-server/6.3.12_addf72c0806c959dfedda128b9098e6b: resolution: {integrity: sha512-T/Mdyi1FVkUycdyOnhXvoo3d9nYXLQFkmaJkltxBFLzAePAJUSgAsPL9odNC3+p8Nr2/UDsDzvu/Ow0IF0mzLQ==} peerDependencies: '@storybook/builder-webpack5': 6.3.12 @@ -7804,14 +8457,14 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.5 - '@storybook/builder-webpack4': 6.3.12_e909896d3b3be82f296f6253d3893b12 - '@storybook/core-client': 6.3.12_f0cf51d5cae459eb9eaddb66e491ac01 - '@storybook/core-common': 6.3.12_e909896d3b3be82f296f6253d3893b12 - '@storybook/csf-tools': 6.3.12 - '@storybook/manager-webpack4': 6.3.12_e909896d3b3be82f296f6253d3893b12 + '@storybook/builder-webpack4': 6.3.12_eslint@8.1.0+typescript@4.5.4 + '@storybook/core-client': 6.3.12_typescript@4.5.4+webpack@4.46.0 + '@storybook/core-common': 6.3.12_eslint@8.1.0+typescript@4.5.4 + '@storybook/csf-tools': 6.3.12_@babel+core@7.16.0 + '@storybook/manager-webpack4': 6.3.12_eslint@8.1.0+typescript@4.5.4 '@storybook/node-logger': 6.3.12 '@storybook/semver': 7.3.2 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/node-fetch': 2.5.12 '@types/pretty-hrtime': 1.0.1 '@types/webpack': 4.41.31 @@ -7832,12 +8485,10 @@ packages: node-fetch: 2.6.6 pretty-hrtime: 1.0.3 prompts: 2.4.2 - react: 16.14.0 - react-dom: 16.14.0_react@16.14.0 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -7850,7 +8501,7 @@ packages: - webpack-command dev: true - /@storybook/core-server/6.3.7_f0b419a7e119055c71dcaf6063a7ba7a: + /@storybook/core-server/6.3.7_be87d59e50dbadec1379bf90c00a77f4: resolution: {integrity: sha512-m5OPD/rmZA7KFewkXzXD46/i1ngUoFO4LWOiAY/wR6RQGjYXGMhSa5UYFF6MNwSbiGS5YieHkR5crB1HP47AhQ==} peerDependencies: '@storybook/builder-webpack5': 6.3.7 @@ -7866,14 +8517,14 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack4': 6.3.7_typescript@4.3.5 - '@storybook/core-client': 6.3.7_typescript@4.3.5+webpack@4.46.0 - '@storybook/core-common': 6.3.7_typescript@4.3.5 + '@storybook/builder-webpack4': 6.3.7_typescript@4.5.4 + '@storybook/core-client': 6.3.7_typescript@4.5.4+webpack@4.46.0 + '@storybook/core-common': 6.3.7_typescript@4.5.4 '@storybook/csf-tools': 6.3.7_@babel+core@7.15.0 - '@storybook/manager-webpack4': 6.3.7_typescript@4.3.5 + '@storybook/manager-webpack4': 6.3.7_typescript@4.5.4 '@storybook/node-logger': 6.3.7 '@storybook/semver': 7.3.2 - '@types/node': 14.17.10 + '@types/node': 14.18.5 '@types/node-fetch': 2.5.12 '@types/pretty-hrtime': 1.0.1 '@types/webpack': 4.41.30 @@ -7897,7 +8548,7 @@ packages: regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -7908,7 +8559,7 @@ packages: - webpack-command dev: true - /@storybook/core-server/6.4.9_8073bd74a106ff14517e8eecceb690e6: + /@storybook/core-server/6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2: resolution: {integrity: sha512-Ht/e17/SNW9BgdvBsnKmqNrlZ6CpHeVsClEUnauMov8I5rxjvKBVmI/UsbJJIy6H6VLiL/RwrA3RvLoAoZE8dA==} peerDependencies: '@storybook/builder-webpack5': 6.4.9 @@ -7925,17 +8576,17 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.5 - '@storybook/builder-webpack4': 6.4.9_8073bd74a106ff14517e8eecceb690e6 - '@storybook/core-client': 6.4.9_70d39b49be06a92d1ddadaf2d0a6de02 - '@storybook/core-common': 6.4.9_8073bd74a106ff14517e8eecceb690e6 + '@storybook/builder-webpack4': 6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2 + '@storybook/core-client': 6.4.9_03e75e593061959a70128391f59da1bf + '@storybook/core-common': 6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2 '@storybook/core-events': 6.4.9 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.9 - '@storybook/manager-webpack4': 6.4.9_8073bd74a106ff14517e8eecceb690e6 + '@storybook/manager-webpack4': 6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2 '@storybook/node-logger': 6.4.9 '@storybook/semver': 7.3.2 '@storybook/store': 6.4.9_react-dom@16.14.0+react@16.14.0 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/node-fetch': 2.5.12 '@types/pretty-hrtime': 1.0.1 '@types/webpack': 4.41.31 @@ -7964,7 +8615,7 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 util-deprecate: 1.0.2 watchpack: 2.3.1 webpack: 4.46.0 @@ -7980,7 +8631,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.3.12_7f5de251797ed618e165bdd143385062: + /@storybook/core/6.3.12_4a8808b3ff2f62405321a5b11939527b: resolution: {integrity: sha512-FJm2ns8wk85hXWKslLWiUWRWwS9KWRq7jlkN6M9p57ghFseSGr4W71Orcoab4P3M7jI97l5yqBfppbscinE74g==} peerDependencies: '@storybook/builder-webpack5': 6.3.12 @@ -7993,9 +8644,11 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.3.12_typescript@4.4.4 - '@storybook/core-server': 6.3.12_7f5de251797ed618e165bdd143385062 - typescript: 4.4.4 + '@storybook/core-client': 6.3.12_4ee8d703ca7e4280a59c2eaec5efafb2 + '@storybook/core-server': 6.3.12_4a8808b3ff2f62405321a5b11939527b + react: 16.14.0 + react-dom: 16.14.0_react@16.14.0 + typescript: 4.5.4 transitivePeerDependencies: - '@babel/core' - '@storybook/manager-webpack5' @@ -8008,7 +8661,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.3.12_e909896d3b3be82f296f6253d3893b12: + /@storybook/core/6.3.12_addf72c0806c959dfedda128b9098e6b: resolution: {integrity: sha512-FJm2ns8wk85hXWKslLWiUWRWwS9KWRq7jlkN6M9p57ghFseSGr4W71Orcoab4P3M7jI97l5yqBfppbscinE74g==} peerDependencies: '@storybook/builder-webpack5': 6.3.12 @@ -8021,11 +8674,9 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.3.12_98e8b17cafa08f66f5b84f6b58d34f3e - '@storybook/core-server': 6.3.12_e909896d3b3be82f296f6253d3893b12 - react: 16.14.0 - react-dom: 16.14.0_react@16.14.0 - typescript: 4.4.4 + '@storybook/core-client': 6.3.12_typescript@4.5.4 + '@storybook/core-server': 6.3.12_addf72c0806c959dfedda128b9098e6b + typescript: 4.5.4 transitivePeerDependencies: - '@babel/core' - '@storybook/manager-webpack5' @@ -8038,7 +8689,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.3.7_f0b419a7e119055c71dcaf6063a7ba7a: + /@storybook/core/6.3.7_be87d59e50dbadec1379bf90c00a77f4: resolution: {integrity: sha512-YTVLPXqgyBg7TALNxQ+cd+GtCm/NFjxr/qQ1mss1T9GCMR0IjE0d0trgOVHHLAO8jCVlK8DeuqZCCgZFTXulRw==} peerDependencies: '@storybook/builder-webpack5': 6.3.7 @@ -8051,9 +8702,9 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.3.7_typescript@4.3.5 - '@storybook/core-server': 6.3.7_f0b419a7e119055c71dcaf6063a7ba7a - typescript: 4.3.5 + '@storybook/core-client': 6.3.7_typescript@4.5.4 + '@storybook/core-server': 6.3.7_be87d59e50dbadec1379bf90c00a77f4 + typescript: 4.5.4 transitivePeerDependencies: - '@babel/core' - '@storybook/manager-webpack5' @@ -8064,7 +8715,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.9_8073bd74a106ff14517e8eecceb690e6: + /@storybook/core/6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2: resolution: {integrity: sha512-Mzhiy13loMSd3PCygK3t7HIT3X3L35iZmbe6+2xVbVmc/3ypCmq4PQALCUoDOGk37Ifrhop6bo6sl4s9YQ6UFw==} peerDependencies: '@storybook/builder-webpack5': 6.4.9 @@ -8078,11 +8729,11 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.4.9_8073bd74a106ff14517e8eecceb690e6 - '@storybook/core-server': 6.4.9_8073bd74a106ff14517e8eecceb690e6 + '@storybook/core-client': 6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2 + '@storybook/core-server': 6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - typescript: 4.3.5 + typescript: 4.5.4 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' @@ -8197,7 +8848,7 @@ packages: lodash: 4.17.21 dev: true - /@storybook/manager-webpack4/6.3.12_e909896d3b3be82f296f6253d3893b12: + /@storybook/manager-webpack4/6.3.12_4a8808b3ff2f62405321a5b11939527b: resolution: {integrity: sha512-OkPYNrHXg2yZfKmEfTokP6iKx4OLTr0gdI5yehi/bLEuQCSHeruxBc70Dxm1GBk1Mrf821wD9WqMXNDjY5Qtug==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -8211,12 +8862,12 @@ packages: '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.16.0 '@babel/preset-react': 7.16.0_@babel+core@7.16.0 '@storybook/addons': 6.3.12_react-dom@16.14.0+react@16.14.0 - '@storybook/core-client': 6.3.12_f0cf51d5cae459eb9eaddb66e491ac01 - '@storybook/core-common': 6.3.12_e909896d3b3be82f296f6253d3893b12 + '@storybook/core-client': 6.3.12_03e75e593061959a70128391f59da1bf + '@storybook/core-common': 6.3.12_4a8808b3ff2f62405321a5b11939527b '@storybook/node-logger': 6.3.12 '@storybook/theming': 6.3.12_react-dom@16.14.0+react@16.14.0 '@storybook/ui': 6.3.12_react-dom@16.14.0+react@16.14.0 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/webpack': 4.41.31 babel-loader: 8.2.3_1bd60a6cd0f7024f034efd75ae733a3f case-sensitive-paths-webpack-plugin: 2.4.0 @@ -8231,7 +8882,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.6 - pnp-webpack-plugin: 1.6.4_typescript@4.4.4 + pnp-webpack-plugin: 1.6.4_typescript@4.5.4 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 read-pkg-up: 7.0.1 @@ -8241,7 +8892,7 @@ packages: telejson: 5.3.3 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -8256,7 +8907,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.3.12_eslint@8.1.0+typescript@4.4.4: + /@storybook/manager-webpack4/6.3.12_eslint@8.1.0+typescript@4.5.4: resolution: {integrity: sha512-OkPYNrHXg2yZfKmEfTokP6iKx4OLTr0gdI5yehi/bLEuQCSHeruxBc70Dxm1GBk1Mrf821wD9WqMXNDjY5Qtug==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -8270,12 +8921,12 @@ packages: '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.16.0 '@babel/preset-react': 7.16.0_@babel+core@7.16.0 '@storybook/addons': 6.3.12 - '@storybook/core-client': 6.3.12_typescript@4.4.4+webpack@4.46.0 - '@storybook/core-common': 6.3.12_eslint@8.1.0+typescript@4.4.4 + '@storybook/core-client': 6.3.12_typescript@4.5.4+webpack@4.46.0 + '@storybook/core-common': 6.3.12_eslint@8.1.0+typescript@4.5.4 '@storybook/node-logger': 6.3.12 '@storybook/theming': 6.3.12 '@storybook/ui': 6.3.12 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/webpack': 4.41.31 babel-loader: 8.2.3_1bd60a6cd0f7024f034efd75ae733a3f case-sensitive-paths-webpack-plugin: 2.4.0 @@ -8290,7 +8941,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.6 - pnp-webpack-plugin: 1.6.4_typescript@4.4.4 + pnp-webpack-plugin: 1.6.4_typescript@4.5.4 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -8298,7 +8949,7 @@ packages: telejson: 5.3.3 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.4.4 + typescript: 4.5.4 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -8313,7 +8964,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.3.7_typescript@4.3.5: + /@storybook/manager-webpack4/6.3.7_typescript@4.5.4: resolution: {integrity: sha512-cwUdO3oklEtx6y+ZOl2zHvflICK85emiXBQGgRcCsnwWQRBZOMh+tCgOSZj4jmISVpT52RtT9woG4jKe15KBig==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -8327,12 +8978,12 @@ packages: '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.15.0 '@babel/preset-react': 7.14.5_@babel+core@7.15.0 '@storybook/addons': 6.3.7 - '@storybook/core-client': 6.3.7_typescript@4.3.5+webpack@4.46.0 - '@storybook/core-common': 6.3.7_typescript@4.3.5 + '@storybook/core-client': 6.3.7_typescript@4.5.4+webpack@4.46.0 + '@storybook/core-common': 6.3.7_typescript@4.5.4 '@storybook/node-logger': 6.3.7 '@storybook/theming': 6.3.7 '@storybook/ui': 6.3.7 - '@types/node': 14.17.10 + '@types/node': 14.18.5 '@types/webpack': 4.41.30 babel-loader: 8.2.2_be352a5a80662835a7707f972edfcfde case-sensitive-paths-webpack-plugin: 2.4.0 @@ -8347,7 +8998,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.1 - pnp-webpack-plugin: 1.6.4_typescript@4.3.5 + pnp-webpack-plugin: 1.6.4_typescript@4.5.4 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -8355,7 +9006,7 @@ packages: telejson: 5.3.3 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -8368,7 +9019,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.4.9_8073bd74a106ff14517e8eecceb690e6: + /@storybook/manager-webpack4/6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2: resolution: {integrity: sha512-828x3rqMuzBNSb13MSDo2nchY7fuywh+8+Vk+fn00MvBYJjogd5RQFx5ocwhHzmwXbnESIerlGwe81AzMck8ng==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -8382,12 +9033,12 @@ packages: '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.16.0 '@babel/preset-react': 7.16.0_@babel+core@7.16.0 '@storybook/addons': 6.4.9_react-dom@16.14.0+react@16.14.0 - '@storybook/core-client': 6.4.9_70d39b49be06a92d1ddadaf2d0a6de02 - '@storybook/core-common': 6.4.9_8073bd74a106ff14517e8eecceb690e6 + '@storybook/core-client': 6.4.9_03e75e593061959a70128391f59da1bf + '@storybook/core-common': 6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2 '@storybook/node-logger': 6.4.9 '@storybook/theming': 6.4.9_react-dom@16.14.0+react@16.14.0 '@storybook/ui': 6.4.9_react-dom@16.14.0+react@16.14.0 - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/webpack': 4.41.31 babel-loader: 8.2.3_1bd60a6cd0f7024f034efd75ae733a3f case-sensitive-paths-webpack-plugin: 2.4.0 @@ -8401,7 +9052,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.6 - pnp-webpack-plugin: 1.6.4_typescript@4.3.5 + pnp-webpack-plugin: 1.6.4_typescript@4.5.4 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 read-pkg-up: 7.0.1 @@ -8411,7 +9062,7 @@ packages: telejson: 5.3.3 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.3.5 + typescript: 4.5.4 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 util-deprecate: 1.0.2 webpack: 4.46.0 @@ -8468,7 +9119,7 @@ packages: core-js: 3.16.2 dev: true - /@storybook/preact/6.3.12_95076c79c13120062fc2121e56d666e8: + /@storybook/preact/6.3.12_1ac846e50fb89c4b9521a3038bddbbd4: resolution: {integrity: sha512-okP4Y1Zf26AdjK/5sFJGoF1Ce2WPK/3w+x0WgMdEOs7K7/pnKNQ1Ck8KLXmPyjTN+6bVoIMP8NcS8ZqHJu25lw==} engines: {node: '>=10.13.0'} hasBin: true @@ -8479,8 +9130,8 @@ packages: dependencies: '@babel/plugin-transform-react-jsx': 7.16.0 '@storybook/addons': 6.3.12_react-dom@16.14.0+react@16.14.0 - '@storybook/core': 6.3.12_e909896d3b3be82f296f6253d3893b12 - '@storybook/core-common': 6.3.12_e909896d3b3be82f296f6253d3893b12 + '@storybook/core': 6.3.12_4a8808b3ff2f62405321a5b11939527b + '@storybook/core-common': 6.3.12_4a8808b3ff2f62405321a5b11939527b '@types/webpack-env': 1.16.3 core-js: 3.19.1 global: 4.4.0 @@ -8502,7 +9153,7 @@ packages: - webpack-command dev: true - /@storybook/preact/6.4.9_9cd0ede338ef3d2deb8dbc69bc115c66: + /@storybook/preact/6.4.9_7ac135b2eab8a45315147b85be8cb430: resolution: {integrity: sha512-LsH3bkl1iwdF+v7+Fo/yZNvdhmVyuqYkRhu95QO46925dikOJvENWx8H81Ceb+TQj58xHayxtf+dHsUD36dFkQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -8514,8 +9165,8 @@ packages: '@babel/core': 7.13.16 '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.13.16 '@storybook/addons': 6.4.9_react-dom@16.14.0+react@16.14.0 - '@storybook/core': 6.4.9_8073bd74a106ff14517e8eecceb690e6 - '@storybook/core-common': 6.4.9_8073bd74a106ff14517e8eecceb690e6 + '@storybook/core': 6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2 + '@storybook/core-common': 6.4.9_4ee8d703ca7e4280a59c2eaec5efafb2 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/store': 6.4.9_react-dom@16.14.0+react@16.14.0 '@types/webpack-env': 1.16.3 @@ -9020,10 +9671,6 @@ packages: engines: {node: '>=10.13.0'} dev: true - /@types/argparse/1.0.38: - resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} - dev: true - /@types/aria-query/4.2.2: resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} dev: true @@ -9035,14 +9682,14 @@ packages: /@types/cheerio/0.22.30: resolution: {integrity: sha512-t7ZVArWZlq3dFa9Yt33qFBQIK4CQd1Q3UJp0V+UhP6vgLWLM6Qug7vZuRSGXg45zXeB1Fm5X2vmBkEX58LV2Tw==} dependencies: - '@types/node': 16.11.6 + '@types/node': 17.0.8 dev: true - /@types/chrome/0.0.128: - resolution: {integrity: sha512-eGc599TDtersMBW1cSnExHm0IHrXrO5xdk6Sa2Dq30ED+hR1rpT1ez0NNcCgvGO52nmktGfyvd3Uyquzv3LL4g==} + /@types/chrome/0.0.174: + resolution: {integrity: sha512-x5kjvNdwDtOnT+vbnksj69pDl0u9P/WH9LbQWJawLqGgkBRO3AN/xzTxTPgLpp3IqCbuwfp7bRCHqkkaZguzWw==} dependencies: '@types/filesystem': 0.0.32 - '@types/har-format': 1.2.7 + '@types/har-format': 1.2.8 dev: true /@types/color-convert/2.0.0: @@ -9055,11 +9702,11 @@ packages: resolution: {integrity: sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==} dev: true - /@types/enzyme/3.10.10: - resolution: {integrity: sha512-/D4wFhiEjUDfPu+j5FVK0g/jf7rqeEIpNfAI+kyxzLpw5CKO0drnW3W5NC38alIjsWgnyQ8pbuPF5+UD+vhVyg==} + /@types/enzyme/3.10.11: + resolution: {integrity: sha512-LEtC7zXsQlbGXWGcnnmOI7rTyP+i1QzQv4Va91RKXDEukLDaNyxu0rXlfMiGEhJwfgTPCTb0R+Pnlj//oM9e/w==} dependencies: '@types/cheerio': 0.22.30 - '@types/react': 17.0.34 + '@types/react': 17.0.38 dev: true /@types/estree/0.0.39: @@ -9088,17 +9735,17 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 3.0.5 - '@types/node': 16.11.6 + '@types/node': 17.0.8 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 16.11.6 + '@types/node': 17.0.8 dev: true - /@types/har-format/1.2.7: - resolution: {integrity: sha512-/TPzUG0tJn5x1TUcVLlDx2LqbE58hyOzDVAc9kf8SpOEmguHjU6bKUyfqb211AdqLOmU/SNyXvLKPNP5qTlfRw==} + /@types/har-format/1.2.8: + resolution: {integrity: sha512-OP6L9VuZNdskgNN3zFQQ54ceYD8OLq5IbqO4VK91ORLfOm7WdT/CiT/pHEBSQEqCInJ2y3O6iCm/zGtPElpgJQ==} dev: true /@types/hast/2.3.4: @@ -9150,7 +9797,7 @@ packages: /@types/markdown-to-jsx/6.11.3: resolution: {integrity: sha512-30nFYpceM/ZEvhGiqWjm5quLUxNeld0HCzJEXMZZDpq53FPkS85mTwkWtCXzCqq8s5JYLgM5W392a02xn8Bdaw==} dependencies: - '@types/react': 17.0.34 + '@types/react': 17.0.38 dev: true /@types/mdast/3.0.10: @@ -9176,37 +9823,21 @@ packages: /@types/node-fetch/2.5.12: resolution: {integrity: sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw==} dependencies: - '@types/node': 14.17.32 + '@types/node': 14.18.5 form-data: 3.0.1 dev: true - /@types/node/10.17.13: - resolution: {integrity: sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==} - dev: true - - /@types/node/14.14.22: - resolution: {integrity: sha512-g+f/qj/cNcqKkc3tFqlXOYjrmZA+jNBiDzbP3kH+B+otKFqAdPgVTGP1IeKRdMml/aE69as5S4FqtxAbl+LaMw==} - - /@types/node/14.14.34: - resolution: {integrity: sha512-dBPaxocOK6UVyvhbnpFIj2W+S+1cBTkHQbFQfeeJhoKFbzYcVUGHvddeWPSucKATb3F0+pgDq0i6ghEaZjsugA==} - dev: true - - /@types/node/14.17.1: - resolution: {integrity: sha512-/tpUyFD7meeooTRwl3sYlihx2BrJE7q9XF71EguPFIySj9B7qgnRtHsHTho+0AUm4m1SvWGm6uSncrR94q6Vtw==} - dev: true - - /@types/node/14.17.10: - resolution: {integrity: sha512-09x2d6kNBwjHgyh3jOUE2GE4DFoxDriDvWdu6mFhMP1ysynGYazt4ecZmJlL6/fe4Zi2vtYvTvtL7epjQQrBhA==} - dev: true - - /@types/node/14.17.32: - resolution: {integrity: sha512-JcII3D5/OapPGx+eJ+Ik1SQGyt6WvuqdRfh9jUwL6/iHGjmyOriBDciBUu7lEIBTL2ijxwrR70WUnw5AEDmFvQ==} + /@types/node/14.18.5: + resolution: {integrity: sha512-LMy+vDDcQR48EZdEx5wRX1q/sEl6NdGuHXPnfeL8ixkwCOSZ2qnIyIZmcCbdX0MeRqHhAcHmX+haCbrS8Run+A==} dev: true /@types/node/16.11.6: resolution: {integrity: sha512-ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w==} dev: true + /@types/node/17.0.8: + resolution: {integrity: sha512-YofkM6fGv4gDJq78g4j0mMuGMkZVxZDgtU0JRdx6FgiJDG+0fY0GKVolOV8WqVmEhLCXkQRjwDdKyPxJp/uucg==} + /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} dev: true @@ -9246,21 +9877,21 @@ packages: /@types/reach__router/1.3.9: resolution: {integrity: sha512-N6rqQqTTAV/zKLfK3iq9Ww3wqCEhTZvsilhl0zI09zETdVq1QGmJH6+/xnj8AFUWIrle2Cqo+PGM/Ltr1vBb9w==} dependencies: - '@types/react': 17.0.34 + '@types/react': 17.0.38 dev: true /@types/react-syntax-highlighter/11.0.5: resolution: {integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==} dependencies: - '@types/react': 17.0.34 + '@types/react': 17.0.38 dev: true - /@types/react/17.0.34: - resolution: {integrity: sha512-46FEGrMjc2+8XhHXILr+3+/sTe3OfzSPU9YGKILLrUYbQ1CLQC9Daqo1KzENGXAWwrFwiY0l4ZbF20gRvgpWTg==} + /@types/react/17.0.38: + resolution: {integrity: sha512-SI92X1IA+FMnP3qM5m4QReluXzhcmovhZnLNm3pyeQlooi02qI7sLiepEYqT678uNiyc25XfCqxREFpy3W7YhQ==} dependencies: '@types/prop-types': 15.7.4 '@types/scheduler': 0.16.2 - csstype: 3.0.9 + csstype: 3.0.10 dev: true /@types/resolve/1.17.1: @@ -9306,7 +9937,7 @@ packages: /@types/webpack-sources/3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/source-list-map': 0.1.2 source-map: 0.7.3 dev: true @@ -9314,7 +9945,7 @@ packages: /@types/webpack/4.41.30: resolution: {integrity: sha512-GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA==} dependencies: - '@types/node': 14.17.10 + '@types/node': 17.0.8 '@types/tapable': 1.0.8 '@types/uglify-js': 3.13.1 '@types/webpack-sources': 3.2.0 @@ -9325,7 +9956,7 @@ packages: /@types/webpack/4.41.31: resolution: {integrity: sha512-/i0J7sepXFIp1ZT7FjUGi1eXMCg8HCCzLJEQkKsOtbJFontsJLolBcDC+3qxn5pPwiCt1G0ZdRmYRzNBtvpuGQ==} dependencies: - '@types/node': 14.17.32 + '@types/node': 14.18.5 '@types/tapable': 1.0.8 '@types/uglify-js': 3.13.1 '@types/webpack-sources': 3.2.0 @@ -9343,7 +9974,7 @@ packages: '@types/yargs-parser': 20.2.1 dev: true - /@typescript-eslint/eslint-plugin/4.14.0_4f40ec8f9ae74407a8c29890901bb23f: + /@typescript-eslint/eslint-plugin/4.14.0_922de0b5263f311c929bd8e920f3168c: resolution: {integrity: sha512-IJ5e2W7uFNfg4qh9eHkHRUCbgZ8VKtGwD07kannJvM5t/GU8P8+24NX8gi3Hf5jST5oWPY8kyV1s/WtfiZ4+Ww==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -9354,22 +9985,22 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 4.14.0_eslint@7.18.0+typescript@4.4.4 - '@typescript-eslint/parser': 4.14.0_eslint@7.18.0+typescript@4.4.4 + '@typescript-eslint/experimental-utils': 4.14.0_eslint@8.6.0+typescript@4.5.4 + '@typescript-eslint/parser': 4.14.0_eslint@8.6.0+typescript@4.5.4 '@typescript-eslint/scope-manager': 4.14.0 debug: 4.3.1 - eslint: 7.18.0 + eslint: 8.6.0 functional-red-black-tree: 1.0.1 lodash: 4.17.20 regexpp: 3.1.0 semver: 7.3.4 - tsutils: 3.19.1_typescript@4.4.4 - typescript: 4.4.4 + tsutils: 3.19.1_typescript@4.5.4 + typescript: 4.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.3.0_f8873316f48f7781ccc3e081fc76e214: + /@typescript-eslint/eslint-plugin/5.3.0_87085621a6d65a3070a3ec0bccad048f: resolution: {integrity: sha512-ARUEJHJrq85aaiCqez7SANeahDsJTD3AEua34EoQN9pHS6S5Bq9emcIaGGySt/4X2zSi+vF5hAH52sEen7IO7g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -9380,8 +10011,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 5.3.0_eslint@8.1.0+typescript@4.4.4 - '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.4.4 + '@typescript-eslint/experimental-utils': 5.3.0_eslint@8.1.0+typescript@4.5.4 + '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.5.4 '@typescript-eslint/scope-manager': 5.3.0 debug: 4.3.2 eslint: 8.1.0 @@ -9389,20 +10020,20 @@ packages: ignore: 5.1.9 regexpp: 3.2.0 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.4.4 - typescript: 4.4.4 + tsutils: 3.21.0_typescript@4.5.4 + typescript: 4.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/experimental-utils/2.34.0_eslint@8.1.0+typescript@4.4.4: + /@typescript-eslint/experimental-utils/2.34.0_eslint@8.1.0+typescript@4.5.4: resolution: {integrity: sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} peerDependencies: eslint: '*' dependencies: '@types/json-schema': 7.0.9 - '@typescript-eslint/typescript-estree': 2.34.0_typescript@4.4.4 + '@typescript-eslint/typescript-estree': 2.34.0_typescript@4.5.4 eslint: 8.1.0 eslint-scope: 5.1.1 eslint-utils: 2.1.0 @@ -9411,7 +10042,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/4.14.0_eslint@7.18.0+typescript@4.4.4: + /@typescript-eslint/experimental-utils/4.14.0_eslint@8.6.0+typescript@4.5.4: resolution: {integrity: sha512-6i6eAoiPlXMKRbXzvoQD5Yn9L7k9ezzGRvzC/x1V3650rUk3c3AOjQyGYyF9BDxQQDK2ElmKOZRD0CbtdkMzQQ==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -9420,8 +10051,8 @@ packages: '@types/json-schema': 7.0.7 '@typescript-eslint/scope-manager': 4.14.0 '@typescript-eslint/types': 4.14.0 - '@typescript-eslint/typescript-estree': 4.14.0_typescript@4.4.4 - eslint: 7.18.0 + '@typescript-eslint/typescript-estree': 4.14.0_typescript@4.5.4 + eslint: 8.6.0 eslint-scope: 5.1.1 eslint-utils: 2.1.0 transitivePeerDependencies: @@ -9429,7 +10060,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/5.3.0_eslint@8.1.0+typescript@4.4.4: + /@typescript-eslint/experimental-utils/5.3.0_eslint@8.1.0+typescript@4.5.4: resolution: {integrity: sha512-NFVxYTjKj69qB0FM+piah1x3G/63WB8vCBMnlnEHUsiLzXSTWb9FmFn36FD9Zb4APKBLY3xRArOGSMQkuzTF1w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -9438,7 +10069,7 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.3.0 '@typescript-eslint/types': 5.3.0 - '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.4.4 + '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.5.4 eslint: 8.1.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.1.0 @@ -9447,7 +10078,7 @@ packages: - typescript dev: true - /@typescript-eslint/parser/4.14.0_eslint@7.18.0+typescript@4.4.4: + /@typescript-eslint/parser/4.14.0_eslint@8.6.0+typescript@4.5.4: resolution: {integrity: sha512-sUDeuCjBU+ZF3Lzw0hphTyScmDDJ5QVkyE21pRoBo8iDl7WBtVFS+WDN3blY1CH3SBt7EmYCw6wfmJjF0l/uYg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -9459,35 +10090,15 @@ packages: dependencies: '@typescript-eslint/scope-manager': 4.14.0 '@typescript-eslint/types': 4.14.0 - '@typescript-eslint/typescript-estree': 4.14.0_typescript@4.4.4 - debug: 4.3.1 - eslint: 7.18.0 - typescript: 4.4.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/parser/4.4.1_eslint@7.18.0+typescript@4.4.4: - resolution: {integrity: sha512-S0fuX5lDku28Au9REYUsV+hdJpW/rNW0gWlc4SXzF/kdrRaAVX9YCxKpziH7djeWT/HFAjLZcnY7NJD8xTeUEg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 4.4.1 - '@typescript-eslint/types': 4.4.1 - '@typescript-eslint/typescript-estree': 4.4.1_typescript@4.4.4 + '@typescript-eslint/typescript-estree': 4.14.0_typescript@4.5.4 debug: 4.3.1 - eslint: 7.18.0 - typescript: 4.4.4 + eslint: 8.6.0 + typescript: 4.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.3.0_eslint@8.1.0+typescript@4.4.4: + /@typescript-eslint/parser/5.3.0_eslint@8.1.0+typescript@4.5.4: resolution: {integrity: sha512-rKu/yAReip7ovx8UwOAszJVO5MgBquo8WjIQcp1gx4pYQCwYzag+I5nVNHO4MqyMkAo0gWt2gWUi+36gWAVKcw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -9499,10 +10110,10 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.3.0 '@typescript-eslint/types': 5.3.0 - '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.4.4 + '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.5.4 debug: 4.3.2 eslint: 8.1.0 - typescript: 4.4.4 + typescript: 4.5.4 transitivePeerDependencies: - supports-color dev: true @@ -9515,14 +10126,6 @@ packages: '@typescript-eslint/visitor-keys': 4.14.0 dev: true - /@typescript-eslint/scope-manager/4.4.1: - resolution: {integrity: sha512-2oD/ZqD4Gj41UdFeWZxegH3cVEEH/Z6Bhr/XvwTtGv66737XkR4C9IqEkebCuqArqBJQSj4AgNHHiN1okzD/wQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dependencies: - '@typescript-eslint/types': 4.4.1 - '@typescript-eslint/visitor-keys': 4.4.1 - dev: true - /@typescript-eslint/scope-manager/5.3.0: resolution: {integrity: sha512-22Uic9oRlTsPppy5Tcwfj+QET5RWEnZ5414Prby465XxQrQFZ6nnm5KnXgnsAJefG4hEgMnaxTB3kNEyjdjj6A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -9536,17 +10139,12 @@ packages: engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: true - /@typescript-eslint/types/4.4.1: - resolution: {integrity: sha512-KNDfH2bCyax5db+KKIZT4rfA8rEk5N0EJ8P0T5AJjo5xrV26UAzaiqoJCxeaibqc0c/IvZxp7v2g3difn2Pn3w==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dev: true - /@typescript-eslint/types/5.3.0: resolution: {integrity: sha512-fce5pG41/w8O6ahQEhXmMV+xuh4+GayzqEogN24EK+vECA3I6pUwKuLi5QbXO721EMitpQne5VKXofPonYlAQg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/2.34.0_typescript@4.4.4: + /@typescript-eslint/typescript-estree/2.34.0_typescript@4.5.4: resolution: {integrity: sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} peerDependencies: @@ -9561,13 +10159,13 @@ packages: is-glob: 4.0.3 lodash: 4.17.21 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.4.4 - typescript: 4.4.4 + tsutils: 3.21.0_typescript@4.5.4 + typescript: 4.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/4.14.0_typescript@4.4.4: + /@typescript-eslint/typescript-estree/4.14.0_typescript@4.5.4: resolution: {integrity: sha512-wRjZ5qLao+bvS2F7pX4qi2oLcOONIB+ru8RGBieDptq/SudYwshveORwCVU4/yMAd4GK7Fsf8Uq1tjV838erag==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -9583,35 +10181,13 @@ packages: is-glob: 4.0.1 lodash: 4.17.20 semver: 7.3.4 - tsutils: 3.19.1_typescript@4.4.4 - typescript: 4.4.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/typescript-estree/4.4.1_typescript@4.4.4: - resolution: {integrity: sha512-wP/V7ScKzgSdtcY1a0pZYBoCxrCstLrgRQ2O9MmCUZDtmgxCO/TCqOTGRVwpP4/2hVfqMz/Vw1ZYrG8cVxvN3g==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 4.4.1 - '@typescript-eslint/visitor-keys': 4.4.1 - debug: 4.3.1 - globby: 11.0.2 - is-glob: 4.0.1 - lodash: 4.17.20 - semver: 7.3.4 - tsutils: 3.19.1_typescript@4.4.4 - typescript: 4.4.4 + tsutils: 3.19.1_typescript@4.5.4 + typescript: 4.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.3.0_typescript@4.4.4: + /@typescript-eslint/typescript-estree/5.3.0_typescript@4.5.4: resolution: {integrity: sha512-FJ0nqcaUOpn/6Z4Jwbtf+o0valjBLkqc3MWkMvrhA2TvzFXtcclIM8F4MBEmYa2kgcI8EZeSAzwoSrIC8JYkug==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -9626,8 +10202,8 @@ packages: globby: 11.0.4 is-glob: 4.0.3 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.4.4 - typescript: 4.4.4 + tsutils: 3.21.0_typescript@4.5.4 + typescript: 4.5.4 transitivePeerDependencies: - supports-color dev: true @@ -9637,15 +10213,7 @@ packages: engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dependencies: '@typescript-eslint/types': 4.14.0 - eslint-visitor-keys: 2.0.0 - dev: true - - /@typescript-eslint/visitor-keys/4.4.1: - resolution: {integrity: sha512-H2JMWhLaJNeaylSnMSQFEhT/S/FsJbebQALmoJxMPMxLtlVAMy2uJP/Z543n9IizhjRayLSqoInehCeNW9rWcw==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dependencies: - '@typescript-eslint/types': 4.4.1 - eslint-visitor-keys: 2.0.0 + eslint-visitor-keys: 2.1.0 dev: true /@typescript-eslint/visitor-keys/5.3.0: @@ -9834,6 +10402,14 @@ packages: acorn: 8.5.0 dev: true + /acorn-jsx/5.3.2_acorn@8.7.0: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.7.0 + dev: true + /acorn-walk/6.2.0: resolution: {integrity: sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==} engines: {node: '>=0.4.0'} @@ -9884,6 +10460,12 @@ packages: hasBin: true dev: true + /acorn/8.7.0: + resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + /address/1.1.2: resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==} engines: {node: '>= 0.12.0'} @@ -9942,15 +10524,6 @@ packages: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - /ajv/7.0.3: - resolution: {integrity: sha512-R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ==} - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - dev: true - /ajv/8.6.2: resolution: {integrity: sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w==} dependencies: @@ -10111,8 +10684,8 @@ packages: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} engines: {node: '>=6.0'} dependencies: - '@babel/runtime': 7.16.3 - '@babel/runtime-corejs3': 7.15.3 + '@babel/runtime': 7.16.7 + '@babel/runtime-corejs3': 7.16.7 dev: true /arr-diff/4.0.0: @@ -10147,28 +10720,6 @@ packages: resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} dev: true - /array-includes/3.1.2: - resolution: {integrity: sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 - get-intrinsic: 1.0.2 - is-string: 1.0.5 - dev: true - - /array-includes/3.1.3: - resolution: {integrity: sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.18.5 - get-intrinsic: 1.1.1 - is-string: 1.0.7 - dev: true - /array-includes/3.1.4: resolution: {integrity: sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==} engines: {node: '>= 0.4'} @@ -10222,16 +10773,6 @@ packages: es-abstract: 1.19.1 dev: true - /array.prototype.flatmap/1.2.4: - resolution: {integrity: sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.18.5 - function-bind: 1.1.1 - dev: true - /array.prototype.flatmap/1.2.5: resolution: {integrity: sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==} engines: {node: '>= 0.4'} @@ -10453,7 +10994,7 @@ packages: read-pkg: 5.2.0 resolve-cwd: 3.0.0 slash: 3.0.0 - source-map-support: 0.5.19 + source-map-support: 0.5.21 stack-utils: 2.0.3 strip-ansi: 6.0.0 supertap: 2.0.0 @@ -10484,14 +11025,6 @@ packages: engines: {node: '>=4'} dev: true - /axios/0.21.1: - resolution: {integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==} - dependencies: - follow-redirects: 1.14.2 - transitivePeerDependencies: - - debug - dev: false - /axios/0.21.4: resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} dependencies: @@ -10500,6 +11033,14 @@ packages: - debug dev: true + /axios/0.24.0: + resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==} + dependencies: + follow-redirects: 1.14.6 + transitivePeerDependencies: + - debug + dev: false + /axobject-query/2.2.0: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} dev: true @@ -10761,7 +11302,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-define-polyfill-provider': 0.3.0 - core-js-compat: 3.19.1 + core-js-compat: 3.20.2 transitivePeerDependencies: - supports-color dev: true @@ -10773,7 +11314,7 @@ packages: dependencies: '@babel/core': 7.16.0 '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0 - core-js-compat: 3.19.1 + core-js-compat: 3.20.2 transitivePeerDependencies: - supports-color dev: true @@ -10920,8 +11461,8 @@ packages: open: 7.4.2 dev: true - /big-integer/1.6.48: - resolution: {integrity: sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w==} + /big-integer/1.6.51: + resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} engines: {node: '>=0.6'} dev: false @@ -11183,6 +11724,18 @@ packages: picocolors: 1.0.0 dev: true + /browserslist/4.19.1: + resolution: {integrity: sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001296 + electron-to-chromium: 1.4.35 + escalade: 3.1.1 + node-releases: 2.0.1 + picocolors: 1.0.0 + dev: true + /bser/2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: @@ -11425,6 +11978,10 @@ packages: resolution: {integrity: sha512-kFXwYvHe5rix25uwueBxC569o53J6TpnGu0BEEn+6Lhl2vsnAumRFWEBhDft1fwyo6m1r4i+RqA4+163FpeFcA==} dev: true + /caniuse-lite/1.0.30001296: + resolution: {integrity: sha512-WfrtPEoNSoeATDlf4y3QvkwiELl9GyPLISV5GejTbbQRtQx4LhsXmc9IQ6XCL2d7UxCyEzToEZNMeqR79OUw8Q==} + dev: true + /capture-exit/2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} engines: {node: 6.* || 8.* || >= 10.*} @@ -11790,15 +12347,11 @@ packages: resolution: {integrity: sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==} dev: true - /colors/1.2.5: - resolution: {integrity: sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==} - engines: {node: '>=0.1.90'} - dev: true - /colors/1.4.0: resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} engines: {node: '>=0.1.90'} dev: true + optional: true /combined-stream/1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} @@ -11933,8 +12486,8 @@ packages: xdg-basedir: 4.0.0 dev: true - /confusing-browser-globals/1.0.10: - resolution: {integrity: sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==} + /confusing-browser-globals/1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} dev: true /connect-history-api-fallback/1.6.0: @@ -11959,11 +12512,6 @@ packages: resolution: {integrity: sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=} dev: true - /contains-path/0.1.0: - resolution: {integrity: sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=} - engines: {node: '>=0.10.0'} - dev: true - /content-disposition/0.5.3: resolution: {integrity: sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==} engines: {node: '>= 0.6'} @@ -12052,6 +12600,13 @@ packages: semver: 7.0.0 dev: true + /core-js-compat/3.20.2: + resolution: {integrity: sha512-qZEzVQ+5Qh6cROaTPFLNS4lkvQ6mBzE3R6A6EEpssj7Zr2egMHgsy4XapdifqJDGC9CBiNv7s+ejI96rLNQFdg==} + dependencies: + browserslist: 4.19.1 + semver: 7.0.0 + dev: true + /core-js-pure/3.16.2: resolution: {integrity: sha512-oxKe64UH049mJqrKkynWp6Vu0Rlm/BTXO/bJZuN2mmR3RtOFNepLlSWDd1eo16PzHpQAoNG97rLU1V/YxesJjw==} requiresBuild: true @@ -12062,6 +12617,11 @@ packages: requiresBuild: true dev: true + /core-js-pure/3.20.2: + resolution: {integrity: sha512-CmWHvSKn2vNL6p6StNp1EmMIfVY/pqn3JLAjfZQ8WZGPOlGoO92EkX9/Mk81i6GxvoPXjUqEQnpM3rJ5QxxIOg==} + requiresBuild: true + dev: true + /core-js/2.6.12: resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} deprecated: core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js. @@ -12540,12 +13100,12 @@ packages: cssom: 0.3.8 dev: true - /csstype/2.6.18: - resolution: {integrity: sha512-RSU6Hyeg14am3Ah4VZEmeX8H7kLwEEirXe6aU2IPfKNvhXwTflK5HQRDNI0ypQXoqmm+QPyG2IaPuQE5zMwSIQ==} + /csstype/2.6.19: + resolution: {integrity: sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==} dev: true - /csstype/3.0.9: - resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==} + /csstype/3.0.10: + resolution: {integrity: sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==} dev: true /currently-unhandled/0.4.1: @@ -12559,8 +13119,8 @@ packages: resolution: {integrity: sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=} dev: true - /damerau-levenshtein/1.0.6: - resolution: {integrity: sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==} + /damerau-levenshtein/1.0.7: + resolution: {integrity: sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==} dev: true /dashdash/1.14.1: @@ -12570,9 +13130,9 @@ packages: assert-plus: 1.0.0 dev: true - /data-uri-to-buffer/3.0.1: - resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==} - engines: {node: '>= 6'} + /data-uri-to-buffer/4.0.0: + resolution: {integrity: sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==} + engines: {node: '>= 12'} dev: false /data-urls/1.1.0: @@ -12583,13 +13143,8 @@ packages: whatwg-url: 7.1.0 dev: true - /date-fns/2.23.0: - resolution: {integrity: sha512-5ycpauovVyAk0kXNZz6ZoB9AYMZB4DObse7P3BPWmyEjXNORTI8EJ6X0uaSAq4sCHzM1uajzrkr6HnsLQpxGXA==} - engines: {node: '>=0.11'} - dev: false - - /date-fns/2.25.0: - resolution: {integrity: sha512-ovYRFnTrbGPD4nqaEqescPEv1mNwvt+UTqI3Ay9SzNtey9NZnYu6E2qCcBBgJ6/2VF1zGGygpyTDITqpQQ5e+w==} + /date-fns/2.28.0: + resolution: {integrity: sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==} engines: {node: '>=0.11'} dev: false @@ -12662,6 +13217,18 @@ packages: supports-color: 8.1.1 dev: true + /debug/4.3.3: + resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + /decamelize/1.2.0: resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=} engines: {node: '>=0.10.0'} @@ -12901,14 +13468,6 @@ packages: buffer-indexof: 1.1.1 dev: true - /doctrine/1.5.0: - resolution: {integrity: sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=} - engines: {node: '>=0.10.0'} - dependencies: - esutils: 2.0.3 - isarray: 1.0.0 - dev: true - /doctrine/2.1.0: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} engines: {node: '>=0.10.0'} @@ -13114,6 +13673,10 @@ packages: resolution: {integrity: sha512-w16Dtd2zl7VZ4N4Db+FIa7n36sgPGCKjrKvUUmp5ialsikvcQLjcJR9RWnlYNxIyEHLdHaoIZEqKsPxU9MdyBg==} dev: true + /electron-to-chromium/1.4.35: + resolution: {integrity: sha512-wzTOMh6HGFWeALMI3bif0mzgRrVGyP1BdFRx7IvWukFrSC5QVQELENuy+Fm2dCrAdQH9T3nuqr07n94nPDFBWA==} + dev: true + /element-resize-detector/1.2.3: resolution: {integrity: sha512-+dhNzUgLpq9ol5tyhoG7YLoXL3ssjfFW+0gpszXPwRU6NjGr1fVHMEAF8fVzIiRJq57Nre0RFeIjJwI8Nh2NmQ==} dependencies: @@ -13145,8 +13708,8 @@ packages: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} dev: true - /emoji-regex/9.2.0: - resolution: {integrity: sha512-DNc3KFPK18bPdElMJnf/Pkv5TXhxFU3YFDEuGLDRtPmV4rkmCjBkCSEp22u6rBHdSN9Vlp/GK7k98prmE1Jgug==} + /emoji-regex/9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} dev: true /emojis-list/2.1.0: @@ -13297,66 +13860,6 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract/1.17.7: - resolution: {integrity: sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==} - engines: {node: '>= 0.4'} - dependencies: - es-to-primitive: 1.2.1 - function-bind: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.1 - is-callable: 1.2.2 - is-regex: 1.1.1 - object-inspect: 1.9.0 - object-keys: 1.1.1 - object.assign: 4.1.2 - string.prototype.trimend: 1.0.3 - string.prototype.trimstart: 1.0.3 - dev: true - - /es-abstract/1.18.0-next.2: - resolution: {integrity: sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - es-to-primitive: 1.2.1 - function-bind: 1.1.1 - get-intrinsic: 1.0.2 - has: 1.0.3 - has-symbols: 1.0.1 - is-callable: 1.2.2 - is-negative-zero: 2.0.1 - is-regex: 1.1.1 - object-inspect: 1.9.0 - object-keys: 1.1.1 - object.assign: 4.1.2 - string.prototype.trimend: 1.0.3 - string.prototype.trimstart: 1.0.3 - dev: true - - /es-abstract/1.18.5: - resolution: {integrity: sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - es-to-primitive: 1.2.1 - function-bind: 1.1.1 - get-intrinsic: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.2 - internal-slot: 1.0.3 - is-callable: 1.2.4 - is-negative-zero: 2.0.1 - is-regex: 1.1.4 - is-string: 1.0.7 - object-inspect: 1.11.0 - object-keys: 1.1.1 - object.assign: 4.1.2 - string.prototype.trimend: 1.0.4 - string.prototype.trimstart: 1.0.4 - unbox-primitive: 1.0.1 - dev: true - /es-abstract/1.19.1: resolution: {integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==} engines: {node: '>= 0.4'} @@ -13370,12 +13873,12 @@ packages: has-symbols: 1.0.2 internal-slot: 1.0.3 is-callable: 1.2.4 - is-negative-zero: 2.0.1 + is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.1 is-string: 1.0.7 - is-weakref: 1.0.1 - object-inspect: 1.11.0 + is-weakref: 1.0.2 + object-inspect: 1.12.0 object-keys: 1.1.1 object.assign: 4.1.2 string.prototype.trimend: 1.0.4 @@ -13422,16 +13925,179 @@ packages: resolution: {integrity: sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==} dev: true + /esbuild-android-arm64/0.14.10: + resolution: {integrity: sha512-vzkTafHKoiMX4uIN1kBnE/HXYLpNT95EgGanVk6DHGeYgDolU0NBxjO7yZpq4ZGFPOx8384eAdDrBYhO11TAlQ==} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-64/0.14.10: + resolution: {integrity: sha512-DJwzFVB95ZV7C3PQbf052WqaUuuMFXJeZJ0LKdnP1w+QOU0rlbKfX0tzuhoS//rOXUj1TFIwRuRsd0FX6skR7A==} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-arm64/0.14.10: + resolution: {integrity: sha512-RNaaoZDg3nsqs5z56vYCjk/VJ76npf752W0rOaCl5lO5TsgV9zecfdYgt7dtUrIx8b7APhVaNYud+tGsDOVC9g==} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-64/0.14.10: + resolution: {integrity: sha512-10B3AzW894u6bGZZhWiJOHw1uEHb4AFbUuBdyml1Ht0vIqd+KqWW+iY/yMwQAzILr2WJZqEhbOXRkJtY8aRqOw==} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-arm64/0.14.10: + resolution: {integrity: sha512-mSQrKB7UaWvuryBTCo9leOfY2uEUSimAvcKIaUWbk5Hth9Sg+Try+qNA/NibPgs/vHkX0KFo/Rce6RPea+P15g==} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-32/0.14.10: + resolution: {integrity: sha512-lktF09JgJLZ63ANYHIPdYe339PDuVn19Q/FcGKkXWf+jSPkn5xkYzAabboNGZNUgNqSJ/vY7VrOn6UrBbJjgYA==} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-64/0.14.10: + resolution: {integrity: sha512-K+gCQz2oLIIBI8ZM77e9sYD5/DwEpeYCrOQ2SYXx+R4OU2CT9QjJDi4/OpE7ko4AcYMlMW7qrOCuLSgAlEj4Wg==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm/0.14.10: + resolution: {integrity: sha512-BYa60dZ/KPmNKYxtHa3LSEdfKWHcm/RzP0MjB4AeBPhjS0D6/okhaBesZIY9kVIGDyeenKsJNOmnVt4+dhNnvQ==} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm64/0.14.10: + resolution: {integrity: sha512-+qocQuQvcp5wo/V+OLXxqHPc+gxHttJEvbU/xrCGE03vIMqraL4wMua8JQx0SWEnJCWP+Nhf//v8OSwz1Xr5kA==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-mips64le/0.14.10: + resolution: {integrity: sha512-nmUd2xoBXpGo4NJCEWoaBj+n4EtDoLEvEYc8Z3aSJrY0Oa6s04czD1flmhd0I/d6QEU8b7GQ9U0g/rtBfhtxBg==} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-ppc64le/0.14.10: + resolution: {integrity: sha512-vsOWZjm0rZix7HSmqwPph9arRVCyPtUpcURdayQDuIhMG2/UxJxpbdRaa//w4zYqcJzAWwuyH2PAlyy0ZNuxqQ==} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-s390x/0.14.10: + resolution: {integrity: sha512-knArKKZm0ypIYWOWyOT7+accVwbVV1LZnl2FWWy05u9Tyv5oqJ2F5+X2Vqe/gqd61enJXQWqoufXopvG3zULOg==} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-netbsd-64/0.14.10: + resolution: {integrity: sha512-6Gg8neVcLeyq0yt9bZpReb8ntZ8LBEjthxrcYWVrBElcltnDjIy1hrzsujt0+sC2rL+TlSsE9dzgyuvlDdPp2w==} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-openbsd-64/0.14.10: + resolution: {integrity: sha512-9rkHZzp10zI90CfKbFrwmQjqZaeDmyQ6s9/hvCwRkbOCHuto6RvMYH9ghQpcr5cUxD5OQIA+sHXi0zokRNXjcg==} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-sunos-64/0.14.10: + resolution: {integrity: sha512-mEU+pqkhkhbwpJj5DiN3vL0GUFR/yrL3qj8ER1amIVyRibKbj02VM1QaIuk1sy5DRVIKiFXXgCaHvH3RNWCHIw==} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-32/0.14.10: + resolution: {integrity: sha512-Z5DieUL1N6s78dOSdL95KWf8Y89RtPGxIoMF+LEy8ChDsX+pZpz6uAVCn+YaWpqQXO+2TnrcbgBIoprq2Mco1g==} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-64/0.14.10: + resolution: {integrity: sha512-LE5Mm62y0Bilu7RDryBhHIX8rK3at5VwJ6IGM3BsASidCfOBTzqcs7Yy0/Vkq39VKeTmy9/66BAfVoZRNznoDw==} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-arm64/0.14.10: + resolution: {integrity: sha512-OJOyxDtabvcUYTc+O4dR0JMzLBz6G9+gXIHA7Oc5d5Fv1xiYa0nUeo8+W5s2e6ZkPRdIwOseYoL70rZz80S5BA==} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /esbuild/0.12.29: resolution: {integrity: sha512-w/XuoBCSwepyiZtIRsKsetiLDUVGPVw1E/R3VTFSecIy8UR7Cq3SOtwKHJMFoVqqVG36aGkzh4e8BvpO1Fdc7g==} hasBin: true requiresBuild: true dev: true - /esbuild/0.9.2: - resolution: {integrity: sha512-xE3oOILjnmN8PSjkG3lT9NBbd1DbxNqolJ5qNyrLhDWsFef3yTp/KTQz1C/x7BYFKbtrr9foYtKA6KA1zuNAUQ==} + /esbuild/0.14.10: + resolution: {integrity: sha512-ibZb+NwFqBwHHJlpnFMtg4aNmVK+LUtYMFC9CuKs6lDCBEvCHpqCFZFEirpqt1jOugwKGx8gALNGvX56lQyfew==} hasBin: true requiresBuild: true + optionalDependencies: + esbuild-android-arm64: 0.14.10 + esbuild-darwin-64: 0.14.10 + esbuild-darwin-arm64: 0.14.10 + esbuild-freebsd-64: 0.14.10 + esbuild-freebsd-arm64: 0.14.10 + esbuild-linux-32: 0.14.10 + esbuild-linux-64: 0.14.10 + esbuild-linux-arm: 0.14.10 + esbuild-linux-arm64: 0.14.10 + esbuild-linux-mips64le: 0.14.10 + esbuild-linux-ppc64le: 0.14.10 + esbuild-linux-s390x: 0.14.10 + esbuild-netbsd-64: 0.14.10 + esbuild-openbsd-64: 0.14.10 + esbuild-sunos-64: 0.14.10 + esbuild-windows-32: 0.14.10 + esbuild-windows-64: 0.14.10 + esbuild-windows-arm64: 0.14.10 dev: true /escalade/3.1.1: @@ -13489,60 +14155,36 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-airbnb-base/14.2.0_d4477e7d44043beb7952cd76bd313965: - resolution: {integrity: sha512-Snswd5oC6nJaevs3nZoLSTvGJBvzTfnBqOIArkf3cbyTyq9UD79wOk8s+RiL6bhca0p/eRO6veczhf6A/7Jy8Q==} - engines: {node: '>= 6'} + /eslint-config-airbnb-base/15.0.0_b5a36b8c1535387c8dd00eff7ec6b551: + resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: - eslint: ^5.16.0 || ^6.8.0 || ^7.2.0 - eslint-plugin-import: ^2.21.2 + eslint: ^7.32.0 || ^8.2.0 + eslint-plugin-import: ^2.25.2 dependencies: - confusing-browser-globals: 1.0.10 - eslint: 7.18.0 - eslint-plugin-import: 2.22.1_eslint@7.18.0 + confusing-browser-globals: 1.0.11 + eslint: 8.6.0 + eslint-plugin-import: 2.25.4_eslint@8.6.0 object.assign: 4.1.2 - object.entries: 1.1.3 + object.entries: 1.1.5 + semver: 6.3.0 dev: true - /eslint-config-airbnb-typescript/12.0.0_b55a7168bd2ecdf8767ddb224d20fd7e: - resolution: {integrity: sha512-TUCVru1Z09eKnVAX5i3XoNzjcCOU3nDQz2/jQGkg1jVYm+25fKClveziSl16celfCq+npU0MBPW/ZnXdGFZ9lw==} + /eslint-config-airbnb-typescript/16.1.0_cdb8eb15e4ab1b8dac7bce7d26823291: + resolution: {integrity: sha512-W5Cq20KpEx5ZLC54bnVrC37zq2+WD956Kp/Ma3nYFRjT1v9KM63v+DPkrrmmrVqrlDKaD0ivm/qeYmyHV6qKlw==} peerDependencies: - '@typescript-eslint/eslint-plugin': ^4.4.1 + '@typescript-eslint/eslint-plugin': ^5.0.0 + '@typescript-eslint/parser': ^5.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 4.14.0_4f40ec8f9ae74407a8c29890901bb23f - '@typescript-eslint/parser': 4.4.1_eslint@7.18.0+typescript@4.4.4 - eslint-config-airbnb: 18.2.0_8b932c4aedefa0fbb298d8c6e2d8003e - eslint-config-airbnb-base: 14.2.0_d4477e7d44043beb7952cd76bd313965 + '@typescript-eslint/eslint-plugin': 4.14.0_922de0b5263f311c929bd8e920f3168c + '@typescript-eslint/parser': 4.14.0_eslint@8.6.0+typescript@4.5.4 + eslint-config-airbnb-base: 15.0.0_b5a36b8c1535387c8dd00eff7ec6b551 transitivePeerDependencies: - eslint - eslint-plugin-import - - eslint-plugin-jsx-a11y - - eslint-plugin-react - - eslint-plugin-react-hooks - - supports-color - - typescript dev: true - /eslint-config-airbnb/18.2.0_8b932c4aedefa0fbb298d8c6e2d8003e: - resolution: {integrity: sha512-Fz4JIUKkrhO0du2cg5opdyPKQXOI2MvF8KUvN2710nJMT6jaRUpRE2swrJftAjVGL7T1otLM5ieo5RqS1v9Udg==} - engines: {node: '>= 6'} - peerDependencies: - eslint: ^5.16.0 || ^6.8.0 || ^7.2.0 - eslint-plugin-import: ^2.21.2 - eslint-plugin-jsx-a11y: ^6.3.0 - eslint-plugin-react: ^7.20.0 - eslint-plugin-react-hooks: ^4 || ^3 || ^2.3.0 || ^1.7.0 - dependencies: - eslint: 7.18.0 - eslint-config-airbnb-base: 14.2.0_d4477e7d44043beb7952cd76bd313965 - eslint-plugin-import: 2.22.1_eslint@7.18.0 - eslint-plugin-jsx-a11y: 6.4.1_eslint@7.18.0 - eslint-plugin-react: 7.22.0_eslint@7.18.0 - eslint-plugin-react-hooks: 4.2.0_eslint@7.18.0 - object.assign: 4.1.2 - object.entries: 1.1.3 - dev: true - - /eslint-config-preact/1.2.0_eslint@8.1.0+typescript@4.4.4: + /eslint-config-preact/1.2.0_eslint@8.1.0+typescript@4.5.4: resolution: {integrity: sha512-1jAeR9qi0yotuuki6ROzvi2xacFWGUSFZqWZnqpRDtKS+yIK0gaeTwyQpCb7k5Z3KULBxgN0tdytXaH5e7JBow==} peerDependencies: eslint: 6.x || 7.x @@ -13554,7 +14196,7 @@ packages: '@babel/plugin-syntax-jsx': 7.16.0_@babel+core@7.16.0 eslint: 8.1.0 eslint-plugin-compat: 3.13.0_eslint@8.1.0 - eslint-plugin-jest: 23.20.0_eslint@8.1.0+typescript@4.4.4 + eslint-plugin-jest: 23.20.0_eslint@8.1.0+typescript@4.5.4 eslint-plugin-react: 7.26.1_eslint@8.1.0 eslint-plugin-react-hooks: 4.2.0_eslint@8.1.0 transitivePeerDependencies: @@ -13562,19 +14204,19 @@ packages: - typescript dev: true - /eslint-import-resolver-node/0.3.4: - resolution: {integrity: sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==} - dependencies: - debug: 2.6.9 - resolve: 1.20.0 + /eslint-import-resolver-node/0.3.6: + resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} + dependencies: + debug: 3.2.7 + resolve: 1.21.0 dev: true - /eslint-module-utils/2.6.0: - resolution: {integrity: sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==} + /eslint-module-utils/2.7.2: + resolution: {integrity: sha512-zquepFnWCY2ISMFwD/DqzaM++H+7PDzOpUvotJWm/y1BAFt5R4oeULgdrTejKqLkz7MA/tgstsUMNYc7wNdTrg==} engines: {node: '>=4'} dependencies: - debug: 2.6.9 - pkg-dir: 2.0.0 + debug: 3.2.7 + find-up: 2.1.0 dev: true /eslint-plugin-compat/3.13.0_eslint@8.1.0: @@ -13594,109 +14236,113 @@ packages: semver: 7.3.5 dev: true - /eslint-plugin-import/2.22.1_eslint@7.18.0: - resolution: {integrity: sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==} + /eslint-plugin-import/2.25.4_eslint@8.6.0: + resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} engines: {node: '>=4'} peerDependencies: - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 dependencies: array-includes: 3.1.4 array.prototype.flat: 1.2.5 - contains-path: 0.1.0 debug: 2.6.9 - doctrine: 1.5.0 - eslint: 7.18.0 - eslint-import-resolver-node: 0.3.4 - eslint-module-utils: 2.6.0 + doctrine: 2.1.0 + eslint: 8.6.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.2 has: 1.0.3 + is-core-module: 2.8.0 + is-glob: 4.0.3 minimatch: 3.0.4 object.values: 1.1.5 - read-pkg-up: 2.0.0 - resolve: 1.20.0 - tsconfig-paths: 3.9.0 + resolve: 1.21.0 + tsconfig-paths: 3.12.0 dev: true - /eslint-plugin-jest/23.20.0_eslint@8.1.0+typescript@4.4.4: + /eslint-plugin-jest/23.20.0_eslint@8.1.0+typescript@4.5.4: resolution: {integrity: sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==} engines: {node: '>=8'} peerDependencies: eslint: '>=5' dependencies: - '@typescript-eslint/experimental-utils': 2.34.0_eslint@8.1.0+typescript@4.4.4 + '@typescript-eslint/experimental-utils': 2.34.0_eslint@8.1.0+typescript@4.5.4 eslint: 8.1.0 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jsx-a11y/6.4.1_eslint@7.18.0: - resolution: {integrity: sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==} + /eslint-plugin-jsx-a11y/6.5.1_eslint@8.6.0: + resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} engines: {node: '>=4.0'} peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.16.3 + '@babel/runtime': 7.16.7 aria-query: 4.2.2 array-includes: 3.1.4 ast-types-flow: 0.0.7 axe-core: 4.3.5 axobject-query: 2.2.0 - damerau-levenshtein: 1.0.6 - emoji-regex: 9.2.0 - eslint: 7.18.0 + damerau-levenshtein: 1.0.7 + emoji-regex: 9.2.2 + eslint: 8.6.0 has: 1.0.3 jsx-ast-utils: 3.2.1 language-tags: 1.0.5 + minimatch: 3.0.4 dev: true - /eslint-plugin-react-hooks/4.2.0_eslint@7.18.0: + /eslint-plugin-react-hooks/4.2.0_eslint@8.1.0: resolution: {integrity: sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 dependencies: - eslint: 7.18.0 + eslint: 8.1.0 dev: true - /eslint-plugin-react-hooks/4.2.0_eslint@8.1.0: - resolution: {integrity: sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==} + /eslint-plugin-react-hooks/4.3.0_eslint@8.6.0: + resolution: {integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==} engines: {node: '>=10'} peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.1.0 + eslint: 8.6.0 dev: true - /eslint-plugin-react/7.22.0_eslint@7.18.0: - resolution: {integrity: sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==} + /eslint-plugin-react/7.26.1_eslint@8.1.0: + resolution: {integrity: sha512-Lug0+NOFXeOE+ORZ5pbsh6mSKjBKXDXItUD2sQoT+5Yl0eoT82DqnXeTMfUare4QVCn9QwXbfzO/dBLjLXwVjQ==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 dependencies: - array-includes: 3.1.2 - array.prototype.flatmap: 1.2.4 + array-includes: 3.1.4 + array.prototype.flatmap: 1.2.5 doctrine: 2.1.0 - eslint: 7.18.0 - has: 1.0.3 - jsx-ast-utils: 3.2.0 - object.entries: 1.1.3 - object.fromentries: 2.0.3 - object.values: 1.1.2 + eslint: 8.1.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.2.1 + minimatch: 3.0.4 + object.entries: 1.1.5 + object.fromentries: 2.0.5 + object.hasown: 1.1.0 + object.values: 1.1.5 prop-types: 15.7.2 - resolve: 1.19.0 - string.prototype.matchall: 4.0.3 + resolve: 2.0.0-next.3 + semver: 6.3.0 + string.prototype.matchall: 4.0.6 dev: true - /eslint-plugin-react/7.26.1_eslint@8.1.0: - resolution: {integrity: sha512-Lug0+NOFXeOE+ORZ5pbsh6mSKjBKXDXItUD2sQoT+5Yl0eoT82DqnXeTMfUare4QVCn9QwXbfzO/dBLjLXwVjQ==} + /eslint-plugin-react/7.28.0_eslint@8.6.0: + resolution: {integrity: sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==} engines: {node: '>=4'} peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: array-includes: 3.1.4 array.prototype.flatmap: 1.2.5 doctrine: 2.1.0 - eslint: 8.1.0 + eslint: 8.6.0 estraverse: 5.3.0 jsx-ast-utils: 3.2.1 minimatch: 3.0.4 @@ -13704,7 +14350,7 @@ packages: object.fromentries: 2.0.5 object.hasown: 1.1.0 object.values: 1.1.5 - prop-types: 15.7.2 + prop-types: 15.8.1 resolve: 2.0.0-next.3 semver: 6.3.0 string.prototype.matchall: 4.0.6 @@ -13734,6 +14380,14 @@ packages: estraverse: 5.3.0 dev: true + /eslint-scope/7.1.0: + resolution: {integrity: sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + /eslint-utils/2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} engines: {node: '>=6'} @@ -13751,16 +14405,21 @@ packages: eslint-visitor-keys: 2.1.0 dev: true + /eslint-utils/3.0.0_eslint@8.6.0: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 8.6.0 + eslint-visitor-keys: 2.1.0 + dev: true + /eslint-visitor-keys/1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} engines: {node: '>=4'} dev: true - /eslint-visitor-keys/2.0.0: - resolution: {integrity: sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==} - engines: {node: '>=10'} - dev: true - /eslint-visitor-keys/2.1.0: resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} engines: {node: '>=10'} @@ -13771,37 +14430,44 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/7.18.0: - resolution: {integrity: sha512-fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ==} - engines: {node: ^10.12.0 || >=12.0.0} + /eslint-visitor-keys/3.1.0: + resolution: {integrity: sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /eslint/8.1.0: + resolution: {integrity: sha512-JZvNneArGSUsluHWJ8g8MMs3CfIEzwaLx9KyH4tZ2i+R2/rPWzL8c0zg3rHdwYVpN/1sB9gqnjHwz9HoeJpGHw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@babel/code-frame': 7.16.0 - '@eslint/eslintrc': 0.3.0 + '@eslint/eslintrc': 1.0.3 + '@humanwhocodes/config-array': 0.6.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 debug: 4.3.2 doctrine: 3.0.0 enquirer: 2.3.6 - eslint-scope: 5.1.1 - eslint-utils: 2.1.0 - eslint-visitor-keys: 2.1.0 - espree: 7.3.1 + escape-string-regexp: 4.0.0 + eslint-scope: 6.0.0 + eslint-utils: 3.0.0_eslint@8.1.0 + eslint-visitor-keys: 3.0.0 + espree: 9.0.0 esquery: 1.4.0 esutils: 2.0.3 + fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 functional-red-black-tree: 1.0.1 - glob-parent: 5.1.2 - globals: 12.4.0 + glob-parent: 6.0.2 + globals: 13.12.0 ignore: 4.0.6 import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 - js-yaml: 3.14.1 + js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 - lodash: 4.17.21 + lodash.merge: 4.6.2 minimatch: 3.0.4 natural-compare: 1.4.0 optionator: 0.9.1 @@ -13810,31 +14476,30 @@ packages: semver: 7.3.5 strip-ansi: 6.0.1 strip-json-comments: 3.1.1 - table: 6.0.7 text-table: 0.2.0 v8-compile-cache: 2.3.0 transitivePeerDependencies: - supports-color dev: true - /eslint/8.1.0: - resolution: {integrity: sha512-JZvNneArGSUsluHWJ8g8MMs3CfIEzwaLx9KyH4tZ2i+R2/rPWzL8c0zg3rHdwYVpN/1sB9gqnjHwz9HoeJpGHw==} + /eslint/8.6.0: + resolution: {integrity: sha512-UvxdOJ7mXFlw7iuHZA4jmzPaUqIw54mZrv+XPYKNbKdLR0et4rf60lIZUU9kiNtnzzMzGWxMV+tQ7uG7JG8DPw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint/eslintrc': 1.0.3 - '@humanwhocodes/config-array': 0.6.0 + '@eslint/eslintrc': 1.0.5 + '@humanwhocodes/config-array': 0.9.2 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.2 + debug: 4.3.3 doctrine: 3.0.0 enquirer: 2.3.6 escape-string-regexp: 4.0.0 - eslint-scope: 6.0.0 - eslint-utils: 3.0.0_eslint@8.1.0 - eslint-visitor-keys: 3.0.0 - espree: 9.0.0 + eslint-scope: 7.1.0 + eslint-utils: 3.0.0_eslint@8.6.0 + eslint-visitor-keys: 3.1.0 + espree: 9.3.0 esquery: 1.4.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 @@ -13869,15 +14534,6 @@ packages: engines: {node: '>=6'} dev: true - /espree/7.3.1: - resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} - engines: {node: ^10.12.0 || >=12.0.0} - dependencies: - acorn: 7.4.1 - acorn-jsx: 5.3.2_acorn@7.4.1 - eslint-visitor-keys: 1.3.0 - dev: true - /espree/9.0.0: resolution: {integrity: sha512-r5EQJcYZ2oaGbeR0jR0fFVijGOcwai07/690YRXLINuhmVeRY4UKSAsQPe/0BNuDgwP7Ophoc1PRsr2E3tkbdQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -13887,6 +14543,15 @@ packages: eslint-visitor-keys: 3.0.0 dev: true + /espree/9.3.0: + resolution: {integrity: sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.7.0 + acorn-jsx: 5.3.2_acorn@8.7.0 + eslint-visitor-keys: 3.1.0 + dev: true + /esprima/4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} @@ -14154,21 +14819,21 @@ packages: bser: 2.1.1 dev: true - /fetch-blob/3.1.2: - resolution: {integrity: sha512-hunJbvy/6OLjCD0uuhLdp0mMPzP/yd2ssd1t2FCJsaA7wkWhpbp9xfuNVpv7Ll4jFhzp6T4LAupSiV9uOeg0VQ==} + /fetch-blob/3.1.3: + resolution: {integrity: sha512-ax1Y5I9w+9+JiM+wdHkhBoxew+zG4AJ2SvAD1v1szpddUIiPERVGBxrMcB2ZqW0Y3PP8bOWYv2zqQq1Jp2kqUQ==} engines: {node: ^12.20 || >= 14.13} dependencies: - web-streams-polyfill: 3.1.1 + web-streams-polyfill: 3.2.0 dev: false /fetch-ponyfill/7.1.0: resolution: {integrity: sha512-FhbbL55dj/qdVO3YNK7ZEkshvj3eQ7EuIGV2I6ic/2YiocvyWv+7jg2s4AyS0wdRU75s3tA8ZxI/xPigb0v5Aw==} dependencies: - node-fetch: 2.6.1 + node-fetch: 2.6.6 dev: false - /fflate/0.6.0: - resolution: {integrity: sha512-u4AdW/Xx7iinDhYQuS0B0vvbUX7JWXO07jEvYUlbNZvtoiDLkDvHR17LSwxhbawjZVDXczzLHAQUDSllISm4/A==} + /fflate/0.7.2: + resolution: {integrity: sha512-h/YiXnc37yYaGe61h3A4ZdsBzBqKG5hhrmopFizTru8xrfOiJuYX5oLnatBwNEpf9biOJrZVscuEQsUzIUAhpQ==} dev: false /figgy-pudding/3.5.2: @@ -14330,7 +14995,7 @@ packages: resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flatted: 3.2.2 + flatted: 3.2.4 rimraf: 3.0.2 dev: true @@ -14339,8 +15004,8 @@ packages: hasBin: true dev: true - /flatted/3.2.2: - resolution: {integrity: sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==} + /flatted/3.2.4: + resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==} dev: true /flush-write-stream/1.1.1: @@ -14350,27 +15015,27 @@ packages: readable-stream: 2.3.7 dev: true - /follow-redirects/1.14.2: - resolution: {integrity: sha512-yLR6WaE2lbF0x4K2qE2p9PEXKLDjUjnR/xmjS3wHAYxtlsI9MLLBJUZirAHKzUZDGLxje7w/cXR49WOUo4rbsA==} + /follow-redirects/1.14.5_debug@4.3.2: + resolution: {integrity: sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==} engines: {node: '>=4.0'} peerDependencies: debug: '*' peerDependenciesMeta: debug: optional: true - dev: false + dependencies: + debug: 4.3.2_supports-color@6.1.0 + dev: true - /follow-redirects/1.14.5_debug@4.3.2: - resolution: {integrity: sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==} + /follow-redirects/1.14.6: + resolution: {integrity: sha512-fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A==} engines: {node: '>=4.0'} peerDependencies: debug: '*' peerDependenciesMeta: debug: optional: true - dependencies: - debug: 4.3.2_supports-color@6.1.0 - dev: true + dev: false /for-each/0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} @@ -14427,7 +15092,7 @@ packages: tapable: 1.1.3 dev: true - /fork-ts-checker-webpack-plugin/6.4.0_831eeee51b9dc6506e4e2983e1c7fb45: + /fork-ts-checker-webpack-plugin/6.4.0_1dcb2aa0504550ceac614868205eb239: resolution: {integrity: sha512-3I3wFkc4DbzaUDPWEi96wdYGu4EKtxBafhZYm0o4mX51d9bphAY4P3mBl8K5mFXFJqVzHfmdbm9kLGnm7vwwBg==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -14455,11 +15120,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.5 tapable: 1.1.3 - typescript: 4.4.4 + typescript: 4.5.4 webpack: 4.46.0 dev: true - /fork-ts-checker-webpack-plugin/6.4.0_typescript@4.3.5+webpack@4.46.0: + /fork-ts-checker-webpack-plugin/6.4.0_typescript@4.5.4+webpack@4.46.0: resolution: {integrity: sha512-3I3wFkc4DbzaUDPWEi96wdYGu4EKtxBafhZYm0o4mX51d9bphAY4P3mBl8K5mFXFJqVzHfmdbm9kLGnm7vwwBg==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -14486,7 +15151,7 @@ packages: schema-utils: 2.7.0 semver: 7.3.5 tapable: 1.1.3 - typescript: 4.3.5 + typescript: 4.5.4 webpack: 4.46.0 dev: true @@ -14513,6 +15178,13 @@ packages: engines: {node: '>=0.4.x'} dev: true + /formdata-polyfill/4.0.10: + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} + dependencies: + fetch-blob: 3.1.3 + dev: false + /forwarded/0.2.0: resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} @@ -14563,15 +15235,6 @@ packages: universalify: 0.1.2 dev: true - /fs-extra/7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} - dependencies: - graceful-fs: 4.2.4 - jsonfile: 4.0.0 - universalify: 0.1.2 - dev: true - /fs-extra/9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} @@ -14624,14 +15287,6 @@ packages: dev: true optional: true - /fsevents/2.1.3: - resolution: {integrity: sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - deprecated: '"Please update to latest v2.3 or v2.2"' - dev: true - optional: true - /fsevents/2.3.2: resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -14705,14 +15360,6 @@ packages: engines: {node: 6.* || 8.* || >= 10.*} dev: true - /get-intrinsic/1.0.2: - resolution: {integrity: sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==} - dependencies: - function-bind: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.1 - dev: true - /get-intrinsic/1.1.1: resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==} dependencies: @@ -14922,13 +15569,6 @@ packages: engines: {node: '>=4'} dev: true - /globals/12.4.0: - resolution: {integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==} - engines: {node: '>=8'} - dependencies: - type-fest: 0.8.1 - dev: true - /globals/13.12.0: resolution: {integrity: sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==} engines: {node: '>=8'} @@ -14962,7 +15602,7 @@ packages: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.2.5 - ignore: 5.1.8 + ignore: 5.2.0 merge2: 1.4.1 slash: 3.0.0 dev: true @@ -15021,10 +15661,6 @@ packages: url-parse-lax: 3.0.0 dev: true - /graceful-fs/4.2.4: - resolution: {integrity: sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==} - dev: true - /graceful-fs/4.2.8: resolution: {integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==} dev: true @@ -15057,19 +15693,6 @@ packages: resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} dev: true - /handlebars/4.7.6: - resolution: {integrity: sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==} - engines: {node: '>=0.4.7'} - hasBin: true - dependencies: - minimist: 1.2.5 - neo-async: 2.6.2 - source-map: 0.6.1 - wordwrap: 1.0.0 - optionalDependencies: - uglify-js: 3.14.3 - dev: true - /handlebars/4.7.7: resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} engines: {node: '>=0.4.7'} @@ -15080,7 +15703,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.14.3 + uglify-js: 3.14.5 dev: true /har-schema/2.0.0: @@ -15123,11 +15746,6 @@ packages: is-glob: 3.1.0 dev: true - /has-symbols/1.0.1: - resolution: {integrity: sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==} - engines: {node: '>= 0.4'} - dev: true - /has-symbols/1.0.2: resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==} engines: {node: '>= 0.4'} @@ -15595,13 +16213,13 @@ packages: engines: {node: '>= 4'} dev: true - /ignore/5.1.8: - resolution: {integrity: sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==} + /ignore/5.1.9: + resolution: {integrity: sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==} engines: {node: '>= 4'} dev: true - /ignore/5.1.9: - resolution: {integrity: sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==} + /ignore/5.2.0: + resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} engines: {node: '>= 4'} dev: true @@ -15644,11 +16262,6 @@ packages: engines: {node: '>=4'} dev: true - /import-lazy/4.0.0: - resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} - engines: {node: '>=8'} - dev: true - /import-local/2.0.0: resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} engines: {node: '>=6'} @@ -15725,15 +16338,6 @@ packages: ipaddr.js: 1.9.1 dev: true - /internal-slot/1.0.2: - resolution: {integrity: sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g==} - engines: {node: '>= 0.4'} - dependencies: - es-abstract: 1.17.7 - has: 1.0.3 - side-channel: 1.0.4 - dev: true - /internal-slot/1.0.3: resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} engines: {node: '>= 0.4'} @@ -15743,11 +16347,6 @@ packages: side-channel: 1.0.4 dev: true - /interpret/1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} - engines: {node: '>= 0.10'} - dev: true - /interpret/2.2.0: resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} engines: {node: '>= 0.10'} @@ -15866,11 +16465,6 @@ packages: engines: {node: '>=4'} dev: true - /is-callable/1.2.2: - resolution: {integrity: sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==} - engines: {node: '>= 0.4'} - dev: true - /is-callable/1.2.4: resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} engines: {node: '>= 0.4'} @@ -16067,8 +16661,8 @@ packages: resolution: {integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=} dev: true - /is-negative-zero/2.0.1: - resolution: {integrity: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==} + /is-negative-zero/2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} engines: {node: '>= 0.4'} dev: true @@ -16166,13 +16760,6 @@ packages: '@types/estree': 0.0.50 dev: true - /is-regex/1.1.1: - resolution: {integrity: sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==} - engines: {node: '>= 0.4'} - dependencies: - has-symbols: 1.0.1 - dev: true - /is-regex/1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} @@ -16213,11 +16800,6 @@ packages: engines: {node: '>=8'} dev: true - /is-string/1.0.5: - resolution: {integrity: sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==} - engines: {node: '>= 0.4'} - dev: true - /is-string/1.0.7: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} @@ -16245,8 +16827,8 @@ packages: engines: {node: '>=10'} dev: true - /is-weakref/1.0.1: - resolution: {integrity: sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==} + /is-weakref/1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: call-bind: 1.0.2 dev: true @@ -16387,7 +16969,7 @@ packages: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} engines: {node: '>=10'} dependencies: - debug: 4.3.2 + debug: 4.3.3 istanbul-lib-coverage: 3.2.0 source-map: 0.6.1 transitivePeerDependencies: @@ -16422,7 +17004,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 16.11.6 + '@types/node': 17.0.8 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.8 @@ -16446,7 +17028,7 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 16.11.6 + '@types/node': 17.0.8 graceful-fs: 4.2.8 dev: true @@ -16455,7 +17037,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 16.11.6 + '@types/node': 17.0.8 chalk: 4.1.2 graceful-fs: 4.2.8 is-ci: 2.0.0 @@ -16466,15 +17048,11 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 16.11.6 + '@types/node': 17.0.8 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true - /jju/1.4.0: - resolution: {integrity: sha1-o6vicYryQaKykE+EpiWXDzia4yo=} - dev: true - /js-string-escape/1.0.1: resolution: {integrity: sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=} engines: {node: '>= 0.8'} @@ -16594,14 +17172,6 @@ packages: dependencies: minimist: 1.2.5 - /json5/2.1.3: - resolution: {integrity: sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==} - engines: {node: '>=6'} - hasBin: true - dependencies: - minimist: 1.2.5 - dev: true - /json5/2.2.0: resolution: {integrity: sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==} engines: {node: '>=6'} @@ -16610,6 +17180,10 @@ packages: minimist: 1.2.5 dev: true + /jsonc-parser/3.0.0: + resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} + dev: true + /jsonfile/2.4.0: resolution: {integrity: sha1-NzaitCi4e72gzIO1P6PWM6NcKug=} optionalDependencies: @@ -16619,7 +17193,7 @@ packages: /jsonfile/4.0.0: resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} optionalDependencies: - graceful-fs: 4.2.4 + graceful-fs: 4.2.8 dev: true /jsonfile/6.1.0: @@ -16649,14 +17223,6 @@ packages: resolution: {integrity: sha512-QuruyBENDWdN4tZwJbQq7/eAK85FqrI4oDbXjy5IBhYD+2pTJyBUWZe8ctWaCkrV0gy6AaelgOZZBMeswEa/6Q==} dev: true - /jsx-ast-utils/3.2.0: - resolution: {integrity: sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==} - engines: {node: '>=4.0'} - dependencies: - array-includes: 3.1.3 - object.assign: 4.1.2 - dev: true - /jsx-ast-utils/3.2.1: resolution: {integrity: sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==} engines: {node: '>=4.0'} @@ -16790,16 +17356,6 @@ packages: resolution: {integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=} dev: true - /load-json-file/2.0.0: - resolution: {integrity: sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=} - engines: {node: '>=4'} - dependencies: - graceful-fs: 4.2.8 - parse-json: 2.2.0 - pify: 2.3.0 - strip-bom: 3.0.0 - dev: true - /load-json-file/5.3.0: resolution: {integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==} engines: {node: '>=6'} @@ -16898,10 +17454,6 @@ packages: resolution: {integrity: sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=} dev: true - /lodash.get/4.4.2: - resolution: {integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=} - dev: true - /lodash.isequal/4.5.0: resolution: {integrity: sha1-QVxEePK8wwEgwizhDtMib30+GOA=} dev: true @@ -17096,9 +17648,9 @@ packages: react: 16.14.0 dev: true - /marked/1.2.7: - resolution: {integrity: sha512-No11hFYcXr/zkBvL6qFmAp1z6BKY3zqLMHny/JN/ey+al7qwCM2+CMBL9BOgqMxZU36fz4cCWfn2poWIf7QRXA==} - engines: {node: '>= 8.16.2'} + /marked/3.0.8: + resolution: {integrity: sha512-0gVrAjo5m0VZSJb4rpL59K1unJAMb/hm8HRXqasD8VeC8m91ytDPMritgFSlKonfdt+rRYYpP/JfLxgIX8yoSw==} + engines: {node: '>= 12'} hasBin: true dev: true @@ -17613,20 +18165,21 @@ packages: /node-fetch/2.6.1: resolution: {integrity: sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==} engines: {node: 4.x || >=6.0.0} + dev: true /node-fetch/2.6.6: resolution: {integrity: sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==} engines: {node: 4.x || >=6.0.0} dependencies: whatwg-url: 5.0.0 - dev: true - /node-fetch/3.0.0: - resolution: {integrity: sha512-bKMI+C7/T/SPU1lKnbQbwxptpCrG9ashG+VkytmXCPZyuM9jB6VU+hY0oi4lC8LxTtAeWdckNCTa3nrGsAdA3Q==} + /node-fetch/3.1.0: + resolution: {integrity: sha512-QU0WbIfMUjd5+MUzQOYhenAazakV7Irh1SGkWCsRzBwvm4fAhzEUaHMJ6QLP7gWT6WO9/oH2zhKMMGMuIrDyKw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: - data-uri-to-buffer: 3.0.1 - fetch-blob: 3.1.2 + data-uri-to-buffer: 4.0.0 + fetch-blob: 3.1.3 + formdata-polyfill: 4.0.10 dev: false /node-forge/0.10.0: @@ -17721,7 +18274,7 @@ packages: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 - resolve: 1.20.0 + resolve: 1.21.0 semver: 5.7.1 validate-npm-package-license: 3.0.4 dev: true @@ -17866,8 +18419,8 @@ packages: resolution: {integrity: sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==} dev: true - /object-inspect/1.9.0: - resolution: {integrity: sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==} + /object-inspect/1.12.0: + resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==} dev: true /object-is/1.1.5: @@ -17900,16 +18453,6 @@ packages: object-keys: 1.1.1 dev: true - /object.entries/1.1.3: - resolution: {integrity: sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 - has: 1.0.3 - dev: true - /object.entries/1.1.5: resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} engines: {node: '>= 0.4'} @@ -17919,16 +18462,6 @@ packages: es-abstract: 1.19.1 dev: true - /object.fromentries/2.0.3: - resolution: {integrity: sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 - has: 1.0.3 - dev: true - /object.fromentries/2.0.5: resolution: {integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==} engines: {node: '>= 0.4'} @@ -17961,16 +18494,6 @@ packages: isobject: 3.0.1 dev: true - /object.values/1.1.2: - resolution: {integrity: sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 - has: 1.0.3 - dev: true - /object.values/1.1.5: resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} engines: {node: '>= 0.4'} @@ -18009,12 +18532,6 @@ packages: mimic-fn: 2.1.0 dev: true - /onigasm/2.2.5: - resolution: {integrity: sha512-F+th54mPc0l1lp1ZcFMyL/jTs2Tlq4SqIHKIXGZOR/VkHkF9A7Fr5rRr5+ZG/lWeRsyrClLYRq7s/yFQ/XhWCA==} - dependencies: - lru-cache: 5.1.1 - dev: true - /open/7.4.2: resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} engines: {node: '>=8'} @@ -18300,13 +18817,6 @@ packages: is-hexadecimal: 1.0.4 dev: true - /parse-json/2.2.0: - resolution: {integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=} - engines: {node: '>=0.10.0'} - dependencies: - error-ex: 1.3.2 - dev: true - /parse-json/4.0.0: resolution: {integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=} engines: {node: '>=4'} @@ -18414,13 +18924,6 @@ packages: resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} dev: true - /path-type/2.0.0: - resolution: {integrity: sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=} - engines: {node: '>=4'} - dependencies: - pify: 2.3.0 - dev: true - /path-type/3.0.0: resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} engines: {node: '>=4'} @@ -18502,17 +19005,10 @@ packages: /pkg-conf/3.1.0: resolution: {integrity: sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==} - engines: {node: '>=6'} - dependencies: - find-up: 3.0.0 - load-json-file: 5.3.0 - dev: true - - /pkg-dir/2.0.0: - resolution: {integrity: sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=} - engines: {node: '>=4'} + engines: {node: '>=6'} dependencies: - find-up: 2.1.0 + find-up: 3.0.0 + load-json-file: 5.3.0 dev: true /pkg-dir/3.0.0: @@ -18554,38 +19050,20 @@ packages: resolution: {integrity: sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==} dev: true - /pnp-webpack-plugin/1.6.4_typescript@4.3.5: - resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} - engines: {node: '>=6'} - dependencies: - ts-pnp: 1.2.0_typescript@4.4.3 - transitivePeerDependencies: - - typescript - dev: true - - /pnp-webpack-plugin/1.6.4_typescript@4.4.4: + /pnp-webpack-plugin/1.6.4_typescript@4.5.4: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.4.4 - transitivePeerDependencies: - - typescript - dev: true - - /pnp-webpack-plugin/1.7.0_typescript@4.4.3: - resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==} - engines: {node: '>=6'} - dependencies: - ts-pnp: 1.2.0_typescript@4.4.3 + ts-pnp: 1.2.0_typescript@4.5.4 transitivePeerDependencies: - typescript dev: true - /pnp-webpack-plugin/1.7.0_typescript@4.4.4: + /pnp-webpack-plugin/1.7.0_typescript@4.5.4: resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.4.4 + ts-pnp: 1.2.0_typescript@4.5.4 transitivePeerDependencies: - typescript dev: true @@ -19438,7 +19916,7 @@ packages: native-url: 0.3.4 optimize-css-assets-webpack-plugin: 6.0.1_webpack@4.46.0 ora: 5.4.1 - pnp-webpack-plugin: 1.7.0_typescript@4.4.3 + pnp-webpack-plugin: 1.7.0_typescript@4.5.4 postcss: 8.3.6 postcss-load-config: 3.1.0 postcss-loader: 4.3.0_postcss@8.3.6+webpack@4.46.0 @@ -19456,7 +19934,7 @@ packages: stack-trace: 0.0.10 style-loader: 2.0.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 - typescript: 4.4.3 + typescript: 4.5.4 update-notifier: 5.1.0 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 validate-npm-package-name: 3.0.0 @@ -19545,7 +20023,7 @@ packages: native-url: 0.3.4 optimize-css-assets-webpack-plugin: 6.0.1_webpack@4.46.0 ora: 5.4.1 - pnp-webpack-plugin: 1.7.0_typescript@4.4.4 + pnp-webpack-plugin: 1.7.0_typescript@4.5.4 postcss: 8.3.11 postcss-load-config: 3.1.0 postcss-loader: 4.3.0_postcss@8.3.11+webpack@4.46.0 @@ -19564,7 +20042,7 @@ packages: stack-trace: 0.0.10 style-loader: 2.0.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 - typescript: 4.4.4 + typescript: 4.5.4 update-notifier: 5.1.0 url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 validate-npm-package-name: 3.0.0 @@ -19661,6 +20139,12 @@ packages: hasBin: true dev: true + /prettier/2.5.1: + resolution: {integrity: sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + /pretty-bytes/4.0.2: resolution: {integrity: sha1-sr+C5zUNZcbDOqlaqlpPYyf2HNk=} engines: {node: '>=4'} @@ -19803,6 +20287,14 @@ packages: react-is: 16.13.1 dev: true + /prop-types/15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + dev: true + /property-information/5.6.0: resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} dependencies: @@ -20345,14 +20837,6 @@ packages: prop-types: 15.7.2 dev: true - /read-pkg-up/2.0.0: - resolution: {integrity: sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=} - engines: {node: '>=4'} - dependencies: - find-up: 2.1.0 - read-pkg: 2.0.0 - dev: true - /read-pkg-up/7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} engines: {node: '>=8'} @@ -20362,15 +20846,6 @@ packages: type-fest: 0.8.1 dev: true - /read-pkg/2.0.0: - resolution: {integrity: sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=} - engines: {node: '>=4'} - dependencies: - load-json-file: 2.0.0 - normalize-package-data: 2.5.0 - path-type: 2.0.0 - dev: true - /read-pkg/5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} @@ -20418,13 +20893,6 @@ packages: picomatch: 2.3.0 dev: true - /rechoir/0.6.2: - resolution: {integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=} - engines: {node: '>= 0.10'} - dependencies: - resolve: 1.19.0 - dev: true - /recursive-readdir/2.2.2: resolution: {integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==} engines: {node: '>=0.10.0'} @@ -20468,7 +20936,7 @@ packages: /regenerator-transform/0.14.5: resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==} dependencies: - '@babel/runtime': 7.16.3 + '@babel/runtime': 7.16.7 dev: true /regex-not/1.0.2: @@ -20759,12 +21227,6 @@ packages: deprecated: https://github.com/lydell/resolve-url#deprecated dev: true - /resolve/1.17.0: - resolution: {integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==} - dependencies: - path-parse: 1.0.6 - dev: true - /resolve/1.19.0: resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} dependencies: @@ -20779,6 +21241,15 @@ packages: path-parse: 1.0.7 dev: true + /resolve/1.21.0: + resolution: {integrity: sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==} + hasBin: true + dependencies: + is-core-module: 2.8.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + /resolve/2.0.0-next.3: resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==} dependencies: @@ -20844,69 +21315,21 @@ packages: inherits: 2.0.4 dev: true - /rollup-plugin-css-only/3.1.0_rollup@2.56.2: + /rollup-plugin-css-only/3.1.0_rollup@2.63.0: resolution: {integrity: sha512-TYMOE5uoD76vpj+RTkQLzC9cQtbnJNktHPB507FzRWBVaofg7KhIqq1kGbcVOadARSozWF883Ho9KpSPKH8gqA==} engines: {node: '>=10.12.0'} peerDependencies: rollup: 1 || 2 dependencies: '@rollup/pluginutils': 4.1.1 - rollup: 2.56.2 - dev: true - - /rollup-plugin-ignore/1.0.9: - resolution: {integrity: sha512-+Q2jmD4gbO3ByFuljkDEfpEcYvll7J5+ZadUuk/Pu35x2KGrbHxKtt3+s+dPIgXX1mG7zCxG4s/NdRqztR5Ruw==} - dev: true - - /rollup-plugin-sourcemaps/0.6.3_38ff52cc32daa1ae80c428f8a47a4e22: - resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==} - engines: {node: '>=10.0.0'} - peerDependencies: - '@types/node': '>=10.0.0' - rollup: '>=0.31.2' - peerDependenciesMeta: - '@types/node': - optional: true - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.37.1 - '@types/node': 14.14.22 - rollup: 2.37.1 - source-map-resolve: 0.6.0 - dev: true - - /rollup-plugin-sourcemaps/0.6.3_57eeb328ceff0756ae1d32f4d22d60f9: - resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==} - engines: {node: '>=10.0.0'} - peerDependencies: - '@types/node': '>=10.0.0' - rollup: '>=0.31.2' - peerDependenciesMeta: - '@types/node': - optional: true - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.59.0 - '@types/node': 14.14.22 - rollup: 2.59.0 - source-map-resolve: 0.6.0 + rollup: 2.63.0 dev: true - /rollup-plugin-sourcemaps/0.6.3_6efbbae6640434994627e0ab519821c6: - resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==} - engines: {node: '>=10.0.0'} - peerDependencies: - '@types/node': '>=10.0.0' - rollup: '>=0.31.2' - peerDependenciesMeta: - '@types/node': - optional: true - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.43.0 - '@types/node': 14.17.1 - rollup: 2.43.0 - source-map-resolve: 0.6.0 + /rollup-plugin-ignore/1.0.10: + resolution: {integrity: sha512-VsbnfwwaTv2Dxl2onubetX/3RnSnplNnjdix0hvF8y2YpqdzlZrjIq6zkcuVJ08XysS8zqW3gt3ORBndFDgsrg==} dev: true - /rollup-plugin-sourcemaps/0.6.3_87d168520bd21f84b7cb8eb331bc7479: + /rollup-plugin-sourcemaps/0.6.3_@types+node@17.0.8+rollup@2.63.0: resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==} engines: {node: '>=10.0.0'} peerDependencies: @@ -20916,13 +21339,13 @@ packages: '@types/node': optional: true dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.56.2 - '@types/node': 14.17.10 - rollup: 2.56.2 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 + '@types/node': 17.0.8 + rollup: 2.63.0 source-map-resolve: 0.6.0 dev: true - /rollup-plugin-sourcemaps/0.6.3_rollup@2.59.0: + /rollup-plugin-sourcemaps/0.6.3_rollup@2.63.0: resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==} engines: {node: '>=10.0.0'} peerDependencies: @@ -20932,85 +21355,45 @@ packages: '@types/node': optional: true dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.59.0 - rollup: 2.59.0 + '@rollup/pluginutils': 3.1.0_rollup@2.63.0 + rollup: 2.63.0 source-map-resolve: 0.6.0 dev: true - /rollup-plugin-terser/7.0.2_rollup@2.37.1: - resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} - peerDependencies: - rollup: ^2.0.0 - dependencies: - '@babel/code-frame': 7.12.13 - jest-worker: 26.6.2 - rollup: 2.37.1 - serialize-javascript: 4.0.0 - terser: 5.4.0 - dev: true - - /rollup-plugin-terser/7.0.2_rollup@2.43.0: - resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} - peerDependencies: - rollup: ^2.0.0 - dependencies: - '@babel/code-frame': 7.12.13 - jest-worker: 26.6.2 - rollup: 2.43.0 - serialize-javascript: 4.0.0 - terser: 5.4.0 - dev: true - - /rollup-plugin-terser/7.0.2_rollup@2.56.2: + /rollup-plugin-terser/7.0.2_rollup@2.59.0: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} peerDependencies: rollup: ^2.0.0 dependencies: '@babel/code-frame': 7.12.13 jest-worker: 26.6.2 - rollup: 2.56.2 + rollup: 2.59.0 serialize-javascript: 4.0.0 terser: 5.4.0 dev: true - /rollup-plugin-terser/7.0.2_rollup@2.59.0: + /rollup-plugin-terser/7.0.2_rollup@2.63.0: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} peerDependencies: rollup: ^2.0.0 dependencies: '@babel/code-frame': 7.12.13 jest-worker: 26.6.2 - rollup: 2.59.0 + rollup: 2.63.0 serialize-javascript: 4.0.0 terser: 5.4.0 dev: true - /rollup/2.37.1: - resolution: {integrity: sha512-V3ojEeyGeSdrMSuhP3diBb06P+qV4gKQeanbDv+Qh/BZbhdZ7kHV0xAt8Yjk4GFshq/WjO7R4c7DFM20AwTFVQ==} - engines: {node: '>=10.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.1.3 - dev: true - - /rollup/2.43.0: - resolution: {integrity: sha512-FRsYGqlo1iF/w3bv319iStAK0hyhhwon35Cbo7sGUoXaOpsZFy6Lel7UoGb5bNDE4OsoWjMH94WiVvpOM26l3g==} - engines: {node: '>=10.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /rollup/2.56.2: - resolution: {integrity: sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ==} + /rollup/2.59.0: + resolution: {integrity: sha512-l7s90JQhCQ6JyZjKgo7Lq1dKh2RxatOM+Jr6a9F7WbS9WgKbocyUSeLmZl8evAse7y96Ae98L2k1cBOwWD8nHw==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 dev: true - /rollup/2.59.0: - resolution: {integrity: sha512-l7s90JQhCQ6JyZjKgo7Lq1dKh2RxatOM+Jr6a9F7WbS9WgKbocyUSeLmZl8evAse7y96Ae98L2k1cBOwWD8nHw==} + /rollup/2.63.0: + resolution: {integrity: sha512-nps0idjmD+NXl6OREfyYXMn/dar3WGcyKn+KBzPdaLecub3x/LrId0wUcthcr8oZUAcZAR8NKcfGGFlNgGL1kQ==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -21385,35 +21768,11 @@ packages: resolution: {integrity: sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==} dev: true - /shelljs/0.8.4: - resolution: {integrity: sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==} - engines: {node: '>=4'} - hasBin: true - dependencies: - glob: 7.1.6 - interpret: 1.4.0 - rechoir: 0.6.2 - dev: true - - /shiki-languages/0.2.7: - resolution: {integrity: sha512-REmakh7pn2jCn9GDMRSK36oDgqhh+rSvJPo77sdWTOmk44C5b0XlYPwJZcFOMJWUZJE0c7FCbKclw4FLwUKLRw==} - dependencies: - vscode-textmate: 5.2.0 - dev: true - - /shiki-themes/0.2.7: - resolution: {integrity: sha512-ZMmboDYw5+SEpugM8KGUq3tkZ0vXg+k60XX6NngDK7gc1Sv6YLUlanpvG3evm57uKJvfXsky/S5MzSOTtYKLjA==} - dependencies: - json5: 2.1.3 - vscode-textmate: 5.2.0 - dev: true - - /shiki/0.2.7: - resolution: {integrity: sha512-bwVc7cdtYYHEO9O+XJ8aNOskKRfaQd5Y4ovLRfbQkmiLSUaR+bdlssbZUUhbQ0JAFMYcTcJ5tjG5KtnufttDHQ==} + /shiki/0.9.15: + resolution: {integrity: sha512-/Y0z9IzhJ8nD9nbceORCqu6NgT9X6I8Fk8c3SICHI5NbZRLdZYFaB233gwct9sU0vvSypyaL/qaKvzyQGJBZSw==} dependencies: - onigasm: 2.2.5 - shiki-languages: 0.2.7 - shiki-themes: 0.2.7 + jsonc-parser: 3.0.0 + vscode-oniguruma: 1.6.1 vscode-textmate: 5.2.0 dev: true @@ -21422,7 +21781,7 @@ packages: dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.1 - object-inspect: 1.11.0 + object-inspect: 1.12.0 dev: true /signal-exit/3.0.5: @@ -21509,15 +21868,6 @@ packages: is-fullwidth-code-point: 3.0.0 dev: true - /slice-ansi/4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} - dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 - dev: true - /snapdragon-node/2.1.1: resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} engines: {node: '>=0.10.0'} @@ -21598,6 +21948,7 @@ packages: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 + dev: true /source-map-support/0.5.20: resolution: {integrity: sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==} @@ -21606,6 +21957,12 @@ packages: source-map: 0.6.1 dev: true + /source-map-support/0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + /source-map-url/0.4.1: resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} dev: true @@ -21836,11 +22193,6 @@ packages: resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} dev: true - /string-argv/0.3.1: - resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} - engines: {node: '>=0.6.19'} - dev: true - /string-width/1.0.2: resolution: {integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=} engines: {node: '>=0.10.0'} @@ -21868,18 +22220,6 @@ packages: strip-ansi: 6.0.1 dev: true - /string.prototype.matchall/4.0.3: - resolution: {integrity: sha512-OBxYDA2ifZQ2e13cP82dWFMaCV9CGF8GzmN4fljBVw5O5wep0lu4gacm1OL6MjROoUnB8VbkWRThqkV2YFLNxw==} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.18.0-next.2 - has-symbols: 1.0.1 - internal-slot: 1.0.2 - regexp.prototype.flags: 1.3.1 - side-channel: 1.0.4 - dev: true - /string.prototype.matchall/4.0.6: resolution: {integrity: sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==} dependencies: @@ -21920,13 +22260,6 @@ packages: es-abstract: 1.19.1 dev: true - /string.prototype.trimend/1.0.3: - resolution: {integrity: sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - dev: true - /string.prototype.trimend/1.0.4: resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==} dependencies: @@ -21934,13 +22267,6 @@ packages: define-properties: 1.1.3 dev: true - /string.prototype.trimstart/1.0.3: - resolution: {integrity: sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - dev: true - /string.prototype.trimstart/1.0.4: resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==} dependencies: @@ -22124,6 +22450,11 @@ packages: has-flag: 4.0.0 dev: true + /supports-preserve-symlinks-flag/1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + /svgo/1.3.2: resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} engines: {node: '>=4.0.0'} @@ -22177,16 +22508,6 @@ packages: resolution: {integrity: sha512-k8uzYIkIVwmT+TcglpdN50pS2y1BDcUnBPK9iJeGu0Pl1lOI8pD6wtzgw91Pjpe+RxtTncw32tLxs/R0yNL2Mg==} dev: true - /table/6.0.7: - resolution: {integrity: sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==} - engines: {node: '>=10.0.0'} - dependencies: - ajv: 7.0.3 - lodash: 4.17.21 - slice-ansi: 4.0.0 - string-width: 4.2.3 - dev: true - /tapable/1.1.3: resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} engines: {node: '>=6'} @@ -22462,7 +22783,6 @@ packages: /tr46/0.0.3: resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=} - dev: true /tr46/1.0.1: resolution: {integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=} @@ -22496,26 +22816,14 @@ packages: resolution: {integrity: sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==} dev: true - /ts-invariant/0.9.3: - resolution: {integrity: sha512-HinBlTbFslQI0OHP07JLsSXPibSegec6r9ai5xxq/qHYCsIQbzpymLpDhAUsnXcSrDEcd0L62L8vsOEdzM0qlA==} + /ts-invariant/0.9.4: + resolution: {integrity: sha512-63jtX/ZSwnUNi/WhXjnK8kz4cHHpYS60AnmA6ixz17l7E12a5puCWFlNpkne5Rl0J8TBPVHpGjsj4fxs8ObVLQ==} engines: {node: '>=8'} dependencies: tslib: 2.3.1 dev: true - /ts-pnp/1.2.0_typescript@4.4.3: - resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} - engines: {node: '>=6'} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - typescript: 4.4.3 - dev: true - - /ts-pnp/1.2.0_typescript@4.4.4: + /ts-pnp/1.2.0_typescript@4.5.4: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -22524,11 +22832,11 @@ packages: typescript: optional: true dependencies: - typescript: 4.4.4 + typescript: 4.5.4 dev: true - /tsconfig-paths/3.9.0: - resolution: {integrity: sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==} + /tsconfig-paths/3.12.0: + resolution: {integrity: sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==} dependencies: '@types/json5': 0.0.29 json5: 1.0.1 @@ -22540,35 +22848,27 @@ packages: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} dev: true - /tslib/2.1.0: - resolution: {integrity: sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==} - dev: false - - /tslib/2.2.0: - resolution: {integrity: sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==} - dev: false - /tslib/2.3.1: resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} - /tsutils/3.19.1_typescript@4.4.4: + /tsutils/3.19.1_typescript@4.5.4: resolution: {integrity: sha512-GEdoBf5XI324lu7ycad7s6laADfnAqCw6wLGI+knxvw9vsIYBaJfYdmeCEG3FMMUiSm3OGgNb+m6utsWf5h9Vw==} 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: 4.4.4 + typescript: 4.5.4 dev: true - /tsutils/3.21.0_typescript@4.4.4: + /tsutils/3.21.0_typescript@4.5.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: 4.4.4 + typescript: 4.5.4 dev: true /tty-browserify/0.0.0: @@ -22652,91 +22952,29 @@ packages: resolution: {integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=} dev: true - /typedoc-default-themes/0.12.4: - resolution: {integrity: sha512-EZiXBUpogsYWe0dLgy47J8yRZCd+HAn9woGzO28XJxxSCSwZRYGKeQiw1KjyIcm3cBtLWUXiPD5+Bgx24GgZjg==} - engines: {node: '>= 8'} - dev: true - - /typedoc/0.20.16_typescript@4.1.3: - resolution: {integrity: sha512-xqIL8lT6ZE3QpP0GN30ckeTR05NSEkrP2pXQlNhC0OFkbvnjqJtDUcWSmCO15BuYyu4qsEbZT+tKYFEAt9Jxew==} - engines: {node: '>= 10.8.0'} - hasBin: true - peerDependencies: - typescript: 3.9.x || 4.0.x || 4.1.x - dependencies: - colors: 1.4.0 - fs-extra: 9.1.0 - handlebars: 4.7.6 - lodash: 4.17.20 - lunr: 2.3.9 - marked: 1.2.7 - minimatch: 3.0.4 - progress: 2.0.3 - shelljs: 0.8.4 - shiki: 0.2.7 - typedoc-default-themes: 0.12.4 - typescript: 4.1.3 - dev: true - - /typedoc/0.20.16_typescript@4.4.4: - resolution: {integrity: sha512-xqIL8lT6ZE3QpP0GN30ckeTR05NSEkrP2pXQlNhC0OFkbvnjqJtDUcWSmCO15BuYyu4qsEbZT+tKYFEAt9Jxew==} - engines: {node: '>= 10.8.0'} + /typedoc/0.22.10_typescript@4.5.4: + resolution: {integrity: sha512-hQYZ4WtoMZ61wDC6w10kxA42+jclWngdmztNZsDvIz7BMJg7F2xnT+uYsUa7OluyKossdFj9E9Ye4QOZKTy8SA==} + engines: {node: '>= 12.10.0'} hasBin: true peerDependencies: - typescript: 3.9.x || 4.0.x || 4.1.x + typescript: 4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x dependencies: - colors: 1.4.0 - fs-extra: 9.1.0 - handlebars: 4.7.6 - lodash: 4.17.20 + glob: 7.2.0 lunr: 2.3.9 - marked: 1.2.7 + marked: 3.0.8 minimatch: 3.0.4 - progress: 2.0.3 - shelljs: 0.8.4 - shiki: 0.2.7 - typedoc-default-themes: 0.12.4 - typescript: 4.4.4 - dev: true - - /typescript/4.1.3: - resolution: {integrity: sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - - /typescript/4.1.6: - resolution: {integrity: sha512-pxnwLxeb/Z5SP80JDRzVjh58KsM6jZHRAOtTpS7sXLS4ogXNKC9ANxHHZqLLeVHZN35jCtI4JdmLLbLiC1kBow==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - - /typescript/4.2.3: - resolution: {integrity: sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - - /typescript/4.3.5: - resolution: {integrity: sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - - /typescript/4.4.3: - resolution: {integrity: sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==} - engines: {node: '>=4.2.0'} - hasBin: true + shiki: 0.9.15 + typescript: 4.5.4 dev: true - /typescript/4.4.4: - resolution: {integrity: sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==} + /typescript/4.5.4: + resolution: {integrity: sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==} engines: {node: '>=4.2.0'} hasBin: true dev: true - /uglify-js/3.14.3: - resolution: {integrity: sha512-mic3aOdiq01DuSVx0TseaEzMIVqebMZ0Z3vaeDhFEh9bsc24hV1TFvN74reA2vs08D0ZWfNjAcJ3UbVLaBss+g==} + /uglify-js/3.14.5: + resolution: {integrity: sha512-qZukoSxOG0urUTvjc2ERMTcAy+BiFh3weWAkeurLwjrCba73poHmG3E36XEjd/JGukMzwTL7uCxZiAexj8ppvQ==} engines: {node: '>=0.8.0'} hasBin: true dev: true @@ -23169,11 +23407,6 @@ packages: builtins: 1.0.3 dev: true - /validator/8.2.0: - resolution: {integrity: sha512-Yw5wW34fSv5spzTXNkokD6S6/Oq92d8q/t14TqsS3fAiA1RYnxSFSIZ+CY3n6PGGRCq5HhJTSepQvFUS2QUDxA==} - engines: {node: '>= 0.10'} - dev: true - /value-equal/1.0.1: resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} dev: false @@ -23220,6 +23453,10 @@ packages: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} dev: true + /vscode-oniguruma/1.6.1: + resolution: {integrity: sha512-vc4WhSIaVpgJ0jJIejjYxPvURJavX6QG41vu0mGhqywMkQqulezEqEQ3cO3gc8GvcOpX6ycmKGqRoROEMBNXTQ==} + dev: true + /vscode-textmate/5.2.0: resolution: {integrity: sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ==} dev: true @@ -23283,14 +23520,13 @@ packages: resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} dev: true - /web-streams-polyfill/3.1.1: - resolution: {integrity: sha512-Czi3fG883e96T4DLEPRvufrF2ydhOOW1+1a6c3gNjH2aIh50DNFBdfwh2AKoOf1rXvpvavAoA11Qdq9+BKjE0Q==} + /web-streams-polyfill/3.2.0: + resolution: {integrity: sha512-EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA==} engines: {node: '>= 8'} dev: false /webidl-conversions/3.0.1: resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=} - dev: true /webidl-conversions/4.0.2: resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} @@ -23532,7 +23768,6 @@ packages: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - dev: true /whatwg-url/7.1.0: resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} @@ -23631,9 +23866,9 @@ packages: '@babel/core': 7.15.0 '@babel/preset-env': 7.15.0_@babel+core@7.15.0 '@babel/runtime': 7.15.3 - '@rollup/plugin-babel': 5.3.0_@babel+core@7.15.0+rollup@2.56.2 - '@rollup/plugin-node-resolve': 11.2.1_rollup@2.56.2 - '@rollup/plugin-replace': 2.4.2_rollup@2.56.2 + '@rollup/plugin-babel': 5.3.0_@babel+core@7.15.0+rollup@2.63.0 + '@rollup/plugin-node-resolve': 11.2.1_rollup@2.63.0 + '@rollup/plugin-replace': 2.4.2_rollup@2.63.0 '@surma/rollup-plugin-off-main-thread': 1.4.2 ajv: 8.6.2 common-tags: 1.8.0 @@ -23642,8 +23877,8 @@ packages: glob: 7.1.7 lodash: 4.17.21 pretty-bytes: 5.6.0 - rollup: 2.56.2 - rollup-plugin-terser: 7.0.2_rollup@2.56.2 + rollup: 2.63.0 + rollup-plugin-terser: 7.0.2_rollup@2.63.0 source-map: 0.8.0-beta.0 source-map-url: 0.4.1 stringify-object: 3.3.0 @@ -24157,17 +24392,6 @@ packages: engines: {node: '>=10'} dev: true - /z-schema/3.18.4: - resolution: {integrity: sha512-DUOKC/IhbkdLKKiV89gw9DUauTV8U/8yJl1sjf6MtDmzevLKOF2duNJ495S3MFVjqZarr+qNGCPbkg4mu4PpLw==} - hasBin: true - dependencies: - lodash.get: 4.4.2 - lodash.isequal: 4.5.0 - validator: 8.2.0 - optionalDependencies: - commander: 2.20.3 - dev: true - /zwitch/1.0.5: resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} dev: true -- cgit v1.2.3